Home | History | Annotate | Download | only in linux-x86
      1 # Contributing to Go
      2 
      3 Go is an open source project.
      4 
      5 It is the work of hundreds of contributors. We appreciate your help!
      6 
      7 
      8 ## Filing issues
      9 
     10 General questions should go to the
     11 [golang-nuts mailing list](https://groups.google.com/group/golang-nuts) or
     12 [other forum](https://golang.org/wiki/Questions) instead of the issue tracker.
     13 The gophers there will answer or ask you to file an issue if you've tripped over a bug.
     14 
     15 When filing an issue, make sure to answer these five questions:
     16 
     17 1. What version of Go are you using (`go version`)?
     18 2. What operating system and processor architecture are you using?
     19 3. What did you do?
     20 4. What did you expect to see?
     21 5. What did you see instead?
     22 
     23 For change proposals, see [Proposing Changes To Go](https://github.com/golang/proposal/).
     24 
     25 Sensitive security-related issues should be reported to [security (a] golang.org](mailto:security (a] golang.org).
     26 
     27 ## Contributing code
     28 
     29 Please read the [Contribution Guidelines](https://golang.org/doc/contribute.html)
     30 before sending patches.
     31 
     32 **We do not accept GitHub pull requests**
     33 (we use [an instance](https://go-review.googlesource.com/) of the
     34 [Gerrit](https://www.gerritcodereview.com/) code review system instead).
     35 Also, please do not post patches on the issue tracker.
     36 
     37 Unless otherwise noted, the Go source files are distributed under
     38 the BSD-style license found in the LICENSE file.
     39 
     40