]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-repo-config.txt
repo-config: document what value_regexp does a bit more clearly.
[thirdparty/git.git] / Documentation / git-repo-config.txt
CommitLineData
ee72aeaf
JS
1git-repo-config(1)
2==================
2d2465c0
JS
3
4NAME
5----
7bd7f280 6git-repo-config - Get and set options in .git/config
2d2465c0
JS
7
8
9SYNOPSIS
10--------
c7569b1e 11[verse]
7162dff3
PB
12'git-repo-config' [type] name [value [value_regex]]
13'git-repo-config' [type] --replace-all name [value [value_regex]]
14'git-repo-config' [type] --get name [value_regex]
15'git-repo-config' [type] --get-all name [value_regex]
16'git-repo-config' [type] --unset name [value_regex]
17'git-repo-config' [type] --unset-all name [value_regex]
2d2465c0
JS
18
19DESCRIPTION
20-----------
4ddba79d
JS
21You can query/set/replace/unset options with this command. The name is
22actually the section and the key separated by a dot, and the value will be
23escaped.
2d2465c0 24
6fe31e2e
JH
25If you want to set/unset an option which can occur on multiple
26lines, a POSIX regexp `value_regex` needs to be given. Only the
27existing values that match the regexp are updated or unset. If
28you want to handle the lines that do *not* match the regex, just
29prepend a single exclamation mark in front (see EXAMPLES).
2d2465c0 30
7162dff3
PB
31The type specifier can be either '--int' or '--bool', which will make
32'git-repo-config' ensure that the variable(s) are of the given type and
33convert the value to the canonical form (simple decimal number for int,
34a "true" or "false" string for bool). If no type specifier is passed,
35no checks or transformations are performed on the value.
36
2d2465c0
JS
37This command will fail if
38
39. .git/config is invalid,
40. .git/config can not be written to,
41. no section was provided,
42. the section or key is invalid,
43. you try to unset an option which does not exist, or
44. you try to unset/set an option for which multiple lines match.
45
46
47OPTIONS
48-------
49
4ddba79d
JS
50--replace-all::
51 Default behaviour is to replace at most one line. This replaces
52 all lines matching the key (and optionally the value_regex)
53
54--get::
55 Get the value for a given key (optionally filtered by a regex
56 matching the value).
57
58--get-all::
59 Like get, but does not fail if the number of values for the key
60 is not exactly one.
61
2d2465c0 62--unset::
4ddba79d
JS
63 Remove the line matching the key from .git/config.
64
65--unset-all::
66 Remove all matching lines from .git/config.
2d2465c0
JS
67
68
69EXAMPLE
70-------
71
72Given a .git/config like this:
73
74 #
75 # This is the config file, and
76 # a '#' or ';' character indicates
77 # a comment
78 #
79
80 ; core variables
81 [core]
82 ; Don't trust file modes
83 filemode = false
84
85 ; Our diff algorithm
86 [diff]
87 external = "/usr/local/bin/gnu-diff -u"
88 renames = true
89
90 ; Proxy settings
1ab661dd
PB
91 [core]
92 gitproxy="ssh" for "ssh://kernel.org/"
93 gitproxy="proxy-command" for kernel.org
94 gitproxy="myprotocol-command" for "my://"
95 gitproxy=default-proxy ; for all the rest
2d2465c0
JS
96
97you can set the filemode to true with
98
99------------
ee72aeaf 100% git repo-config core.filemode true
2d2465c0
JS
101------------
102
103The hypothetic proxy command entries actually have a postfix to discern
104to what URL they apply. Here is how to change the entry for kernel.org
105to "ssh".
106
107------------
1ab661dd 108% git repo-config core.gitproxy '"ssh" for kernel.org' 'for kernel.org$'
2d2465c0
JS
109------------
110
111This makes sure that only the key/value pair for kernel.org is replaced.
112
113To delete the entry for renames, do
114
115------------
ee72aeaf 116% git repo-config --unset diff.renames
2d2465c0
JS
117------------
118
1ab661dd 119If you want to delete an entry for a multivar (like core.gitproxy above),
4ddba79d
JS
120you have to provide a regex matching the value of exactly one line.
121
122To query the value for a given key, do
2d2465c0
JS
123
124------------
ee72aeaf 125% git repo-config --get core.filemode
2d2465c0
JS
126------------
127
4ddba79d
JS
128or
129
130------------
ee72aeaf 131% git repo-config core.filemode
4ddba79d
JS
132------------
133
134or, to query a multivar:
135
136------------
1ab661dd 137% git repo-config --get core.gitproxy "for kernel.org$"
4ddba79d
JS
138------------
139
140If you want to know all the values for a multivar, do:
141
142------------
1ab661dd 143% git repo-config --get-all core.gitproxy
4ddba79d
JS
144------------
145
1ab661dd 146If you like to live dangerous, you can replace *all* core.gitproxy by a
4ddba79d
JS
147new one with
148
149------------
1ab661dd 150% git repo-config --replace-all core.gitproxy ssh
4ddba79d 151------------
2d2465c0 152
f98d863d
JS
153However, if you really only want to replace the line for the default proxy,
154i.e. the one without a "for ..." postfix, do something like this:
155
156------------
1ab661dd 157% git repo-config core.gitproxy ssh '! for '
f98d863d
JS
158------------
159
160To actually match only values with an exclamation mark, you have to
161
162------------
ee72aeaf 163% git repo-config section.key value '[!]'
f98d863d
JS
164------------
165
2d2465c0 166
1ab661dd
PB
167include::config.txt[]
168
169
2d2465c0
JS
170Author
171------
172Written by Johannes Schindelin <Johannes.Schindelin@gmx.de>
173
174Documentation
175--------------
1ab661dd 176Documentation by Johannes Schindelin, Petr Baudis and the git-list <git@vger.kernel.org>.
2d2465c0
JS
177
178GIT
179---
180Part of the gitlink:git[7] suite
181