解决 Git: There is no tracking information for the current branch.的问题

在执行git pull的时候,提示当前branch没有跟踪信息:
解决 Git: There is no tracking information for the current branch.的问题

解决方案一

指定远程master

git pull origin master

解决方案二

先指定本地master到远程的master,然后再去pull

git branch --set-upstream-to=origin/master master
git pull
上一篇:docker pull 配置代理


下一篇:在码云上git push时报错,出现error: failed to push some refs to 'https://gitee.com/lipengyangzuishuai/gits