Skip to content

Commit

Permalink
Fix 'git' wrapper usage string
Browse files Browse the repository at this point in the history
8b1fa77 (Allow passing of configuration parameters in the command
line, 2010-03-26) forgot the closing ']' for the -c option.

While we're there, also rewrap.  Instead of folding the last two lines
together, try to highlight that COMMAND is required by starting a line
with it.

Signed-off-by: Thomas Rast <trast@student.ethz.ch>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Thomas Rast authored and Junio C Hamano committed Jul 27, 2010
1 parent 9a9fb5d commit 293b07f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions git.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ const char git_usage_string[] =
"git [--version] [--exec-path[=GIT_EXEC_PATH]] [--html-path]\n"
" [-p|--paginate|--no-pager] [--no-replace-objects]\n"
" [--bare] [--git-dir=GIT_DIR] [--work-tree=GIT_WORK_TREE]\n"
" [-c name=value\n"
" [--help] COMMAND [ARGS]";
" [-c name=value] [--help]\n"
" COMMAND [ARGS]";

const char git_more_info_string[] =
"See 'git help COMMAND' for more information on a specific command.";
Expand Down

0 comments on commit 293b07f

Please sign in to comment.