• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

benchmark/parse/H21-Feb-2020-341292

blog/H21-Feb-2020-573472

cmd/H21-Feb-2020-32,83624,458

container/intsets/H21-Feb-2020-2,0631,532

cover/H21-Feb-2020-519456

go/H21-Feb-2020-81,64856,874

godoc/H21-Feb-2020-13,76610,274

gopls/H21-Feb-2020-2,8842,196

imports/H21-Feb-2020-6843

internal/H21-Feb-2020-73,19656,847

playground/H21-Feb-2020-691541

present/H21-Feb-2020-2,2021,551

refactor/H21-Feb-2020-7,1805,132

txtar/H21-Feb-2020-249180

.gitattributesH A D21-Feb-2020345 119

.gitignoreH A D21-Feb-202085 32

AUTHORSH A D21-Feb-2020173 43

CONTRIBUTING.mdH A D21-Feb-2020913 2717

CONTRIBUTORSH A D21-Feb-2020170 43

LICENSEH A D21-Feb-20201.4 KiB2824

PATENTSH A D21-Feb-20201.3 KiB2320

README.mdH A D21-Feb-2020987 2818

codereview.cfgH A D21-Feb-202021 21

go.modH A D21-Feb-2020267 118

go.sumH A D21-Feb-20201.5 KiB1615

README.md

1# Go Tools
2
3This subrepository holds the source for various packages and tools that support
4the Go programming language.
5
6Some of the tools, `godoc` and `vet` for example, are included in binary Go
7distributions.
8
9Others, including the Go `guru` and the test coverage tool, can be fetched with
10`go get`.
11
12Packages include a type-checker for Go and an implementation of the
13Static Single Assignment form (SSA) representation for Go programs.
14
15## Download/Install
16
17The easiest way to install is to run `go get -u golang.org/x/tools/...`. You can
18also manually git clone the repository to `$GOPATH/src/golang.org/x/tools`.
19
20## Report Issues / Send Patches
21
22This repository uses Gerrit for code changes. To learn how to submit changes to
23this repository, see https://golang.org/doc/contribute.html.
24
25The main issue tracker for the tools repository is located at
26https://github.com/golang/go/issues. Prefix your issue with "x/tools/(your
27subdir):" in the subject line, so it is easy to find.
28