Categories
Git Quick Tips Quick Tips

Save your git stashes with helpful descriptions

< 1 min read

Do you struggle with finding what you’re looking for in your git stashes? git stash push lets you stash changes with a description:

git stash push -m "A helpful description of what this stash contains"

Try it the next time you git stash!

git stash before
git stash after