Git Stash Drop

Posted . ~1min read.

I love git.

Ever work with git and for whatever reason need to run git stash to override your local “changes.” Most of the time, I will never need these files again. Well, there’s an easy way to handle that… git stash drop.

Literally that simple.

git stash
git pull
git stash drop

Today I learned. ;)

Next...
...and even more...