File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-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)`.
50
50
* [ Git Aliases] ( #git-aliases )
51
51
* [ Saving current state of tracked files without commiting] ( #saving-current-state-of-tracked-files-without-commiting )
52
52
* [ Saving current state including untracked files] ( #saving-current-state-including-untracked-files )
53
+ * [ Saving current state with message] ( #saving-current-state-with-message )
53
54
* [ Show list of all saved stashes] ( #show-list-of-all-saved-stashes )
54
55
* [ Apply any stash without deleting from the stashed list] ( #apply-any-stash-without-deleting-from-the-stashed-list )
55
56
* [ 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:__
414
415
git stash save --include-untracked
415
416
```
416
417
418
+ ## Saving current state with message
419
+ ``` sh
420
+ git stash save < message>
421
+ ```
422
+
417
423
## Show list of all saved stashes
418
424
``` sh
419
425
git stash list
You can’t perform that action at this time.
0 commit comments