Show contents of Git stash
To show list of files in the most recent Git stash:
git stash show
To show the diff:
git stash show -p
To show content of nth most recent stash:
git stash show -p stash@{n}
To show list of files in the most recent Git stash:
git stash show
To show the diff:
git stash show -p
To show content of nth most recent stash:
git stash show -p stash@{n}