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> b1
时间: 2023-11-27 10:51:56 浏览: 94
这个提示表示当前分支没有与远程分支建立追踪关系,无法自动合并代码。你需要使用 `git pull <remote> <branch>` 命令手动指定要合并的远程分支。例如,如果你想要从远程的 origin 仓库的 master 分支获取最新代码并合并到当前分支,可以执行以下命令:
```
git pull origin master
```
如果你想要设置当前分支与远程分支的追踪关系,可以使用 `git branch --set-upstream-to=<remote>/<branch> <local_branch>` 命令,例如:
```
git branch --set-upstream-to=origin/master master
```
这样,下次执行 `git pull` 命令时,Git 就会自动追踪并合并远程的 origin/master 分支。
相关问题
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 提示你当前分支没有追踪信息,需要手动指定要合并的分支。可以使用 `git branch -vv` 命令查看本地分支和远程分支的对应关系,找到要合并的远程分支名称后,使用 `git merge <branch-name>` 命令将其合并到当前分支。另外,也可以使用 `git pull <remote> <branch>` 命令来自动合并远程分支到当前分支。
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
pull --set-upstream-to=<remote>/<branch>
这是Git命令行提示信息,意思是当前分支没有跟踪信息,请指定要合并的分支。如果您想设置此分支的跟踪信息,可以使用以下命令:git pull --set-upstream-to=<remote>/<branch>。同时,您也可以参考git-pull(1)获取更多细节。
阅读全文