Quick tip: Git stash with a message
#git
#productivity
Instead of just git stash, use a message so you remember what you stashed:
git stash push -m "WIP: fixing auth bug"
Then list your stashes with git stash list and you’ll actually know what’s in each one.