how to find old git stash code example
Example 1: git stash back
git stash pop
Example 2: get previous git stash
git fsck --unreachable | grep commit | cut -d ' ' -f3 | xargs git log --merges --no-walk
git stash pop
git fsck --unreachable | grep commit | cut -d ' ' -f3 | xargs git log --merges --no-walk