]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/gitcredentials.txt
Start the 2.46 cycle
[thirdparty/git.git] / Documentation / gitcredentials.txt
CommitLineData
a6fc9fd3
JK
1gitcredentials(7)
2=================
3
4NAME
5----
2135e1ad 6gitcredentials - Providing usernames and passwords to Git
a6fc9fd3
JK
7
8SYNOPSIS
9--------
10------------------
11git config credential.https://example.com.username myusername
12git config credential.helper "$helper $options"
13------------------
14
15DESCRIPTION
16-----------
17
18Git will sometimes need credentials from the user in order to perform
19operations; for example, it may need to ask for a username and password
54e95b46
H
20in order to access a remote repository over HTTP. Some remotes accept
21a personal access token or OAuth access token as a password. This
22manual describes the mechanisms Git uses to request these credentials,
23as well as some features to avoid inputting these credentials repeatedly.
a6fc9fd3
JK
24
25REQUESTING CREDENTIALS
26----------------------
27
2de9b711 28Without any credential helpers defined, Git will try the following
a6fc9fd3
JK
29strategies to ask the user for usernames and passwords:
30
311. If the `GIT_ASKPASS` environment variable is set, the program
32 specified by the variable is invoked. A suitable prompt is provided
33 to the program on the command line, and the user's input is read
34 from its standard output.
35
da0005b8 362. Otherwise, if the `core.askPass` configuration variable is set, its
a6fc9fd3
JK
37 value is used as above.
38
393. Otherwise, if the `SSH_ASKPASS` environment variable is set, its
40 value is used as above.
41
424. Otherwise, the user is prompted on the terminal.
43
44AVOIDING REPETITION
45-------------------
46
47It can be cumbersome to input the same credentials over and over. Git
48provides two methods to reduce this annoyance:
49
501. Static configuration of usernames for a given authentication context.
51
522. Credential helpers to cache or store passwords, or to interact with
53 a system password wallet or keychain.
54
55The first is simple and appropriate if you do not have secure storage available
56for a password. It is generally configured by adding this to your config:
57
58---------------------------------------
59[credential "https://example.com"]
60 username = me
61---------------------------------------
62
2de9b711 63Credential helpers, on the other hand, are external programs from which Git can
a6fc9fd3 64request both usernames and passwords; they typically interface with secure
dabb9d87
H
65storage provided by the OS or other programs. Alternatively, a
66credential-generating helper might generate credentials for certain servers via
67some API.
a6fc9fd3 68
e2770979
JK
69To use a helper, you must first select one to use. Git currently
70includes the following helpers:
71
72cache::
73
74 Cache credentials in memory for a short period of time. See
75 linkgit:git-credential-cache[1] for details.
76
71e1b4b6
JK
77store::
78
79 Store credentials indefinitely on disk. See
80 linkgit:git-credential-store[1] for details.
81
e2770979
JK
82You may also have third-party helpers installed; search for
83`credential-*` in the output of `git help -a`, and consult the
84documentation of individual helpers. Once you have selected a helper,
2de9b711 85you can tell Git to use it by putting its name into the
a6fc9fd3
JK
86credential.helper variable.
87
881. Find a helper.
89+
90-------------------------------------------
91$ git help -a | grep credential-
92credential-foo
93-------------------------------------------
94
952. Read its description.
96+
97-------------------------------------------
98$ git help credential-foo
99-------------------------------------------
100
2de9b711 1013. Tell Git to use it.
a6fc9fd3
JK
102+
103-------------------------------------------
104$ git config --global credential.helper foo
105-------------------------------------------
106
4c9cb51f
H
107=== Available helpers
108
109The community maintains a comprehensive list of Git credential helpers at
110https://git-scm.com/doc/credential-helpers.
111
112=== OAuth
113
114An alternative to inputting passwords or personal access tokens is to use an
115OAuth credential helper. Initial authentication opens a browser window to the
116host. Subsequent authentication happens in the background. Many popular Git
117hosts support OAuth.
a6fc9fd3
JK
118
119CREDENTIAL CONTEXTS
120-------------------
121
122Git considers each credential to have a context defined by a URL. This context
123is used to look up context-specific configuration, and is passed to any
124helpers, which may use it as an index into secure storage.
125
2de9b711 126For instance, imagine we are accessing `https://example.com/foo.git`. When Git
a6fc9fd3
JK
127looks into a config file to see if a section matches this context, it will
128consider the two a match if the context is a more-specific subset of the
129pattern in the config file. For example, if you have this in your config file:
130
131--------------------------------------
132[credential "https://example.com"]
133 username = foo
134--------------------------------------
135
136then we will match: both protocols are the same, both hosts are the same, and
137the "pattern" URL does not care about the path component at all. However, this
138context would not match:
139
140--------------------------------------
141[credential "https://kernel.org"]
142 username = foo
143--------------------------------------
144
2de9b711 145because the hostnames differ. Nor would it match `foo.example.com`; Git
a6fc9fd3
JK
146compares hostnames exactly, without considering whether two hosts are part of
147the same domain. Likewise, a config entry for `http://example.com` would not
46fd7b39 148match: Git compares the protocols exactly. However, you may use wildcards in
7706294e 149the domain name and other pattern matching techniques as with the `http.<URL>.*`
46fd7b39 150options.
a6fc9fd3 151
4ba3c9be
DZ
152If the "pattern" URL does include a path component, then this too must match
153exactly: the context `https://example.com/bar/baz.git` will match a config
154entry for `https://example.com/bar/baz.git` (in addition to matching the config
155entry for `https://example.com`) but will not match a config entry for
156`https://example.com/bar`.
157
a6fc9fd3
JK
158
159CONFIGURATION OPTIONS
160---------------------
161
162Options for a credential context can be configured either in
6cf378f0 163`credential.*` (which applies to all credentials), or
7706294e 164`credential.<URL>.*`, where <URL> matches the context as described
a6fc9fd3
JK
165above.
166
167The following options are available in either location:
168
169helper::
170
171 The name of an external credential helper, and any associated options.
172 If the helper name is not an absolute path, then the string `git
173 credential-` is prepended. The resulting string is executed by the
174 shell (so, for example, setting this to `foo --option=bar` will execute
175 `git credential-foo --option=bar` via the shell. See the manual of
176 specific helpers for examples of their use.
515360f9
JN
177+
178If there are multiple instances of the `credential.helper` configuration
179variable, each helper will be tried in turn, and may provide a username,
180password, or nothing. Once Git has acquired both a username and a
d208bfdf 181non-expired password, no more helpers will be tried.
515360f9
JN
182+
183If `credential.helper` is configured to the empty string, this resets
184the helper list to empty (so you may override a helper set by a
185lower-priority config file by configuring the empty-string helper,
186followed by whatever set of helpers you would like).
a6fc9fd3
JK
187
188username::
189
190 A default username, if one is not provided in the URL.
191
192useHttpPath::
193
2de9b711 194 By default, Git does not consider the "path" component of an http URL
a6fc9fd3
JK
195 to be worth matching via external helpers. This means that a credential
196 stored for `https://example.com/foo.git` will also be used for
197 `https://example.com/bar.git`. If you do want to distinguish these
198 cases, set this option to `true`.
199
200
201CUSTOM HELPERS
202--------------
203
204You can write your own custom helpers to interface with any system in
cc4f2eb8
JK
205which you keep credentials.
206
207Credential helpers are programs executed by Git to fetch or save
208credentials from and to long-term storage (where "long-term" is simply
209longer than a single Git process; e.g., credentials may be stored
210in-memory for a few minutes, or indefinitely on disk).
211
212Each helper is specified by a single string in the configuration
213variable `credential.helper` (and others, see linkgit:git-config[1]).
214The string is transformed by Git into a command to be executed using
215these rules:
216
217 1. If the helper string begins with "!", it is considered a shell
218 snippet, and everything after the "!" becomes the command.
219
220 2. Otherwise, if the helper string begins with an absolute path, the
221 verbatim helper string becomes the command.
222
223 3. Otherwise, the string "git credential-" is prepended to the helper
224 string, and the result becomes the command.
225
226The resulting command then has an "operation" argument appended to it
227(see below for details), and the result is executed by the shell.
228
229Here are some example specifications:
230
231----------------------------------------------------
232# run "git credential-foo"
dbe80f92
JK
233[credential]
234 helper = foo
cc4f2eb8
JK
235
236# same as above, but pass an argument to the helper
dbe80f92
JK
237[credential]
238 helper = "foo --bar=baz"
cc4f2eb8
JK
239
240# the arguments are parsed by the shell, so use shell
241# quoting if necessary
dbe80f92
JK
242[credential]
243 helper = "foo --bar='whitespace arg'"
cc4f2eb8
JK
244
245# you can also use an absolute path, which will not use the git wrapper
dbe80f92
JK
246[credential]
247 helper = "/path/to/my/helper --with-arguments"
cc4f2eb8
JK
248
249# or you can specify your own shell snippet
177681a0
JK
250[credential "https://example.com"]
251 username = your_user
252 helper = "!f() { test \"$1\" = get && echo \"password=$(cat $HOME/.secret)\"; }; f"
cc4f2eb8
JK
253----------------------------------------------------
254
255Generally speaking, rule (3) above is the simplest for users to specify.
256Authors of credential helpers should make an effort to assist their
257users by naming their program "git-credential-$NAME", and putting it in
258the `$PATH` or `$GIT_EXEC_PATH` during installation, which will allow a
259user to enable it with `git config credential.helper $NAME`.
260
261When a helper is executed, it will have one "operation" argument
262appended to its command line, which is one of:
263
264`get`::
265
266 Return a matching credential, if any exists.
267
268`store`::
269
270 Store the credential, if applicable to the helper.
271
272`erase`::
273
6c26da84 274 Remove matching credentials, if any, from the helper's storage.
cc4f2eb8
JK
275
276The details of the credential will be provided on the helper's stdin
277stream. The exact format is the same as the input/output format of the
278`git credential` plumbing command (see the section `INPUT/OUTPUT
279FORMAT` in linkgit:git-credential[1] for a detailed specification).
280
281For a `get` operation, the helper should produce a list of attributes on
282stdout in the same format (see linkgit:git-credential[1] for common
283attributes). A helper is free to produce a subset, or even no values at
284all if it has nothing useful to provide. Any provided attributes will
4b8938be 285overwrite those already known about by Git's credential subsystem.
7fd54b62 286Unrecognised attributes are silently discarded.
4b8938be
CMAB
287
288While it is possible to override all attributes, well behaving helpers
289should refrain from doing so for any attribute other than username and
290password.
291
292If a helper outputs a `quit` attribute with a value of `true` or `1`,
293no further helpers will be consulted, nor will the user be prompted
294(if no credential has been provided, the operation will then fail).
295
296Similarly, no more helpers will be consulted once both username and
297password had been provided.
cc4f2eb8
JK
298
299For a `store` or `erase` operation, the helper's output is ignored.
4b8938be
CMAB
300
301If a helper fails to perform the requested operation or needs to notify
302the user of a potential issue, it may write to stderr.
303
dabb9d87
H
304If it does not support the requested operation (e.g., a read-only store
305or generator), it should silently ignore the request.
cc4f2eb8
JK
306
307If a helper receives any other operation, it should silently ignore the
308request. This leaves room for future operations to be added (older
309helpers will just ignore the new requests).
a6fc9fd3
JK
310
311GIT
312---
313Part of the linkgit:git[1] suite