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 就会从跟踪的远程分支拉取最新代码了: