# List your current stashes
git stash list
# If there is only one stash you can switch to it with
git stash pop
# If there are multiple stashes you choose by typing the name at the end i.e.
git stash pop stash@{0}
# Just check out the branch you want your changes on, and then
git stash apply
#Then use
git diff # to see the result
git fsck --unreachable |
grep commit | cut -d -f3 |
xargs git log --merges --no-walk --grep=WIP