git 拉取遠端分支到本地
步驟:1, git init (git安裝後初次使用需要git init)
2,git clone [email protected].***.com:***/***.git
([email protected].***.com:***/***.git這個位址在gitlab上找)
根據提示輸入git賬戶使用者名稱
根據提示輸入密碼
3, cd 進入clone下來的工程的主目錄
4,git branch -a 檢視所有分支名稱
5,git fetch origin dev 把遠端dev分支拉到遠端的當前(這裡的dev是遠端分支名,假設存在。)
6,git checkout -b dev origin/dev 在本地建立分支dev關聯遠端的dev分支,同時作為本地的當前分支(此時**已經拉下來了)
7,git pull origin dev 把遠端dev分支上的內容都拉取到本地
注意:(在git clone之後,git branch -a之前如果有新增分支,要git pull一下才能獲取新分支,檢視到新分支)
git拉取遠端分支到本地
檢視遠端分支 git branch r 檢視本地分支 git branch 拉取遠端分支 git checkout b 本地分支 origin 遠端分支 拉取遠端分支 git pull origin 遠端分支 建立分支 git branch set upstream to origin 遠端分支名 ...
git 拉取遠端分支到本地
步驟 1 新建乙個空檔案,檔名為hhhh 2 初始化 git init3 自己要與origin master建立連線 下劃線為遠端倉庫鏈結 git remote add origin git github.com x nothing2.git4 把遠端分支拉到本地 git fetch origin ...
git 拉取遠端分支到本地新分支
方法1 可以把遠端某各分支remote branch name拉去到本地的branch name下,如果沒有branch name,則會在本地新建branch name git fetch origin remote branch name branch ame 然後切換分支 git checkou...