在执行git pull的时候,提示当前branch没有跟踪信息:
指定远程master
git pull origin master
先指定本地master到远程的master,然后再去pull
git branch --set-upstream-to=origin/master master
git pull
解决 Git: There is no tracking information for the current branch.的问题
原文:https://www.cnblogs.com/jichi/p/14395175.html