diff options
author | Thomas Rast <trast@student.ethz.ch> | 2010-07-26 10:36:24 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-07-27 09:04:21 -0700 |
commit | 293b07f114796d39c5571d5fe4808e898e5af0c8 (patch) | |
tree | 60ba3f5993e0b61d3c9ca95d639fab144c52a527 | |
parent | Documentation/git-push: Explain status output in more detail (diff) | |
download | tgif-293b07f114796d39c5571d5fe4808e898e5af0c8.tar.xz |
Fix 'git' wrapper usage string
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>
-rw-r--r-- | git.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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."; |