diff options
author | Stephan Beyer <s-beyer@gmx.net> | 2008-08-16 05:27:31 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-08-16 02:58:18 -0700 |
commit | a5ab00c5d20cee04ce181bb5a6c3ca5d923744a4 (patch) | |
tree | 24183276621c341e0a0b9a66c4518437d77c1756 /git-stash.sh | |
parent | 0d768f7c8f1b38ba14bbd5a2dfc4d56ae5eb4ad8 (diff) | |
download | git-a5ab00c5d20cee04ce181bb5a6c3ca5d923744a4.tar.gz |
git-stash: improve synopsis in help and manual page
"git stash -h" showed some incomplete and ugly usage information.
For example, the useful "--keep-index" option for "save" or the "--index"
option for "apply" were not shown. Also in the documentation synopsis they
were not shown, so that there is no incentive to scroll down and even see
that such options exist.
This patch improves the git-stash synopsis in the documentation by
mentioning that further options to the stash commands and then copies
this synopsis to the usage information string of git-stash.sh.
For the latter, the dashless git command string has to be inserted on the
second and the following usage lines. The code of this is taken from
git-sh-setup so that all lines will show the command string.
Note that the "create" command is not advertised at all now, because
it was not mentioned in git-stash.txt.
Signed-off-by: Stephan Beyer <s-beyer@gmx.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-stash.sh')
-rwxr-xr-x | git-stash.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/git-stash.sh b/git-stash.sh index 5ad2c4b7a3..e15c12abc3 100755 --- a/git-stash.sh +++ b/git-stash.sh @@ -1,7 +1,13 @@ #!/bin/sh # Copyright (c) 2007, Nanako Shiraishi -USAGE='[ | save | list | show | apply | clear | drop | pop | create | branch ]' +dashless=$(basename "$0" | sed -e 's/-/ /') +USAGE="list [<options>] + or: $dashless (show | drop | pop ) [<stash>] + or: $dashless apply [--index] [<stash>] + or: $dashless branch <branchname> [<stash>] + or: $dashless [save [--keep-index] [<message>]] + or: $dashless clear" SUBDIRECTORY_OK=Yes OPTIONS_SPEC= |