赞
踩
如题目所示,git stash 保存‘现场’后,git stash pop操作没有恢复‘现场’(第一次执行git stash pop后是可以恢复‘现场’的,但是,切换分支后再执行git stash pop 没有恢复)
解决:
git stash list //显示保存的现场
git stash apply {现场号}
如:
git stash list
你会看到=>
stash@{0} ....
然后:
git stash apply stash@{0}
即可恢复现场。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。