Problem Statement
How do you list stash entries and view what changed inside a specific stash?
Explanation
List with `git stash list`. Inspect with `git stash show -p stash@{n}` to see the patch, or `git show stash@{n}` for full object details.
Practice Sets
This question appears in the following practice sets: