git stash comment example
Example 1: stash with message
git stash save “Your stash message”.
Example 2: git stash save name
# save your working copy changes
git diff > some.patch
# re-apply it later
git apply some.patch
git stash save “Your stash message”.
# save your working copy changes
git diff > some.patch
# re-apply it later
git apply some.patch