记录git stash误删除恢复方法
git log --graph --oneline --decorate $( git fsck --no-reflog | awk '/dangling commit/ {print $3}' )
然后enter找到自己stash的那个记录的id
git stash apply id
ok了
git log --graph --oneline --decorate $( git fsck --no-reflog | awk '/dangling commit/ {print $3}' )
然后enter找到自己stash的那个记录的id
git stash apply id
ok了