赞
踩
Git在本地新建分支后,可做远程分支关联。关联目的是,如果在本地分支下进行pull
和push
操作时 ,便不需要指定远程的分支。
如果在没有关联且没有指定分支的情况下,直接使用 git pull
命令,会提示你如下信息:
MacBook-Pro:projects user$ git pull
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
See git-pull(1) for details.
git pull <remote> <branch>
If you wish to set tracking information for this branch you can do so with:
git branch --set-upstream-to=origin/<branch> pj-risk
解决办法:
例如,使用命令git branch --set-upstream
(test为创建的分支)
$ git branch --set-upstream debug origin/test
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。