标签:lis logs soft 公司 href review pop html title
git stash用于将当前工作区的修改暂存起来,就像堆栈一样,可以随时将某一次缓存的修改再重新应用到当前工作区。
xxxx@Ubuntu64:~/code/linux/git$ git stash list stash@{0}: WIP on master: 452b08d rename hello as hello.c stash@{1}: WIP on master: 452b08d rename hello as hello.c
然后记得不要使用git stash pop,这个只是把最后一次的弹出来,应该使用git stash apply stash@{1}的方式来应用!
xxxx@Ubuntu64:~/code/linux/git$ git stash list
stash@{0}: WIP on master: 452b08d rename hello as hello.c
stash@{1}: WIP on master: 452b08d rename hello as hello.c
标签:lis logs soft 公司 href review pop html title
原文地址:http://www.cnblogs.com/to-be-rich/p/7455153.html