summaryrefslogtreecommitdiff
path: root/builtin-config.c
diff options
context:
space:
mode:
authorAndrew Ruder <andy@aeruder.net>2007-04-19 03:03:37 (GMT)
committerJunio C Hamano <junkio@cox.net>2007-04-19 05:08:16 (GMT)
commit9bc20aa73152784ee758f6432e20820e581c9412 (patch)
tree0895efb7d2376015389ba5bd755039cd5e7a5fa6 /builtin-config.c
parentc91ee2714ecd01594cf2feef57157098dc486590 (diff)
downloadgit-9bc20aa73152784ee758f6432e20820e581c9412.zip
git-9bc20aa73152784ee758f6432e20820e581c9412.tar.gz
git-9bc20aa73152784ee758f6432e20820e581c9412.tar.bz2
Update git-config documentation
Documentation/git-config.txt: Added documentation for --system Documentation/builtin-config.c: Added --system to the short usage Signed-off-by: Andrew Ruder <andy@aeruder.net> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin-config.c')
-rw-r--r--builtin-config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-config.c b/builtin-config.c
index dfa403b..b2515f7 100644
--- a/builtin-config.c
+++ b/builtin-config.c
@@ -2,7 +2,7 @@
#include "cache.h"
static const char git_config_set_usage[] =
-"git-config [ --global ] [ --bool | --int ] [--get | --get-all | --get-regexp | --replace-all | --add | --unset | --unset-all] name [value [value_regex]] | --rename-section old_name new_name | --remove-section name | --list";
+"git-config [ --global | --system ] [ --bool | --int ] [--get | --get-all | --get-regexp | --replace-all | --add | --unset | --unset-all] name [value [value_regex]] | --rename-section old_name new_name | --remove-section name | --list";
static char *key;
static regex_t *key_regexp;