summaryrefslogtreecommitdiff
path: root/src/cmd/goinstall
AgeCommit message (Collapse)AuthorFilesLines
2011-02-18Imported Upstream version 2011.02.15Ondřej Surý1-1/+1
2011-02-14Imported Upstream version 2011-02-01.1upstream/2011-02-01.1Ondřej Surý1-2/+1
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý6-87/+261
2010-06-30goinstall: support for Bazaar+LaunchpadGustavo Niemeyer3-43/+88
With these changes, goinstall is now able to use branches maintained with Bazaar located in Launchpad. Project aliases such as /project and /project/series are supported in addition to specific user or team branches such as /~user/project/branch. Temporary branches under the +junk special project are also supported. As a curious side effect, since Launchpad is able to import code from other locations, they can be indirectly accessible too if desired. R=rsc CC=golang-dev http://codereview.appspot.com/1699050 Committer: Russ Cox <rsc@golang.org>
2010-06-21goinstall: process dependencies for package mainRoger Peppe3-16/+30
Currently to install a command, you have to manually goinstall each of the remote packages that it depends on. This patch lets goinstall P work where P is contains files in package main. It does not actually build the package, but it installs all of its dependencies and prints a message to that effect. R=rsc CC=golang-dev http://codereview.appspot.com/1301043 Committer: Russ Cox <rsc@golang.org>
2010-06-01goinstall: Use 'git pull' instead of 'git checkout' when updating a git repo.Michael Hoisie1-1/+1
R=rsc CC=golang-dev http://codereview.appspot.com/1395041 Committer: Russ Cox <rsc@golang.org>
2010-03-30simplify various code using new map index ruleRuss Cox1-1/+1
R=r CC=golang-dev http://codereview.appspot.com/833044
2010-03-30single argument panicRuss Cox1-1/+1
note that sortmain.go has been run through hg gofmt; only the formatting of the day initializers changed. i'm happy to revert that formatting if you'd prefer. stop on error in doc/progs/run R=r CC=golang-dev http://codereview.appspot.com/850041
2010-03-23cmd/goinstall: include command name in error reporting (usually missing ↵Andrey Mirtchovski1-1/+2
software or incorrect $PATH) R=rsc CC=golang-dev http://codereview.appspot.com/695041 Committer: Russ Cox <rsc@golang.org>
2010-03-20goinstall: let git/hg/svn create the final directory elementRuss Cox1-1/+3
R=r CC=golang-dev http://codereview.appspot.com/634044
2010-03-19godoc: improved comment formatting: recognize URLsRobert Griesemer1-1/+1
and highlight special words, if provided. Also: - related cleanups in src/pkg/go/doc/comment.go - fix typos in src/cmd/goinstall/doc.go Fixes issue 672. R=rsc CC=adg, golang-dev http://codereview.appspot.com/601042
2010-03-17goinstall doc: fix link to godashboard/packageAndrew Gerrand1-1/+1
R=rsc CC=golang-dev http://codereview.appspot.com/607041
2010-03-04goinstall: an experiment in (external) package installationRuss Cox6-0/+604
R=adg, r CC=cw, golang-dev http://codereview.appspot.com/224043