Last Updated: February 25, 2016
·
431
· mull

View your git stash

Keep forgetting what you stashed? Popping your stash can cause some pretty severe damage if you're in the wrong branch. Luckily it's quite easy to just view what your stash contains.

git stash show

Inspect stashes:

git stash show -p stash@{0} 
# {0} being the entry that is popped when you 
# git stash pop