当前位置:   article > 正文

Git本地分支与远程分支关联(git branch --set-upstream-to=origin/ )

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

Git在本地新建分支后,可做远程分支关联。关联目的是,如果在本地分支下进行pullpush操作时 ,便不需要指定远程的分支。

如果在没有关联且没有指定分支的情况下,直接使用 git pull 命令,会提示你如下信息:

MacBook-Pro:projects user$ 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> pj-risk

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

解决办法:

例如,使用命令git branch --set-upstream(test为创建的分支)

$ git branch --set-upstream debug origin/test
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/517954
推荐阅读
相关标签
  

闽ICP备14008679号