Commit 8b16a8bb authored by Shenghou Ma's avatar Shenghou Ma

cmd/go: fix "go get -u" for git repositories.

CL 10869046 changed cmd/go to checkout master branch, so
for "go get -u" to work, it must "git pull" instead of
"git fetch". Added "--ff-only" so that it won't accidentally
overwrite user changes.

R=dsymonds
CC=golang-dev
https://golang.org/cl/10907043
parent 3c3ce8e7
...@@ -91,7 +91,7 @@ var vcsGit = &vcsCmd{ ...@@ -91,7 +91,7 @@ var vcsGit = &vcsCmd{
cmd: "git", cmd: "git",
createCmd: "clone {repo} {dir}", createCmd: "clone {repo} {dir}",
downloadCmd: "fetch", downloadCmd: "pull --ff-only",
tagCmd: []tagCmd{ tagCmd: []tagCmd{
// tags/xxx matches a git tag named xxx // tags/xxx matches a git tag named xxx
......
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