]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/config/credential.txt
Merge branch 'ea/blame-use-oideq'
[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
24 some credentials. For example "credential.https://example.com.username"
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.