一、场景
在wql-feature-V2.2.0-productMultiPlatform分支上开发,但此时有个bug,需要切到hotfix-product0408分支上,希望切回来的时候还能保留更改
二、git stash的使用:
git stash list
查看stash记录git stash save -u "需求 a 只完成了一半"
保存到stash,如果有新文件就需要加-u,或者在stash前进行git add .- 此时可以切换到hotfix分支了,改完bug切回来
git stash apply stash@{id}
将指定的stash应用到工作区,id是通过git stash list获取到的。git stash apply相当于git stash apply stash@{0},将最近的stash应用到工作区。如果使用git stash pop,就会在应用到工作区的同时将此条stash记录删除git stash drop stash@{id}
删除指定的stash记录。git stash drop删除最近的stash记录。 git stash clear删除所有的stash记录