赞
踩
有时候我们代码写到一半突然要切到别的分支上去改代码
但是又不想把现在还没写完的代码上传到仓库
这个时候就可以使用 git stash
先将未完成的工作保存在本地
git stash
Saved working directory and index state WIP on production: 9c0b32d html 更新
git stash list
stash@{0}: WIP on production: 9c0b32d html 更新
stash@{1}: WIP on production: bc0437d html2 更新
git stash pop stash@{0}
pop之后,你的代码就回到上次你停止工作的地方了。可能会遇到代码冲突的问题,依次解决即可。
https://gitbook.tw/chapters/faq/stash.html
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。