獲取遠端分支失敗

2021-08-10 18:36:16 字數 552 閱讀 8814

同事上傳了乙個新分支,然而webstrom不知為啥沒有檢測到新的分支,只好回歸git命令列

//1.檢視所有本地和遠端分支,此時還顯示不出我想新增的遠端新分支

git branch -va

//2.將遠端分支資訊獲取到本地

git fetch

//3.此時可以看見新分支了

git branch -va

//4.這個應該是設定資料流對映

git branch --

set-upstream

-to origin/remote_branchname local

-branchname

//應該完成2後,用checkout的方式應該也可以達到相同效果

git checkout -b

local

-branchname origin/remote_branchname

說起來好像就是執行了個fetch是重點。。。

獲取遠端分支資訊 切換遠端分支 建立遠端分支

當從其它同事那獲取到,遠端建立了乙個新分支fatfs,但是當我們本地沒有更新的情況下,使用下面命令是看不到的。git branch a git branch a master remotes origin head origin master remotes origin master git fe...

git獲取遠端分支

1 git fetch 將遠端分支資訊同步到本地 2 git branch a 檢視分支資訊 3 git checkout b branch name origin branch name 或者 git checkout t origin branch name。使用 t引數預設在本地建立乙個和遠端...

git 獲取遠端分支

另一哥們將分支push到庫中,我怎麼獲取到他的分支資訊呢?如果安裝了git客戶端,直接選擇fetch一下,就可以獲取到了。如果用命令列,執行 git fetch,可以將遠端分支資訊獲取到本地,再執行 git checkout b local branchname origin remote bran...