Stashing with a description | The Git Stash Command
Stashing is useful to save your local changes away. If you do it several times by using the Git stash command without cleaning up by dropping stashes which you don’t need anymore, it can get messy. It will then be hard for you to keep track of your stashes and which stash contains what.
To get a cleaner list of stashes you can give your stashes a description to memorize what changes were contained in the stash:
After that, you can have a look at your stashes by using the git stash list command:
The git stash list command will result in the following:
Reference
For full reference see Git stash documentation.
