Merge branch 'cb/openbsd-allows-reading-directory'
[git.git] / Documentation / config / credential.txt
blob60fb3189e16144a277cab1c80222c556ce939ed5
1 credential.helper::
2         Specify an external helper to be called when a username or
3         password credential is needed; the helper may consult external
4         storage to avoid prompting the user for the credentials. Note
5         that multiple helpers may be defined. See linkgit:gitcredentials[7]
6         for details.
8 credential.useHttpPath::
9         When acquiring credentials, consider the "path" component of an http
10         or https URL to be important. Defaults to false. See
11         linkgit:gitcredentials[7] for more information.
13 credential.username::
14         If no username is set for a network authentication, use this username
15         by default. See credential.<context>.* below, and
16         linkgit:gitcredentials[7].
18 credential.<url>.*::
19         Any of the credential.* options above can be applied selectively to
20         some credentials. For example "credential.https://example.com.username"
21         would set the default username only for https connections to
22         example.com. See linkgit:gitcredentials[7] for details on how URLs are
23         matched.
25 credentialCache.ignoreSIGHUP::
26         Tell git-credential-cache--daemon to ignore SIGHUP, instead of quitting.