当前位置: 代码迷 >> 综合 >> 关于git提示git branch --set-upstream-to=<remote>/<branch> master的问题
  详细解决方案

关于git提示git branch --set-upstream-to=<remote>/<branch> master的问题

热度:37   发布时间:2023-12-15 09:37:54.0

问题类型:本地仓库和远程仓库没有关联
问题情景:在推送本地项目至远程仓库时所遇到的问题

错误代码:

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=<remote>/<branch> master

错误原因:本地分支和远程分支没有关联

解决方案: git branch --set-upstream-to=<remote>/<branch> master
remote:代表远程库名
branch:远程分支的名称

比如:git branch --set-upstream-to=gitee/master master

【记录一些学习过程中所遇到的问题以及个人解决方案,希望可以给大家提供一些解决思路】*

  相关解决方案