You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
987 B

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