There is no tracking information for the current branch prompt solution appear Git

  Reference: https://blog.csdn.net/sinat_36246371/article/details/79738782

  In execution git pulltime, suggesting that the current branch is no trace information:

There is no tracking information for the current branch

  

 

   There are two solutions to this situation, for example, to operate on the master of it, one is directly specify the remote master:

git pull origin master

  Another way is to specify the local master to a remote master, and then go pull:

git branch --set-upstream-to=origin/master master
git pull

  

Guess you like

Origin www.cnblogs.com/minseo/p/11671333.html