Git Commands - smoothdeveloper/home GitHub Wiki

List files in all stashes

git stash list | cut -d":" -f 1 | while read line; do git stash show $line | sed "s/^/[$line] /"; done