aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWayne Ashley Berry <wayneashleyberry@gmail.com>2018-06-07 20:54:08 +0100
committerBrad Fitzpatrick <bradfitz@golang.org>2018-06-20 17:17:37 +0000
commitdd0e7a95344a3ef959d9373235d250876c9a4475 (patch)
tree305da4896cca7df8d4a9e2bd45a5775a5bbbaca5
parentc89d75f981a64a3c87abb13d62cb44a0b55389e0 (diff)
downloadgo-dd0e7a95344a3ef959d9373235d250876c9a4475.tar.xz
doc: change git clone url
The git clone url should be a Gerrit host and not Github, otherwise the codereview command will fail. git-codereview: failed to load Gerrit origin: git origin must be a Gerrit host, not GitHub: https://github.com/golang/go Change-Id: I62f62c86ee6dce0720a844fc56340135dfae8405 Reviewed-on: https://go-review.googlesource.com/117178 Reviewed-by: Daniel Martí <mvdan@mvdan.cc> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
-rw-r--r--doc/contribute.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/contribute.html b/doc/contribute.html
index e7970537dd..7ed5e3779a 100644
--- a/doc/contribute.html
+++ b/doc/contribute.html
@@ -384,10 +384,10 @@ This is an overview of the overall process:
<ul>
<li>
-<b>Step 1:</b> Clone the Go source code from GitHub or go.googlesource.com
+<b>Step 1:</b> Clone the Go source code from go.googlesource.com
and make sure it's stable by compiling and testing it once:
<pre>
-$ git clone https://github.com/golang/go # or https://go.googlesource.com/go
+$ git clone https://go.googlesource.com/go
$ cd go/src
$ ./all.bash # compile and test
</pre>