From dd0e7a95344a3ef959d9373235d250876c9a4475 Mon Sep 17 00:00:00 2001 From: Wayne Ashley Berry Date: Thu, 7 Jun 2018 20:54:08 +0100 Subject: [PATCH] doc: change git clone url MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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í Reviewed-by: Brad Fitzpatrick --- doc/contribute.html | 4 ++-- 1 file 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:
  • -Step 1: Clone the Go source code from GitHub or go.googlesource.com +Step 1: Clone the Go source code from go.googlesource.com and make sure it's stable by compiling and testing it once:
    -$ 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
     
    -- 2.51.0