修复bug时,我们会通过创建新的bug分支进行修复,然后合并,最后删除;
当手头工作没有完成时,先把工作现场git stash
一下,然后去修复bug,修复后,再git stash pop
,回到工作现场。
stash功能,可以把当前工作现场“储藏”起来,等以后恢复现场后继续工作 $ git stash
git status查看工作区
选择master分支(bug出现在的分支) $ git checkout master
创建临时分支 issue-101 $ git checkout -b issue-101
修复bug ,改文件并提交做好备注 $ git add readme.txt
$ git commit -m "fix bug 101"
待bug修复完后切换到master分支,并完成合并,最后删除issue-101分支
$ git checkout master
$ git merge --no-ff -m "merged bug fix 101" issue-101
$ git branch -d issue-101
刚才的工作现场存到哪去了?用git stash list命令看看 $ git stash list
删除stash内容 git stash drop