Optimizing your experience
Gradient background

How to see the contents of stashed changes in Git

Clarice Bouwer

Software Engineering Team Lead and Director of Cloudsure

Monday, 24 January 2022 · Estimated 1 minute read
Copy
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:

Copy
git stash list