aboutsummaryrefslogtreecommitdiff
path: root/Documentation/git-repo-config.txt
diff options
context:
space:
mode:
authorPetr Baudis <pasky@suse.cz>2006-04-25 00:59:25 +0200
committerJunio C Hamano <junkio@cox.net>2006-04-24 22:29:33 -0700
commitde791f15a1b01e63f3c870c8497c594c47452fab (patch)
tree547caae879f03fc937b473bdd0f71ec7e4e04792 /Documentation/git-repo-config.txt
parent36932eab772dc621e79d615fda425ecf87e6d74e (diff)
downloadgit-de791f15a1b01e63f3c870c8497c594c47452fab.tar.gz
git-de791f15a1b01e63f3c870c8497c594c47452fab.tar.xz
git-repo-config --list support
This adds git-repo-config --list (or git-repo-config -l) support, similar to what git-var -l does now (to be phased out so that we have a single sane interface to the config file instead of fragmented and confused API). Signed-off-by: Petr Baudis <pasky@suse.cz>
Diffstat (limited to 'Documentation/git-repo-config.txt')
-rw-r--r--Documentation/git-repo-config.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/Documentation/git-repo-config.txt b/Documentation/git-repo-config.txt
index 71f96bdd1..566cfa183 100644
--- a/Documentation/git-repo-config.txt
+++ b/Documentation/git-repo-config.txt
@@ -15,6 +15,7 @@ SYNOPSIS
'git-repo-config' [type] --get-all name [value_regex]
'git-repo-config' [type] --unset name [value_regex]
'git-repo-config' [type] --unset-all name [value_regex]
+'git-repo-config' -l | --list
DESCRIPTION
-----------
@@ -64,6 +65,9 @@ OPTIONS
--unset-all::
Remove all matching lines from .git/config.
+-l, --list::
+ List all variables set in .git/config.
+
EXAMPLE
-------