git分支無法獲取

2022-03-07 19:45:37 字數 542 閱讀 7504

git 上新建的分支,本地想要拉取該分支,但是找不到這個分支

使用  git branch -a  也看不到該分支

使用命令:

git checkout -b branch_namea origin/branch_nameb

有如下報錯資訊:

fatal: cannot update paths and switch to branch 'branch_namea' at the same time. 

did you intend to checkout 'origin/branch_nameb' which can not be resolved as commit?

解決方法:

git remote update

git fetch

git checkout -b branch_namea origin/branch_nameb

參考:

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...

從git上 獲取分支

從這個鏈結上可以學習。一 選擇乙個空資料夾用來儲存轉殖下來的專案,然後滑鼠右鍵選擇git bash here,然後輸入命令 git clone 自己git庫的位址 二 從dev分支上更新 1.與遠端倉庫建立連線 git remote add origin xx.git 2.使用git branch ...