diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-01-20 16:16:09 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-01-20 16:16:09 -0800 |
commit | 17ad37112de878e7f946d202f830c95907d40f70 (patch) | |
tree | d48876d1db82b0a3794cede6280acdfc802c063e | |
parent | d06ce4a508386230e9412e68264a744392795dcb (diff) | |
parent | d6589d1ba42dd87c282c72045537f5eea8aaefcf (diff) | |
download | git-17ad37112de878e7f946d202f830c95907d40f70.tar.gz git-17ad37112de878e7f946d202f830c95907d40f70.tar.xz |
Merge branch 'ak/show-branch-usage-string'
* ak/show-branch-usage-string:
show-branch: fix indentation of usage string
-rw-r--r-- | builtin/show-branch.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/builtin/show-branch.c b/builtin/show-branch.c index 691eeda34..365228aa8 100644 --- a/builtin/show-branch.c +++ b/builtin/show-branch.c @@ -7,9 +7,9 @@ static const char* show_branch_usage[] = { N_("git show-branch [-a|--all] [-r|--remotes] [--topo-order | --date-order]\n" - " [--current] [--color[=<when>] | --no-color] [--sparse]\n" - " [--more=<n> | --list | --independent | --merge-base]\n" - " [--no-name | --sha1-name] [--topics] [(<rev> | <glob>)...]"), + " [--current] [--color[=<when>] | --no-color] [--sparse]\n" + " [--more=<n> | --list | --independent | --merge-base]\n" + " [--no-name | --sha1-name] [--topics] [(<rev> | <glob>)...]"), N_("git show-branch (-g|--reflog)[=<n>[,<base>]] [--list] [<ref>]"), NULL }; |