使用藏匿可以立即保存现有的代码,让代码回复到最近一次commit id的状态,但没有提交到本地,执行git push
也不会被推送
首先我对readme.txt做一些修改,然后
git stash
然后使用
git stash list
查看藏匿的信息
把代码还原出来,使用
git stash apply stash@{0}
然后消除藏匿的信息,以免以后造成误解
git stash drop stash@{0}
或者一次还原并且删除藏匿信息,使用
git stash pop