git pull [options] [ [...]] should be the name of a remote repository as passed to git-fetch(1). can name an arbitrary remote ref (for example, the name of a tag) or even a collection of refs with corresponding remote-tracking branches (e.g., refs/heads/:refs/remotes/origin/), but us ally it is branch in the remote repository.
你的分支名 為什麼以
origin/feature/
開頭? refspec從來沒有這樣的格式直接
git pull origin 360xxx
你分支是不是寫錯了。 。 。
提示說了找不到遠端分支的引用,有可能分支名錯了,有可能引用被刪除了,你用
git branch -a
指令查看一下,看有沒有對應的分支你的分支名錯了。
預設是origin master
git pull origin 360liuxueDisPage
git pull origin master
你只能將一個分支拉下來,可以使用git pull origin feature:develop來將遠程的feature分支和本地的develop分支進行合併.因為看你當前是處於develop分支的.
這是分支名字有問題!