if i do a git stash can i do a git stash pop on a new branch? code example
Example 1: how to stash changes and use in another brunch
git stash
git checkout -b xxx
git stash pop
Example 2: get previous git stash
git fsck --unreachable | grep commit | cut -d ' ' -f3 | xargs git log --merges --no-walk