有时候我们代码写到一半突然要切到别的分支上去改代码
但是又不想把现在还没写完的代码上传到仓库
这个时候就可以使用 git stash
先将未完成的工作保存在本地
一共三步
- 将当前的所有工作保存
git stash
Saved working directory and index state WIP on production: 9c0b32d html 更新
- 查看你的slash 列表
git stash list
stash@{0}: WIP on production: 9c0b32d html 更新
stash@{1}: WIP on production: bc0437d html2 更新
- 选中你需要的slash,切换回来
git stash pop stash@{0}
pop之后,你的代码就回到上次你停止工作的地方了。可能会遇到代码冲突的问题,依次解决即可。
参考地址
https://gitbook.tw/chapters/faq/stash.html