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> tony_prod
时间: 2024-01-11 19:03:14 浏览: 84
The current branch is not configured for pull
这个提示意味着你的本地分支没有与远程分支建立起跟踪关系,所以 Git 不知道应该从哪个远程分支拉取代码。你可以使用 `git pull <远程仓库名称> <远程分支名称>` 命令来拉取代码,并在拉取后自动与本地分支合并。例如,如果你希望将远程仓库 `origin` 的 `tony_prod` 分支拉取到本地分支,可以执行以下命令:
```
git pull origin tony_prod
```
如果你希望将本地分支与远程分支建立起跟踪关系,可以使用 `git branch --set-upstream-to=<远程仓库名称>/<远程分支名称> <本地分支名称>` 命令。例如,如果你希望将本地分支 `tony_prod` 与远程仓库 `origin` 的 `tony_prod` 分支建立起跟踪关系,可以执行以下命令:
```
git branch --set-upstream-to=origin/tony_prod tony_prod
```
阅读全文