git branch // 檢視本地分支
git branch -a // 檢視所有分支
git branch -r // 檢視遠端分支
git branch -vv // 檢視本地分支與遠端分支關聯關係
git checkout a // 切換本地分支(a:分支名,下同)
git checkout -b // 建立本地分支並切換 (= git branch a + git checkout )
git push origin a:a // 推送本地分支到遠端
git branch --set-upstream electric origin/electric // 本地分支關聯遠端分支
git push origin -d a // 刪除遠端分支 (用本地分支名,前面不加origin)
git branch -d a // 刪除本地分支
快用你的專案練習一下吧!
(在專案.git -> config檔案裡,用**同樣可以實現上述操作:)
git建立本地分支,遠端分支
一 本地分支 建立本地分支,然後切換到dev分支 git checkout b devgit checkout命令加上 b引數表示建立並切換,相當於以下兩條命令 git branch dev git checkout dev然後,用git branch命令檢視當前分支 git branch dev ...
Git 建立遠端分支與本地分支
git remote add remotebranchname http git 建立遠端分支 git branch 檢視本地分支 git branch a 檢視本地分支與遠端分支 git branch branchname 建立本地分支 git checkout branchname 切換到分支b...
git建立遠端分支並將本地分支與遠端分支關聯
1,檢視本地分支和遠端分支 git branch a master remotes origin head origin master remotes origin master2,建立並切換分支 git checkout b test 號代表當前分支 remotes代表遠端分支 master te...