From: Jari Aalto Date: Sat, 2 Feb 2008 14:03:48 +0000 (+0200) Subject: Documentation/git-stash.txt: Adjust SYNOPSIS command syntax (2) X-Git-Tag: v1.5.4.1~7 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=71bda8b923ed1bde7b831c6597af5a80213f6768;p=git.git Documentation/git-stash.txt: Adjust SYNOPSIS command syntax (2) Adjust the command syntax to better reflect the call parameters: [save] [message...] => [save []]. Signed-off-by: Jari Aalto Signed-off-by: Junio C Hamano --- diff --git a/Documentation/git-stash.txt b/Documentation/git-stash.txt index 9889806a5..cd0dc1bd9 100644 --- a/Documentation/git-stash.txt +++ b/Documentation/git-stash.txt @@ -9,7 +9,7 @@ SYNOPSIS -------- [verse] 'git-stash' (list | show [] | apply [] | clear) -'git-stash' [save] [message...] +'git-stash' [save []] DESCRIPTION ----------- @@ -36,11 +36,12 @@ is also possible). OPTIONS ------- -save:: +save []:: Save your local modifications to a new 'stash', and run `git-reset --hard` to revert them. This is the default action when no - subcommand is given. + subcommand is given. The part is optional and gives + the description along with the stashed state. list::