(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 …
Category Archives: git
Don’t FTP the Git Shit
I didn’t even realize I was pushing all my (uncountable) git directories when FTP’ing. But Filezilla appears not to have a default filter for git directories. Luckily it’s easy to create one: In Filezilla 3.5.3 go to View > Filename filters… and add a filter with the following settings: Done, happy FTP’ing!