diff options
| author | Junio C Hamano <gitster@pobox.com> | 2021-10-13 15:15:58 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2021-10-13 15:15:58 -0700 |
| commit | d7bc8521518d4821c5d2e18742991a6ad05efee1 (patch) | |
| tree | 597f8f4f259d4c366a9a679ea5ad01e8470024bf /builtin/stash.c | |
| parent | 62f035aee3ff53aa9c5296d5acb4c4b683ba314d (diff) | |
| parent | 4631cfc20bd446bbacb078891389f58faeb13bcb (diff) | |
| download | git-d7bc8521518d4821c5d2e18742991a6ad05efee1.tar.xz | |
Merge branch 'ab/align-parse-options-help'
When "git cmd -h" shows more than one line of usage text (e.g.
the cmd subcommand may take sub-sub-command), parse-options API
learned to align these lines, even across i18n/l10n.
* ab/align-parse-options-help:
parse-options: properly align continued usage output
git rev-parse --parseopt tests: add more usagestr tests
send-pack: properly use parse_options() API for usage string
parse-options API users: align usage output in C-strings
Diffstat (limited to 'builtin/stash.c')
| -rw-r--r-- | builtin/stash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/stash.c b/builtin/stash.c index cc93ace422..a0ccc8654d 100644 --- a/builtin/stash.c +++ b/builtin/stash.c @@ -85,7 +85,7 @@ static const char * const git_stash_push_usage[] = { static const char * const git_stash_save_usage[] = { N_("git stash save [-p|--patch] [-k|--[no-]keep-index] [-q|--quiet]\n" - " [-u|--include-untracked] [-a|--all] [<message>]"), + " [-u|--include-untracked] [-a|--all] [<message>]"), NULL }; |
