File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ P.S: All these commands are tested on `git version 2.7.4 (Apple Git-66)`.
5050* [ Git Aliases] ( #git-aliases )
5151* [ Saving current state of tracked files without commiting] ( #saving-current-state-of-tracked-files-without-commiting )
5252* [ Saving current state including untracked files] ( #saving-current-state-including-untracked-files )
53+ * [ Saving current state with message] ( #saving-current-state-with-message )
5354* [ Show list of all saved stashes] ( #show-list-of-all-saved-stashes )
5455* [ Apply any stash without deleting from the stashed list] ( #apply-any-stash-without-deleting-from-the-stashed-list )
5556* [ Apply last stashed state and delete it from stashed list] ( #apply-last-stashed-state-and-delete-it-from-stashed-list )
@@ -414,6 +415,11 @@ __Alternatives:__
414415git stash save --include-untracked
415416```
416417
418+ ## Saving current state with message
419+ ``` sh
420+ git stash save < message>
421+ ```
422+
417423## Show list of all saved stashes
418424``` sh
419425git stash list
Original file line number Diff line number Diff line change 124124 "title" : " Saving current state including untracked files" ,
125125 "tip" : " git stash save -u" ,
126126 "alternatives" : [" git stash save --include-untracked" ]
127+ }, {
128+ "title" : " Saving current state with message" ,
129+ "tip" : " git stash save <message>"
127130}, {
128131 "title" : " Show list of all saved stashes" ,
129132 "tip" : " git stash list"
You can’t perform that action at this time.
0 commit comments