假设本地的 foo 分支追踪仓库 upstream 中的 foo 分支:

1.8.0 版

当前是 foo 分支

git branch -u upstream/foo

git branch --set-upstream-to=upstream/foo

foo 不是当前分支

git branch -u upstream/foo foo

git branch --set-upstream-to=upstream/foo foo

1.7.0 版本

git branch --set-upstream foo upstream/foo


blog comments powered by Disqus