diff --git a/src/stashing.md b/src/stashing.md index b21bb09..13193bd 100644 --- a/src/stashing.md +++ b/src/stashing.md @@ -14,6 +14,8 @@ git stash list --pretty=format:'%Cblue%gd%Cred: %C(yellow)%s' # View changes in all stashes. git stash list -p +# Pipe into VS Code. +git stash list -p | code - # Show file changes in a particular stash (0 = last one). git stash show 'stash@{0}'