1. 程式人生 > >git branch --set-upstream 本地關聯遠端分支

git branch --set-upstream 本地關聯遠端分支

https://www.cnblogs.com/zhou-chao/p/7678899.html

最近使用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> release

其實,輸出的提示資訊說的還是比較明白的。

使用git在本地新建一個分支後,需要做遠端分支關聯。如果沒有關聯,git會在下面的操作中提示你顯示的新增關聯。

關聯目的是在執行git pull, git push操作時就不需要指定對應的遠端分支,你只要沒有顯示指定,git pull的時候,就會提示你。

解決方法就是按照提示新增一下唄:

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

其中,origin/remote_branch是你本地分支對應的遠端分支;your_branch是你當前的本地分支。