From: Andrew Gerrand
Date: Mon, 3 Nov 2014 06:01:17 +0000 (+1100)
Subject: doc: document go get -f flag in 1.4 release notes
X-Git-Tag: go1.4rc1~53
X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=b802240300a33024c1a47fdf2c5260a3fad0155b;p=gostls13.git
doc: document go get -f flag in 1.4 release notes
LGTM=r, rsc
R=r, rsc, adg
CC=golang-codereviews
https://golang.org/cl/168890043
---
diff --git a/doc/go1.4.html b/doc/go1.4.html
index cb2280cb4d..3310117a4d 100644
--- a/doc/go1.4.html
+++ b/doc/go1.4.html
@@ -371,6 +371,15 @@ fails because of this check, the mis-imported package has been copied to the loc
and should be removed manually.
+
+To complement this new feature, a check has been added at update time to verify
+that the local package's remote repository matches that of its custom import.
+The go
get
-u
command will fail to
+update a package if its remote repository has changed since it was first
+downloaded.
+The new -f
flag overrides this check.
+
+
Further information is in
the design document.