a9488be5abb820723ebc8c7e1d31f80d0cb79b8e
[git.git] / man1 / git-repo-config.1
1 .\"Generated by db2man.xsl. Don't modify this, modify the source.
2 .de Sh \" Subsection
3 .br
4 .if t .Sp
5 .ne 5
6 .PP
7 \fB\\$1\fR
8 .PP
9 ..
10 .de Sp \" Vertical space (when we can't use .PP)
11 .if t .sp .5v
12 .if n .sp
13 ..
14 .de Ip \" List item
15 .br
16 .ie \\n(.$>=3 .ne \\$3
17 .el .ne 3
18 .IP "\\$1" \\$2
19 ..
20 .TH "GIT-REPO-CONFIG" 1 "" "" ""
21 .SH NAME
22 git-repo-config \- Get and set options in .git/config
23 .SH "SYNOPSIS"
24
25 .nf
26 \fIgit\-repo\-config\fR [type] name [value [value_regex]]
27 \fIgit\-repo\-config\fR [type] \-\-replace\-all name [value [value_regex]]
28 \fIgit\-repo\-config\fR [type] \-\-get name [value_regex]
29 \fIgit\-repo\-config\fR [type] \-\-get\-all name [value_regex]
30 \fIgit\-repo\-config\fR [type] \-\-unset name [value_regex]
31 \fIgit\-repo\-config\fR [type] \-\-unset\-all name [value_regex]
32 .fi
33
34 .SH "DESCRIPTION"
35
36
37 You can query/set/replace/unset options with this command\&. The name is actually the section and the key separated by a dot, and the value will be escaped\&.
38
39
40 If you want to set/unset an option which can occur on multiple lines, you should provide a POSIX regex for the value\&. If you want to handle the lines \fInot\fR matching the regex, just prepend a single exclamation mark in front (see EXAMPLES)\&.
41
42
43 The type specifier can be either \fI\-\-int\fR or \fI\-\-bool\fR, which will make \fIgit\-repo\-config\fR ensure that the variable(s) are of the given type and convert the value to the canonical form (simple decimal number for int, a "true" or "false" string for bool)\&. If no type specifier is passed, no checks or transformations are performed on the value\&.
44
45
46 This command will fail if
47
48 .TP 3
49 1.
50 \&.git/config is invalid,
51 .TP
52 2.
53 \&.git/config can not be written to,
54 .TP
55 3.
56 no section was provided,
57 .TP
58 4.
59 the section or key is invalid,
60 .TP
61 5.
62 you try to unset an option which does not exist, or
63 .TP
64 6.
65 you try to unset/set an option for which multiple lines match\&.
66 .LP
67
68 .SH "OPTIONS"
69
70 .TP
71 \-\-replace\-all
72 Default behaviour is to replace at most one line\&. This replaces all lines matching the key (and optionally the value_regex)
73
74 .TP
75 \-\-get
76 Get the value for a given key (optionally filtered by a regex matching the value)\&.
77
78 .TP
79 \-\-get\-all
80 Like get, but does not fail if the number of values for the key is not exactly one\&.
81
82 .TP
83 \-\-unset
84 Remove the line matching the key from \&.git/config\&.
85
86 .TP
87 \-\-unset\-all
88 Remove all matching lines from \&.git/config\&.
89
90 .SH "EXAMPLE"
91
92
93 Given a \&.git/config like this:
94
95 .nf
96 #
97 # This is the config file, and
98 # a '#' or ';' character indicates
99 # a comment
100 #
101 .fi
102
103 .nf
104 ; core variables
105 [core]
106         ; Don't trust file modes
107         filemode = false
108 .fi
109
110 .nf
111 ; Our diff algorithm
112 [diff]
113         external = "/usr/local/bin/gnu\-diff \-u"
114         renames = true
115 .fi
116
117 .nf
118 ; Proxy settings
119 [core]
120         gitproxy="ssh" for "ssh://kernel\&.org/"
121         gitproxy="proxy\-command" for kernel\&.org
122         gitproxy="myprotocol\-command" for "my://"
123         gitproxy=default\-proxy ; for all the rest
124 .fi
125
126
127 you can set the filemode to true with
128
129 .nf
130 % git repo\-config core\&.filemode true
131 .fi
132
133
134 The hypothetic proxy command entries actually have a postfix to discern to what URL they apply\&. Here is how to change the entry for kernel\&.org to "ssh"\&.
135
136 .nf
137 % git repo\-config core\&.gitproxy '"ssh" for kernel\&.org' 'for kernel\&.org$'
138 .fi
139
140
141 This makes sure that only the key/value pair for kernel\&.org is replaced\&.
142
143
144 To delete the entry for renames, do
145
146 .nf
147 % git repo\-config \-\-unset diff\&.renames
148 .fi
149
150
151 If you want to delete an entry for a multivar (like core\&.gitproxy above), you have to provide a regex matching the value of exactly one line\&.
152
153
154 To query the value for a given key, do
155
156 .nf
157 % git repo\-config \-\-get core\&.filemode
158 .fi
159
160
161 or
162
163 .nf
164 % git repo\-config core\&.filemode
165 .fi
166
167
168 or, to query a multivar:
169
170 .nf
171 % git repo\-config \-\-get core\&.gitproxy "for kernel\&.org$"
172 .fi
173
174
175 If you want to know all the values for a multivar, do:
176
177 .nf
178 % git repo\-config \-\-get\-all core\&.gitproxy
179 .fi
180
181
182 If you like to live dangerous, you can replace \fIall\fR core\&.gitproxy by a new one with
183
184 .nf
185 % git repo\-config \-\-replace\-all core\&.gitproxy ssh
186 .fi
187
188
189 However, if you really only want to replace the line for the default proxy, i\&.e\&. the one without a "for ..." postfix, do something like this:
190
191 .nf
192 % git repo\-config core\&.gitproxy ssh '! for '
193 .fi
194
195
196 To actually match only values with an exclamation mark, you have to
197
198 .nf
199 % git repo\-config section\&.key value '[!]'
200 .fi
201
202 .SH "CONFIGURATION FILE"
203
204
205 The git configuration file contains a number of variables that affect the git commands behaviour\&. They can be used by both the git plumbing and the porcelains\&. The variables are divided to sections, where in the fully qualified variable name the variable itself is the last dot\-separated segment and the section name is everything before the last dot\&. The variable names are case\-insensitive and only alphanumeric characters are allowed\&. Some variables may appear multiple times\&.
206
207
208 The syntax is fairly flexible and permissive; whitespaces are mostly ignored\&. The \fI#\fR and \fI;\fR characters begin commends to the end of line, blank lines are ignored, lines containing strings enclosed in square brackets start sections and all the other lines are recognized as setting variables, in the form \fIname = value\fR\&. If there is no equal sign on the line, the entire line is taken as \fIname\fR and the variable is recognized as boolean "true"\&. String values may be entirely or partially enclosed in double quotes; some variables may require special value format\&.
209
210 .SS "Example"
211
212 .nf
213 # Core variables
214 [core]
215         ; Don't trust file modes
216         filemode = false
217 .fi
218
219 .nf
220 # Our diff algorithm
221 [diff]
222         external = "/usr/local/bin/gnu\-diff \-u"
223         renames = true
224 .fi
225
226 .SS "Variables"
227
228
229 Note that this list is non\-comprehensive and not necessarily complete\&. For command\-specific variables, you will find more detailed description in the appropriate manual page\&. You will find description of non\-core porcelain configuration variables in the respective porcelain documentation\&.
230
231 .TP
232 core\&.fileMode
233 If false, the executable bit differences between the index and the working copy are ignored; useful on broken filesystems like FAT\&. See \fBgit\-update\-index\fR(1)\&. True by default\&.
234
235 .TP
236 core\&.gitProxy
237 A "proxy command" to execute (as \fIcommand host port\fR) instead of establishing direct connection to the remote server when using the git protocol for fetching\&. If the variable value is in the "COMMAND for DOMAIN" format, the command is applied only on hostnames ending with the specified domain string\&. This variable may be set multiple times and is matched in the given order; the first match wins\&.
238
239 .nf
240 Can be overriden by the 'GIT_PROXY_COMMAND' environment variable
241 (which always applies universally, without the special "for"
242 handling)\&.
243 .fi
244
245 .TP
246 core\&.ignoreStat
247 The working copy files are assumed to stay unchanged until you mark them otherwise manually \- Git will not detect the file changes by lstat() calls\&. This is useful on systems where those are very slow, such as Microsoft Windows\&. See \fBgit\-update\-index\fR(1)\&. False by default\&.
248
249 .TP
250 core\&.onlyUseSymrefs
251 Always use the "symref" format instead of symbolic links for HEAD and other symbolic reference files\&. True by default\&.
252
253 .TP
254 core\&.repositoryFormatVersion
255 Internal variable identifying the repository format and layout version\&.
256
257 .TP
258 core\&.sharedRepository
259 If true, the repository is made shareable between several users in a group (making sure all the files and objects are group\-writable)\&. See \fBgit\-init\-db\fR(1)\&. False by default\&.
260
261 .TP
262 core\&.warnAmbiguousRefs
263 If true, git will warn you if the ref name you passed it is ambiguous and might match multiple refs in the \&.git/refs/ tree\&. True by default\&.
264
265 .TP
266 apply\&.whitespace
267 Tells git\-apply how to handle whitespaces, in the same way as the \fI\-\-whitespace\fR option\&. See \fBgit\-apply\fR(1)\&.
268
269 .TP
270 diff\&.renameLimit
271 The number of files to consider when performing the copy/rename detection; equivalent to the git diff option \fI\-l\fR\&.
272
273 .TP
274 format\&.headers
275 Additional email headers to include in a patch to be submitted by mail\&. See \fBgit\-format\-patch\fR(1)\&.
276
277 .TP
278 gitcvs\&.enabled
279 Whether the cvs pserver interface is enabled for this repository\&. See \fBgit\-cvsserver\fR(1)\&.
280
281 .TP
282 gitcvs\&.logfile
283 Path to a log file where the cvs pserver interface well... logs various stuff\&. See \fBgit\-cvsserver\fR(1)\&.
284
285 .TP
286 http\&.sslVerify
287 Whether to verify the SSL certificate when fetching or pushing over HTTPS\&. Can be overriden by the \fIGIT_SSL_NO_VERIFY\fR environment variable\&.
288
289 .TP
290 http\&.sslCert
291 File containing the SSL certificate when fetching or pushing over HTTPS\&. Can be overriden by the \fIGIT_SSL_CERT\fR environment variable\&.
292
293 .TP
294 http\&.sslKey
295 File containing the SSL private key when fetching or pushing over HTTPS\&. Can be overriden by the \fIGIT_SSL_KEY\fR environment variable\&.
296
297 .TP
298 http\&.sslCAInfo
299 File containing the certificates to verify the peer with when fetching or pushing over HTTPS\&. Can be overriden by the \fIGIT_SSL_CAINFO\fR environment variable\&.
300
301 .TP
302 http\&.sslCAPath
303 Path containing files with the CA certificates to verify the peer with when fetching or pushing over HTTPS\&. Can be overriden by the \fIGIT_SSL_CAPATH\fR environment variable\&.
304
305 .TP
306 http\&.maxRequests
307 How many HTTP requests to launch in parallel\&. Can be overriden by the \fIGIT_HTTP_MAX_REQUESTS\fR environment variable\&. Default is 5\&.
308
309 .TP
310 http\&.lowSpeedLimit, http\&.lowSpeedTime
311 If the HTTP transfer speed is less than \fIhttp\&.lowSpeedLimit\fR for longer than \fIhttp\&.lowSpeedTime\fR seconds, the transfer is aborted\&. Can be overriden by the \fIGIT_HTTP_LOW_SPEED_LIMIT\fR and \fIGIT_HTTP_LOW_SPEED_TIME\fR environment variables\&.
312
313 .TP
314 i18n\&.commitEncoding
315 Character encoding the commit messages are stored in; git itself does not care per se, but this information is necessary e\&.g\&. when importing commits from emails or in the gitk graphical history browser (and possibly at other places in the future or in other porcelains)\&. See e\&.g\&. \fBgit\-mailinfo\fR(1)\&. Defaults to \fIutf\-8\fR\&.
316
317 .TP
318 merge\&.summary
319 Whether to include summaries of merged commits in newly created merge commit messages\&. False by default\&.
320
321 .TP
322 pull\&.octopus
323 The default merge strategy to use when pulling multiple branches at once\&.
324
325 .TP
326 pull\&.twohead
327 The default merge strategy to use when pulling a single branch\&.
328
329 .TP
330 show\&.difftree
331 The default \fBgit\-diff\-tree\fR(1) arguments to be used for \fBgit\-show\fR(1)\&.
332
333 .TP
334 showbranch\&.default
335 The default set of branches for \fBgit\-show\-branch\fR(1)\&. See \fBgit\-show\-branch\fR(1)\&.
336
337 .TP
338 user\&.email
339 Your email address to be recorded in any newly created commits\&. Can be overriden by the \fIGIT_AUTHOR_EMAIL\fR and \fIGIT_COMMITTER_EMAIL\fR environment variables\&. See \fBgit\-commit\-tree\fR(1)\&.
340
341 .TP
342 user\&.name
343 Your full name to be recorded in any newly created commits\&. Can be overriden by the \fIGIT_AUTHOR_NAME\fR and \fIGIT_COMMITTER_NAME\fR environment variables\&. See \fBgit\-commit\-tree\fR(1)\&.
344
345 .TP
346 whatchanged\&.difftree
347 The default \fBgit\-diff\-tree\fR(1) arguments to be used for \fBgit\-whatchanged\fR(1)\&.
348
349 .TP
350 imap
351 The configuration variables in the \fIimap\fR section are described in \fBgit\-imap\-send\fR(1)\&.
352
353 .SH "AUTHOR"
354
355
356 Written by Johannes Schindelin <Johannes\&.Schindelin@gmx\&.de>
357
358 .SH "DOCUMENTATION"
359
360
361 Documentation by Johannes Schindelin, Petr Baudis and the git\-list <git@vger\&.kernel\&.org>\&.
362
363 .SH "GIT"
364
365
366 Part of the \fBgit\fR(7) suite
367