mirror of
https://github.com/golang/go
synced 2024-11-05 18:36:08 +00:00
doc: add important info for would-be go contributors.
Link to the "installing from source" docs instead of the "installing" docs. Remind would-be hacker to switch to the default branch from the release branch. R=rsc CC=golang-dev https://golang.org/cl/6559043
This commit is contained in:
parent
948db4e091
commit
452f40f8e0
2 changed files with 13 additions and 1 deletions
|
@ -7,7 +7,7 @@
|
|||
<p>
|
||||
This document explains how to contribute changes to the Go project.
|
||||
It assumes you have installed Go using the
|
||||
<a href="/doc/install">installation instructions</a> and
|
||||
<a href="/doc/install/source">installation instructions</a> and
|
||||
have <a href="code.html">written and tested your code</a>.
|
||||
(Note that the <code>gccgo</code> frontend lives elsewhere;
|
||||
see <a href="gccgo_contribute.html">Contributing to gccgo</a>.)
|
||||
|
|
|
@ -150,6 +150,18 @@ Then check out the repository:</p>
|
|||
$ hg clone -u release https://code.google.com/p/go
|
||||
</pre>
|
||||
|
||||
<h2 id="head">(Optional) Switch to the default branch</h2>
|
||||
|
||||
<p>If you intend to modify the go source code, and
|
||||
<a href="/doc/contribute.html">contribute your changes</a>
|
||||
to the project, then move your repository
|
||||
off the release branch, and onto the default (development) branch.
|
||||
Otherwise, skip this step.</p>
|
||||
|
||||
<pre>
|
||||
$ hg update default
|
||||
</pre>
|
||||
|
||||
<h2 id="install">Install Go</h2>
|
||||
|
||||
<p>
|
||||
|
|
Loading…
Reference in a new issue