diff --git a/doc/articles/go_command.html b/doc/articles/go_command.html
index 371d6da30c..002c034367 100644
--- a/doc/articles/go_command.html
+++ b/doc/articles/go_command.html
@@ -164,14 +164,14 @@ red-black tree. We can install both with the "go get
"
subcommand:
-$ go get code.google.com/p/codesearch/index +$ go get github.com/google/codesearch/index $ go get github.com/petar/GoLLRB/llrb $
Both of these projects are now downloaded and installed into our
$GOPATH
directory. The one tree now contains the two directories
-src/code.google.com/p/codesearch/index/
and
+src/github.com/google/codesearch/index/
and
src/github.com/petar/GoLLRB/llrb/
, along with the compiled
packages (in pkg/
) for those libraries and their dependencies.
./...
" means start in the current directory
$ go list ./... -code.google.com/p/codesearch/cmd/cgrep -code.google.com/p/codesearch/cmd/cindex -code.google.com/p/codesearch/cmd/csearch -code.google.com/p/codesearch/index -code.google.com/p/codesearch/regexp -code.google.com/p/codesearch/sparse +github.com/google/codesearch/cmd/cgrep +github.com/google/codesearch/cmd/cindex +github.com/google/codesearch/cmd/csearch +github.com/google/codesearch/index +github.com/google/codesearch/regexp +github.com/google/codesearch/sparse github.com/petar/GoLLRB/example github.com/petar/GoLLRB/llrb $ @@ -200,12 +200,12 @@ $$ go test ./... -? code.google.com/p/codesearch/cmd/cgrep [no test files] -? code.google.com/p/codesearch/cmd/cindex [no test files] -? code.google.com/p/codesearch/cmd/csearch [no test files] -ok code.google.com/p/codesearch/index 0.239s -ok code.google.com/p/codesearch/regexp 0.021s -? code.google.com/p/codesearch/sparse [no test files] +? github.com/google/codesearch/cmd/cgrep [no test files] +? github.com/google/codesearch/cmd/cindex [no test files] +? github.com/google/codesearch/cmd/csearch [no test files] +ok github.com/google/codesearch/index 0.203s +ok github.com/google/codesearch/regexp 0.017s +? github.com/google/codesearch/sparse [no test files] ? github.com/petar/GoLLRB/example [no test files] ok github.com/petar/GoLLRB/llrb 0.231s $ @@ -215,18 +215,18 @@ $ current directory:-$ cd $GOPATH/src/code.google.com/p/codesearch/regexp +$ cd $GOPATH/src/github.com/google/codesearch/regexp $ go list -code.google.com/p/codesearch/regexp +github.com/google/codesearch/regexp $ go test -v -=== RUN TestNstateEnc ---- PASS: TestNstateEnc (0.00 seconds) -=== RUN TestMatch ---- PASS: TestMatch (0.01 seconds) -=== RUN TestGrep ---- PASS: TestGrep (0.00 seconds) +=== RUN TestNstateEnc +--- PASS: TestNstateEnc (0.00s) +=== RUN TestMatch +--- PASS: TestMatch (0.00s) +=== RUN TestGrep +--- PASS: TestGrep (0.00s) PASS -ok code.google.com/p/codesearch/regexp 0.021s +ok github.com/google/codesearch/regexp 0.018s $ go install $diff --git a/src/cmd/go/get.go b/src/cmd/go/get.go index d5e2aab0eb..256800affa 100644 --- a/src/cmd/go/get.go +++ b/src/cmd/go/get.go @@ -197,7 +197,7 @@ var downloadCache = map[string]bool{} // downloadRootCache records the version control repository // root directories we have already considered during the download. -// For example, all the packages in the code.google.com/p/codesearch repo +// For example, all the packages in the github.com/google/codesearch repo // share the same root (the directory for that path), and we only need // to run the hg commands to consider each repository once. var downloadRootCache = map[string]bool{}