git鼓勵大量使用分支:
檢視分支:git branch
建立分支:git branch
根據某個commitid建立分支 git branch dev-weihuili-profitpricescenicback 30ce3665fbd0c095b4436ff8b28f066d8d56f6e2 git branch 分支名 commit_id
切換分支:git checkout
建立+切換分支:git checkout -b
合併某分支到當前分支:git merge
檢視已經合併到當前分支的分支:git branch --merged
檢視未合併到當前分支的分支:git branch –no-merged
刪除分支:git branch -d
刪除遠端分支:git push origin –delete
git建立和合併分支
參考 廖雪峰git教程 git鼓勵大量使用分支 檢視分支 git branch 建立分支 git branch 切換分支 git checkout 建立 切換分支 git checkout b 合併某分支到當前分支 git merge 刪除分支 git branch d git checkout b...
git建立和合併分支
公司裡系統突然有問題 使用命令 git checkout b bug編號或者自定義由 git branch bug編號或者自定義 建立分支 git checkout bug編號或者自定義 切換分支 組成 進入工程目錄下 d studyplace adver git checkout b iss952...
Git學習筆記 建立和合併分支
每次提交,git都把它們串成一條時間線,這條時間線就是乙個分支。開始的時候,只有master一條分支,git用master指向最新的提交,再用head指向master,就能確定當前分支,以及當前分支的提交點。可見,head指向的就是當前分支。每次提交,master分支都會向前移動一步,這樣,隨著你不...