@@ -9,10 +9,11 @@ SYNOPSIS
99--------
1010[verse]
1111'git stash' list [<options>]
12- 'git stash' ( show | drop ) [<stash>]
13- 'git stash' ( pop | apply ) [--index] [<stash>]
12+ 'git stash' show [<stash>]
13+ 'git stash' drop [-q|--quiet] [<stash>]
14+ 'git stash' ( pop | apply ) [--index] [-q|--quiet] [<stash>]
1415'git stash' branch <branchname> [<stash>]
15- 'git stash' [save [--keep-index] [<message>]]
16+ 'git stash' [save [--keep-index] [-q|--quiet] [ <message>]]
1617'git stash' clear
1718'git stash' create
1819
@@ -41,7 +42,7 @@ is also possible).
4142OPTIONS
4243-------
4344
44- save [--keep-index] [<message>]::
45+ save [--keep-index] [-q|--quiet] [ <message>]::
4546
4647 Save your local modifications to a new 'stash', and run `git reset
4748 --hard` to revert them. This is the default action when no
@@ -75,7 +76,7 @@ show [<stash>]::
7576 it will accept any format known to 'git-diff' (e.g., `git stash show
7677 -p stash@\{1}` to view the second most recent stash in patch form).
7778
78- pop [<stash>]::
79+ pop [--index] [-q|--quiet] [ <stash>]::
7980
8081 Remove a single stashed state from the stash list and apply it
8182 on top of the current working tree state, i.e., do the inverse
@@ -93,7 +94,7 @@ longer apply the changes as they were originally).
9394+
9495When no `<stash>` is given, `stash@\{0}` is assumed.
9596
96- apply [--index] [<stash>]::
97+ apply [--index] [-q|--quiet] [ <stash>]::
9798
9899 Like `pop`, but do not remove the state from the stash list.
99100
@@ -115,7 +116,7 @@ clear::
115116 Remove all the stashed states. Note that those states will then
116117 be subject to pruning, and may be difficult or impossible to recover.
117118
118- drop [<stash>]::
119+ drop [-q|--quiet] [ <stash>]::
119120
120121 Remove a single stashed state from the stash list. When no `<stash>`
121122 is given, it removes the latest one. i.e. `stash@\{0}`
0 commit comments