Skip to content

Commit daf29d8

Browse files
committed
CONTRIBUTING.md: remove note about not accepting Pull Requests
Updates golang/go#24185 Change-Id: Ic2d895e46e2aac8ccf4ac835a3c945cfaaec65b8 Reviewed-on: https://go-review.googlesource.com/100717 Reviewed-by: Andrew Bonventre <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]>
1 parent 057704a commit daf29d8

File tree

1 file changed

+9
-14
lines changed

1 file changed

+9
-14
lines changed

CONTRIBUTING.md

+9-14
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,15 @@ Go is an open source project.
44

55
It is the work of hundreds of contributors. We appreciate your help!
66

7-
87
## Filing issues
98

109
When [filing an issue](https://golang.org/issue/new), make sure to answer these five questions:
1110

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?
11+
1. What version of Go are you using (`go version`)?
12+
2. What operating system and processor architecture are you using?
13+
3. What did you do?
14+
4. What did you expect to see?
15+
5. What did you see instead?
1716

1817
General questions should go to the [golang-nuts mailing list](https://groups.google.com/group/golang-nuts) instead of the issue tracker.
1918
The gophers there will answer or ask you to file an issue if you've tripped over a bug.
@@ -23,17 +22,17 @@ The gophers there will answer or ask you to file an issue if you've tripped over
2322
In order to verify changes to the slides or code examples while developing
2423
locally compile with your local toolchain:
2524

26-
$ go install golang.org/x/tour/gotour
27-
$ $GOPATH/bin/gotour
25+
$ go install golang.org/x/tour/gotour
26+
$ $GOPATH/bin/gotour
2827

2928
## Running the App Engine version locally
3029

3130
To view the App Engine version of the slides while developing locally, install
3231
the [Go App Engine SDK](https://cloud.google.com/appengine/downloads?hl=en)
3332
and then:
3433

35-
$ cd $GOPATH/src/golang.org/x/tour
36-
$ $SDK_PATH/dev_appserver.py .
34+
$ cd $GOPATH/src/golang.org/x/tour
35+
$ $SDK_PATH/dev_appserver.py .
3736

3837
The App Engine version runs code examples against the service at play.golang.org.
3938
To verify changes to the code examples you must use your local toolchain to compile
@@ -44,9 +43,5 @@ and run `gotour` locally.
4443
Please read the [Contribution Guidelines](https://golang.org/doc/contribute.html)
4544
before sending patches.
4645

47-
**We do not accept GitHub pull requests**
48-
(we use [Gerrit](https://code.google.com/p/gerrit/) instead for code review).
49-
5046
Unless otherwise noted, the Go source files are distributed under
5147
the BSD-style license found in the LICENSE file.
52-

0 commit comments

Comments
 (0)