diff options
author | Russ Cox <rsc@golang.org> | 2009-12-15 19:16:56 -0800 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2009-12-15 19:16:56 -0800 |
commit | 54bd85f3546ce2bdea4d56ae438e2e6bed090354 (patch) | |
tree | e7b680c38d8d464a089b33fbf1c20cb489892c2f /doc/install.html | |
parent | 95565d2190c1f4a9378e0478c864083c5e3c5763 (diff) | |
download | go-54bd85f3546ce2bdea4d56ae438e2e6bed090354.tar.gz |
doc/install.html: how to update to a new release
Fixes issue 422.
R=r
CC=golang-dev
http://codereview.appspot.com/180057
Diffstat (limited to 'doc/install.html')
-rw-r--r-- | doc/install.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/install.html b/doc/install.html index e7365575c..34c2bcc58 100644 --- a/doc/install.html +++ b/doc/install.html @@ -301,6 +301,19 @@ gives more detail about the process of building and testing Go programs. </p> +<h2>Keeping up with releases</h2> + +<p>New releases are announced on the <a href="http://groups.google.com/group/golang-nuts">Go Nuts</a> mailing list. +To update an existing tree to the latest release, you can run: +</p> + +<pre> +$ cd $GOROOT/src +$ hg pull +$ hg update release +$ make all +</pre> + <h2>Community resources</h2> <p> |