Bite-sized things I pick up day to day — tools, tricks, and tidbits worth remembering.
Mar 18, 2026
Mar 17, 2026
git stash push -m "your message". This makes it much easier to find the right stash later when you have multiple stashes, instead of trying to decipher the auto-generated messages.git stash push -m "WIP: refactoring auth middleware"
git stash list
# stash@{0}: On main: WIP: refactoring auth middleware