请选择 进入手机版 | 继续访问电脑版
MSIPO技术圈 首页 IT技术 查看内容

Git 常见问题

2023-07-13

Git 常见问题

分支没有跟踪信息

如果在执行 git pull 时出现这个错误信息,通常是因为当前分支没有设置跟踪信息,Git不知道应该去哪个远程分支拉取代码。

通常错误信息提示如下:

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

解决方案

这个可以通过以下几步来解决:

  1. 查看当前分支:
git branch

这会显示出当前所在的分支,例如 dev
2. 设置跟踪信息:

git branch --set-upstream-to=origin/dev dev

这个命令是设置 dev 分支跟踪 origin 远程的 dev 分支。
3. 这时再执行 git pull 就会从跟踪的远程分支拉取最新代码了:

git pull

相关阅读

热门文章

    手机版|MSIPO技术圈 皖ICP备19022944号-2

    Copyright © 2024, msipo.com

    返回顶部