Git Stash Tips
Show Stash Diff
To see the difference between the current code and some stash's entry, you can run the following:
git stash show -p
You can specify a stash index too:
// git stash list
stash@{0}: First entry
stash@{1}: Second entry
stash@{2}: Third ...
giovannibenussi.hashnode.dev2 min read