recover a git stash code example
Example 1: how to undo a git stash
git stash apply
Example 2: recover git stash clear
git fsck --unreachable |
grep commit | cut -d\ -f3 |
xargs git log --merges --no-walk --grep=WIP
git stash apply
git fsck --unreachable |
grep commit | cut -d\ -f3 |
xargs git log --merges --no-walk --grep=WIP