Viewing the content of the last Git stash
Published on 2021-01-16 • Modified on 2021-01-16
It's more a note than a snippet, but I wanted to have it at my disposal as I always forget. Also note that to delete the last stash you can use git stash drop
.
git stash show -p
# If your remove "-p" you will see the modified files and the changes summary only.
# "git stash drop" removes the last stash
More on Stackoverflow Random snippet