Commit e8ae2958 authored by Andrew Gerrand's avatar Andrew Gerrand

cmd/go: update "go help remote" to use correct Google Code urls

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/5489114
parent 5962ef2c
...@@ -38,7 +38,7 @@ By convention, this is arranged by starting each path with a ...@@ -38,7 +38,7 @@ By convention, this is arranged by starting each path with a
unique prefix that belongs to you. For example, paths used unique prefix that belongs to you. For example, paths used
internally at Google all begin with 'google', and paths internally at Google all begin with 'google', and paths
denoting remote repositories begin with the path to the code, denoting remote repositories begin with the path to the code,
such as 'project.googlecode.com/'. such as 'code.google.com/p/project'.
`, `,
} }
...@@ -66,14 +66,11 @@ A few common code hosting sites have special syntax: ...@@ -66,14 +66,11 @@ A few common code hosting sites have special syntax:
Google Code Project Hosting (Git, Mercurial, Subversion) Google Code Project Hosting (Git, Mercurial, Subversion)
import "project.googlecode.com/git" import "code.google.com/p/project"
import "project.googlecode.com/git/sub/directory" import "code.google.com/p/project/sub/directory"
import "project.googlecode.com/hg" import "code.google.com/p/project.subrepository"
import "project.googlecode.com/hg/sub/directory" import "code.google.com/p/project.subrepository/sub/directory"
import "project.googlecode.com/svn/trunk"
import "project.googlecode.com/svn/trunk/sub/directory"
Launchpad (Bazaar) Launchpad (Bazaar)
......
...@@ -18,9 +18,9 @@ List lists the packages named by the import paths, one per line. ...@@ -18,9 +18,9 @@ List lists the packages named by the import paths, one per line.
The default output shows the package name and file system location: The default output shows the package name and file system location:
books /home/you/src/google-api-go-client.googlecode.com/hg/books/v1 books /home/you/src/code.google.com/p/google-api-go-client/books/v1
oauth /home/you/src/goauth2.googlecode.com/hg/oauth oauth /home/you/src/code.google.com/p/goauth2/oauth
sqlite /home/you/src/gosqlite.googlecode.com/hg/sqlite sqlite /home/you/src/code.google.com/p/sqlite
The -f flag specifies an alternate format for the list, The -f flag specifies an alternate format for the list,
using the syntax of package template. The default output using the syntax of package template. The default output
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment