]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/config/credential.txt
The 21st batch
[thirdparty/git.git] / Documentation / config / credential.txt
CommitLineData
3a49be6d
NTND
1credential.helper::
2 Specify an external helper to be called when a username or
3 password credential is needed; the helper may consult external
41532740 4 storage to avoid prompting the user for the credentials. This is
5 normally the name of a credential helper with possible
6 arguments, but may also be an absolute path with arguments or, if
7 preceded by `!`, shell commands.
8+
9Note that multiple helpers may be defined. See linkgit:gitcredentials[7]
10for details and examples.
3a49be6d
NTND
11
12credential.useHttpPath::
13 When acquiring credentials, consider the "path" component of an http
14 or https URL to be important. Defaults to false. See
15 linkgit:gitcredentials[7] for more information.
16
17credential.username::
18 If no username is set for a network authentication, use this username
19 by default. See credential.<context>.* below, and
20 linkgit:gitcredentials[7].
21
22credential.<url>.*::
23 Any of the credential.* options above can be applied selectively to
4d542687 24 some credentials. For example, "credential.https://example.com.username"
3a49be6d
NTND
25 would set the default username only for https connections to
26 example.com. See linkgit:gitcredentials[7] for details on how URLs are
27 matched.
28
29credentialCache.ignoreSIGHUP::
30 Tell git-credential-cache--daemon to ignore SIGHUP, instead of quitting.
df7f915f
SA
31
32credentialStore.lockTimeoutMS::
33 The length of time, in milliseconds, for git-credential-store to retry
cf6cac20 34 when trying to lock the credentials file. A value of 0 means not to retry at
df7f915f
SA
35 all; -1 means to try indefinitely. Default is 1000 (i.e., retry for
36 1s).