
How to see the contents of stashed changes in Git
Estimated 1 minute read · Monday, 24 January 2022
git stash show -p stash@{0}
Where 0
is the indexed location of the item in the stash. Find all items in the stash using:
git stash list
git stash show -p stash@{0}
Where 0
is the indexed location of the item in the stash. Find all items in the stash using:
git stash list