其他分享
首页 > 其他分享> > git常见问题及解决方法

git常见问题及解决方法

作者:互联网

简介

由于在git使用过程中会出现各种各样的问题,因此本文将常见的问题记录下来并提供相应的解决方案,方便后续查找。

git pull问题: There is no tracking information for the current branch.

$git pull
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> source

由于当前的分支没有跟踪到git上的对应分支。

解决方法

1.直接拉取对应分支代码:
git pull origin <branch>
2.将本地分支跟踪到git上的对应分支:
git branch --set-upstream-to=origin/<branch> source

标签:origin,pull,git,set,information,常见问题,branch,解决
来源: https://www.cnblogs.com/xy-bot/p/16339654.html