(For git stash basics have a look at Using the Stash.) It’s possible to do a diff inside a stash entry: $ git stash show stash@{0} -u Shorthand for the latest stashed entry: $ git stash show -u To get a list of filenames in a stash entry: $ git stash show stash@{0} –name-only Get …
Tag Archives: commands
Some useful Git commands (my personal git cheat sheet)
Note: This article needs some editing, so please ignore it or regard it as my personal git cheat sheet.