2019-06-09
|~1 min read
|157 words
Adding a message to a stash is a great way to easily identify what’s included in a stash.
This can be particularly helpful if you’re only stashing specific files.
Use the flag --message
(or -ml
) that’s available for the git stash push
command.
As always, use the git stash --help
to see the manual and get more ideas for how to use it.
$ git stash push --message "backend tweak" api
Saved working directory and index state On master: backend-tweak
$ git stash list
stash@{0}: On master: backend tweak
git stash push
says what you’re going to do.--message "a string goes here"
says what you’d like to label the stash asapi
means anything with a path starting with api
(this is optional)Hi there and thanks for reading! My name's Stephen. I live in Chicago with my wife, Kate, and dog, Finn. Want more? See about and get in touch!