summaryrefslogtreecommitdiff
path: root/Documentation/git-config.txt
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2007-04-19 23:06:21 -0700
committerJunio C Hamano <junkio@cox.net>2007-04-19 23:06:21 -0700
commit754eeb33df25b5e34508c5b9cfef374f4929998d (patch)
treed5c00f95130d51b850b73890928696394f6b52fb /Documentation/git-config.txt
parent851c603e9ca9d0954d89be1532d924a28ccb79fa (diff)
parent9bc20aa73152784ee758f6432e20820e581c9412 (diff)
downloadgit-754eeb33df25b5e34508c5b9cfef374f4929998d.tar.gz
Merge branch 'maint'
* maint: Update git-config documentation Fix unmatched emphasis tag in git-tutorial Update git-cherry-pick documentation Update git-archive documentation
Diffstat (limited to 'Documentation/git-config.txt')
-rw-r--r--Documentation/git-config.txt24
1 files changed, 14 insertions, 10 deletions
diff --git a/Documentation/git-config.txt b/Documentation/git-config.txt
index c759efb7fc..280ef2058c 100644
--- a/Documentation/git-config.txt
+++ b/Documentation/git-config.txt
@@ -9,16 +9,16 @@ git-config - Get and set repository or global options
SYNOPSIS
--------
[verse]
-'git-config' [--global] [type] name [value [value_regex]]
-'git-config' [--global] [type] --add name value
-'git-config' [--global] [type] --replace-all name [value [value_regex]]
-'git-config' [--global] [type] --get name [value_regex]
-'git-config' [--global] [type] --get-all name [value_regex]
-'git-config' [--global] [type] --unset name [value_regex]
-'git-config' [--global] [type] --unset-all name [value_regex]
-'git-config' [--global] [type] --rename-section old_name new_name
-'git-config' [--global] [type] --remove-section name
-'git-config' [--global] -l | --list
+'git-config' [--system | --global] [type] name [value [value_regex]]
+'git-config' [--system | --global] [type] --add name value
+'git-config' [--system | --global] [type] --replace-all name [value [value_regex]]
+'git-config' [--system | --global] [type] --get name [value_regex]
+'git-config' [--system | --global] [type] --get-all name [value_regex]
+'git-config' [--system | --global] [type] --unset name [value_regex]
+'git-config' [--system | --global] [type] --unset-all name [value_regex]
+'git-config' [--system | --global] [type] --rename-section old_name new_name
+'git-config' [--system | --global] [type] --remove-section name
+'git-config' [--system | --global] -l | --list
DESCRIPTION
-----------
@@ -76,6 +76,10 @@ OPTIONS
--global::
Use global ~/.gitconfig file rather than the repository .git/config.
+--system::
+ Use system-wide $(prefix)/etc/gitconfig rather than the repository
+ .git/config.
+
--remove-section::
Remove the given section from the configuration file.