赞
踩
如果在执行 git pull 时出现这个错误信息,通常是因为当前分支没有设置跟踪信息,Git不知道应该去哪个远程分支拉取代码。
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> dev
这个可以通过以下几步来解决:
git branch
这会显示出当前所在的分支,例如 dev
2. 设置跟踪信息:
git branch --set-upstream-to=origin/dev dev
这个命令是设置 dev 分支跟踪 origin 远程的 dev 分支。
3. 这时再执行 git pull 就会从跟踪的远程分支拉取最新代码了:
git pull
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。