Andrew Gerrand | 495e02d | 2014-12-10 16:06:47 +1100 | [diff] [blame] | 1 | # Contributing to Go |
Andrew Gerrand | 0f2db82 | 2014-12-08 22:05:57 +1100 | [diff] [blame] | 2 | |
Andrew Gerrand | 495e02d | 2014-12-10 16:06:47 +1100 | [diff] [blame] | 3 | Go is an open source project. |
Andrew Gerrand | 0f2db82 | 2014-12-08 22:05:57 +1100 | [diff] [blame] | 4 | |
Andrew Gerrand | 495e02d | 2014-12-10 16:06:47 +1100 | [diff] [blame] | 5 | It is the work of hundreds of contributors. We appreciate your help! |
Andrew Gerrand | 0f2db82 | 2014-12-08 22:05:57 +1100 | [diff] [blame] | 6 | |
Andrew Gerrand | 0f2db82 | 2014-12-08 22:05:57 +1100 | [diff] [blame] | 7 | |
Andrew Gerrand | 495e02d | 2014-12-10 16:06:47 +1100 | [diff] [blame] | 8 | ## Filing issues |
Andrew Gerrand | 0f2db82 | 2014-12-08 22:05:57 +1100 | [diff] [blame] | 9 | |
Andrew Gerrand | 495e02d | 2014-12-10 16:06:47 +1100 | [diff] [blame] | 10 | When filing an issue, make sure to answer these five questions: |
| 11 | |
| 12 | 1. What version of Go are you using (`go version`)? |
| 13 | 2. What operating system and processor architecture are you using? |
| 14 | 3. What did you do? |
| 15 | 4. What did you expect to see? |
| 16 | 5. What did you see instead? |
| 17 | |
Brad Fitzpatrick | 778b649 | 2015-01-18 10:56:00 -0800 | [diff] [blame] | 18 | General questions should go to the [golang-nuts mailing list](https://groups.google.com/group/golang-nuts) instead of the issue tracker. |
| 19 | The gophers there will answer or ask you to file an issue if you've tripped over a bug. |
Andrew Gerrand | 495e02d | 2014-12-10 16:06:47 +1100 | [diff] [blame] | 20 | |
Andrew Gerrand | a1cc84f | 2015-06-26 08:46:30 +1000 | [diff] [blame] | 21 | Sensitive security-related issues should be reported to [security@golang.org](mailto:security@golang.org). |
| 22 | |
Andrew Gerrand | 495e02d | 2014-12-10 16:06:47 +1100 | [diff] [blame] | 23 | ## Contributing code |
| 24 | |
| 25 | Please read the [Contribution Guidelines](https://golang.org/doc/contribute.html) |
| 26 | before sending patches. |
| 27 | |
| 28 | **We do not accept GitHub pull requests** |
| 29 | (we use [Gerrit](https://code.google.com/p/gerrit/) instead for code review). |
| 30 | |
Andrew Gerrand | 69f24cf | 2014-12-11 09:44:54 +1100 | [diff] [blame] | 31 | Unless otherwise noted, the Go source files are distributed under |
Andrew Gerrand | 495e02d | 2014-12-10 16:06:47 +1100 | [diff] [blame] | 32 | the BSD-style license found in the LICENSE file. |
Andrew Gerrand | 0f2db82 | 2014-12-08 22:05:57 +1100 | [diff] [blame] | 33 | |