summaryrefslogtreecommitdiff
path: root/src/cmd/go/help.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2011-12-21 07:47:12 -0500
committerRuss Cox <rsc@golang.org>2011-12-21 07:47:12 -0500
commitc7c5bc78c19f6c48a5e502b74b57b51fabe7bfab (patch)
tree70e573f448674a48ecf3bfe758dab79a9b2344fd /src/cmd/go/help.go
parent5fb652ab9f52b94d5c76cbebcbaefece96f318d3 (diff)
downloadgo-c7c5bc78c19f6c48a5e502b74b57b51fabe7bfab.tar.gz
cmd/go: many improvements
* correct dependency calculations * comment meaning of action fields * new alias "std" like "all" but standard packages only * add -o flag to 'go build' * set up for parallel build (still serial) * understand that import "C" depends on cgo, runtime/cgo R=golang-dev, mikioh.mikioh CC=golang-dev http://codereview.appspot.com/5502055
Diffstat (limited to 'src/cmd/go/help.go')
-rw-r--r--src/cmd/go/help.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cmd/go/help.go b/src/cmd/go/help.go
index e1b53a67e..7987f7e4d 100644
--- a/src/cmd/go/help.go
+++ b/src/cmd/go/help.go
@@ -27,6 +27,9 @@ The special import path "all" expands to all package directories
found in all the GOPATH trees. For example, 'go list all'
lists all the packages on the local system.
+The special import path "std" is like all but expands to just the
+packages in the standard Go library.
+
An import path can also name a package to be downloaded from
a remote repository. Run 'go help remote' for details.