軟件開發(fā)中,bug就像家常便飯一樣。有了bug就需要修復(fù),在Git中,由于分支是如此的強(qiáng)大,所以,每個(gè)bug都可以通過一個(gè)新的臨時(shí)分支來修復(fù),修復(fù)后,合并分支,然后將臨時(shí)分支刪除。
當(dāng)你接到一個(gè)修復(fù)一個(gè)代號(hào)101的bug的任務(wù)時(shí),很自然地,你想創(chuàng)建一個(gè)分支issue-101來修復(fù)它,但是,等等,當(dāng)前正在dev上進(jìn)行的工作還沒有提交:
$ git status
On branch dev
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
new file: hello.py
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: readme.txt
并不是你不想提交,而是工作只進(jìn)行到一半,還沒法提交,預(yù)計(jì)完成還需1天時(shí)間。但是,必須在兩個(gè)小時(shí)內(nèi)修復(fù)該bug,怎么辦?
幸好,Git還提供了一個(gè)stash功能,可以把當(dāng)前工作現(xiàn)場“儲(chǔ)藏”起來,等以后恢復(fù)現(xiàn)場后繼續(xù)工作:
$ git stash
Saved working directory and index state WIP on dev: f52c633 add merge
現(xiàn)在,用git status查看工作區(qū),就是干凈的(除非有沒有被Git管理的文件),因此可以放心地創(chuàng)建分支來修復(fù)bug。
首先確定要在哪個(gè)分支上修復(fù)bug,假定需要在master分支上修復(fù),就從master創(chuàng)建臨時(shí)分支:
$ git checkout master
Switched to branch 'master'
Your branch is ahead of 'origin/master' by 6 commits.
(use "git push" to publish your local commits)
$ git checkout -b issue-101
Switched to a new branch 'issue-101'
現(xiàn)在修復(fù)bug,需要把“Git is free software ...”改為“Git is a free software ...”,然后提交:
$ git add readme.txt
$ git commit -m "fix bug 101"
[issue-101 4c805e2] fix bug 101
1 file changed, 1 insertion(+), 1 deletion(-)
修復(fù)完成后,切換到master分支,并完成合并,最后刪除issue-101分支:
$ git switch master
Switched to branch 'master'
Your branch is ahead of 'origin/master' by 6 commits.
(use "git push" to publish your local commits)
$ git merge --no-ff -m "merged bug fix 101" issue-101
Merge made by the 'recursive' strategy.
readme.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
太棒了,原計(jì)劃兩個(gè)小時(shí)的bug修復(fù)只花了5分鐘!現(xiàn)在,是時(shí)候接著回到dev分支干活了!
$ git switch dev
Switched to branch 'dev'
$ git status
On branch dev
nothing to commit, working tree clean
工作區(qū)是干凈的,剛才的工作現(xiàn)場存到哪去了?用git stash list命令看看:
$ git stash list
stash@{0}: WIP on dev: f52c633 add merge
工作現(xiàn)場還在,Git把stash內(nèi)容存在某個(gè)地方了,但是需要恢復(fù)一下,有兩個(gè)辦法:
一是用git stash apply恢復(fù),但是恢復(fù)后,stash內(nèi)容并不刪除,你需要用git stash drop來刪除;
另一種方式是用git stash pop,恢復(fù)的同時(shí)把stash內(nèi)容也刪了:
$ git stash pop
On branch dev
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
new file: hello.py
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: readme.txt
Dropped refs/stash@{0} (5d677e2ee266f39ea296182fb2354265b91b3b2a)
再用git stash list查看,就看不到任何stash內(nèi)容了:
$ git stash list
你可以多次stash,恢復(fù)的時(shí)候,先用git stash list查看,然后恢復(fù)指定的stash,用命令:
$ git stash apply stash@{0}
在master分支上修復(fù)了bug后,我們要想一想,dev分支是早期從master分支分出來的,所以,這個(gè)bug其實(shí)在當(dāng)前dev分支上也存在。
那怎么在dev分支上修復(fù)同樣的bug?重復(fù)操作一次,提交不就行了?
有木有更簡單的方法?
有!
同樣的bug,要在dev上修復(fù),我們只需要把4c805e2 fix bug 101這個(gè)提交所做的修改“復(fù)制”到dev分支。注意:我們只想復(fù)制4c805e2 fix bug 101這個(gè)提交所做的修改,并不是把整個(gè)master分支merge過來。
為了方便操作,Git專門提供了一個(gè)cherry-pick命令,讓我們能復(fù)制一個(gè)特定的提交到當(dāng)前分支:
$ git branch
* dev
master
$ git cherry-pick 4c805e2
[master 1d4b803] fix bug 101
1 file changed, 1 insertion(+), 1 deletion(-)
Git自動(dòng)給dev分支做了一次提交,注意這次提交的commit是1d4b803,它并不同于master的4c805e2,因?yàn)檫@兩個(gè)commit只是改動(dòng)相同,但確實(shí)是兩個(gè)不同的commit。用git cherry-pick,我們就不需要在dev分支上手動(dòng)再把修bug的過程重復(fù)一遍。
有些聰明的童鞋會(huì)想了,既然可以在master分支上修復(fù)bug后,在dev分支上可以“重放”這個(gè)修復(fù)過程,那么直接在dev分支上修復(fù)bug,然后在master分支上“重放”行不行?當(dāng)然可以,不過你仍然需要git stash命令保存現(xiàn)場,才能從dev分支切換到master分支。
小結(jié)
修復(fù)bug時(shí),我們會(huì)通過創(chuàng)建新的bug分支進(jìn)行修復(fù),然后合并,最后刪除;
當(dāng)手頭工作沒有完成時(shí),先把工作現(xiàn)場git stash一下,然后去修復(fù)bug,修復(fù)后,再git stash pop,回到工作現(xiàn)場;
在master分支上修復(fù)的bug,想要合并到當(dāng)前dev分支,可以用git cherry-pick 命令,把bug提交的修改“復(fù)制”到當(dāng)前分支,避免重復(fù)勞動(dòng)。