Git速成学习笔记整理于廖雪峰老师的官网网站:https://www.liaoxuefeng.com/
当你接到一个修复代码为101的任务的时候,很自然的你想创建一个分支issue-101来修复它,但是等等,当前正在dev上进行的工作还没有提交:
$ 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
并不是你不想提交,而是工作到一半,还没发提交,预计完成还需要一天的时间。但是要求bug在两个小时内修复。
Git提供了一个stash功能,可以把当前的工作现场“储藏起来”,等待以后恢复工作现场后继续工作:
$ git stash Saved working directory and index state WIP on dev: f52c633 add merge
现在用git status查看工作区,就是干净的(除非没有被Git管理的文件),因此可以放心的创建分支来修复bug。
首先确定要在哪个分支上修复bug,假定需要在master分支上修复,就从master创建临时分支:
$ 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'
现在修复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(-)
修复完成后,切换到master分支,并完成合并,最后删除issue-101分支:
$ 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 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(-)
bug修复完成,我们可以继续回到dev分支工作。
$ git checkout dev Switched to branch 'dev' $ git status On branch dev nothing to commit, working tree clean
我们可以看到工作区是干净的,刚才的工作现场存哪儿去了?用git stash list命令查看:
$ git stash list
stash@{0}: WIP on dev: f52c633 add merge
工作现场还在,Git把stash的内容存在某个地方了,但是需要回复一下,有两个办法:
一是用git stash apply回复,但是恢复后,stash内容并不删除,你需要用git stash droop删除
二是用git stash 婆婆,恢复的同时把stash内容也删除了
$ 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,恢复的时候,先用git stash list查看,然后用恢复指定的stash,用命令:
$ git stash apply stash@{0}
在master分支上修复bug后,我们会思考,dev分支时早期从master分支分出来的,所以这个bug其实在当前分支上也存在。
那怎么在dev分支上修复同样的bug?重复操作一次不就行了?有没有更简单的方法?
有的!
同样的bug,要在dev上修复,我们只需要把4c805e2 fix bug 101这个提交所做的修改“复制”到dev分支。注意:我们只想
复制4c805e2 fix bug 101这个提交所做的修改,并不是把整个master分支merge过来。
为了方便操作,Git专门提供cherry -pick命令,让我们能复制一个特定的提交到当前分支:
$ git branch * dev master $ git cherry-pick 4c805e2 [master 1d4b803] fix bug 101 1 file changed, 1 insertion(+), 1 deletion(-)
Git会自动给dev分支做了一次提交,注意这次提交的commit是1d4b803,它不同于master的4c805e2,因为这两个commit只是改动
相同,但是确实是两个不同的commit。用git cherry -pick,我们就不需要在dev分支上动手再把修bug的过程重复一遍。
有的人的会想,既然可以在master分支上修复bug后,在dev分支上可以重复这个修复过程,那么直接在dev分支上修复bug,然后
在master分支上重复行不行?当然可以,不过你仍需要git stash命令保护现场,才能从dev分支切换到master分支
Summary
修复bug时,我们会通过创建新的bug分支进行修复,然后合并最后删除;
当前的的工作没有完成的时候,先把工作现场git stash一下,然后修复bug,修复后再用git stash pop回到工作现场;
在master分支上修复的bug,想要合并到当前的dev分支,可以用git cherry-pick <commit>命令,把bug提交的修改“复制”
到当前的分支,避免重复劳动。