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 | |
| 18 | |
| 19 | ## Contributing code |
| 20 | |
| 21 | Please read the [Contribution Guidelines](https://golang.org/doc/contribute.html) |
| 22 | before sending patches. |
| 23 | |
| 24 | **We do not accept GitHub pull requests** |
| 25 | (we use [Gerrit](https://code.google.com/p/gerrit/) instead for code review). |
| 26 | |
Andrew Gerrand | 69f24cf | 2014-12-11 09:44:54 +1100 | [diff] [blame] | 27 | Unless otherwise noted, the Go source files are distributed under |
Andrew Gerrand | 495e02d | 2014-12-10 16:06:47 +1100 | [diff] [blame] | 28 | the BSD-style license found in the LICENSE file. |
Andrew Gerrand | 0f2db82 | 2014-12-08 22:05:57 +1100 | [diff] [blame] | 29 | |