CONTRIBUTING.md: remove note about not accepting Pull Requests

Updates golang/go#24185

Change-Id: Iad25cc56ecc904c70330325a2eed1f51b4391dd1
Reviewed-on: https://go-review.googlesource.com/100691
Reviewed-by: Andrew Bonventre <andybons@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
1 file changed
tree: 91d09afe60c6d32a3e38b829f17e9a656a51c5c6
  1. dev/
  2. docs/
  3. .gitignore
  4. .pep8
  5. AUTHORS
  6. changelog.md
  7. CONTRIBUTING.md
  8. CONTRIBUTORS
  9. Default.sublime-commands
  10. dependencies.json
  11. Go.sublime-build
  12. Golang Build Output.tmLanguage
  13. golang_build.py
  14. LICENSE
  15. PATENTS
  16. readme.md
readme.md

Golang Build

Golang Build is a Sublime Text package for compiling Go projects. It provides integration between Sublime Text and the command line go tool.

The package consists of the following features:

  • A Sublime Text build system for executing:
    • go build
    • go run
    • go install
    • go test to run Tests or Benchmarks
    • go clean
    • Cross-compilation using go build with GOOS and GOARCH
  • Sublime Text command palette commands to:
    • Execute go get
    • Open a terminal into a Go workspace

Installation

The Golang Build package is installed by using Package Control.

  • If Package Control is not installed, follow the Installation Instructions
  • Open the Sublime Text command palette and run the Package Control: Install Package command
  • Type Golang Build and select the package to perform the installation

Documentation

End User

Contributor