Andrew Gerrand | b084b75 | 2015-02-19 07:58:37 +1100 | [diff] [blame] | 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 | When [filing an issue](https://golang.org/issue/new), 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 | 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. |
| 20 | |
Katrina Owen | 6a3e29c | 2015-10-08 21:33:05 -0600 | [diff] [blame^] | 21 | ## Running the App Engine version locally |
| 22 | |
| 23 | To view your changes while developing locally, install the |
| 24 | [Go App Engine SDK](https://cloud.google.com/appengine/downloads?hl=en) and then: |
| 25 | |
| 26 | $ cd $GOPATH/src/golang.org/x/tour |
| 27 | $ $SDK_PATH/dev_appserver.py . |
| 28 | |
Andrew Gerrand | b084b75 | 2015-02-19 07:58:37 +1100 | [diff] [blame] | 29 | ## Contributing code |
| 30 | |
| 31 | Please read the [Contribution Guidelines](https://golang.org/doc/contribute.html) |
| 32 | before sending patches. |
| 33 | |
| 34 | **We do not accept GitHub pull requests** |
| 35 | (we use [Gerrit](https://code.google.com/p/gerrit/) instead for code review). |
| 36 | |
| 37 | Unless otherwise noted, the Go source files are distributed under |
| 38 | the BSD-style license found in the LICENSE file. |
| 39 | |