From 3269647502e238e0e9d33f5b5b17cd269ecf5d42 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Tue, 15 Dec 2009 19:16:56 -0800 Subject: [PATCH] doc/install.html: how to update to a new release Fixes #422. R=r CC=golang-dev https://golang.org/cl/180057 --- doc/install.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/doc/install.html b/doc/install.html index e7365575c1..34c2bcc58f 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.

+

Keeping up with releases

+ +

New releases are announced on the Go Nuts mailing list. +To update an existing tree to the latest release, you can run: +

+ +
+$ cd $GOROOT/src
+$ hg pull
+$ hg update release
+$ make all
+
+

Community resources

-- 2.51.0