Autogenerated manpages for v2.40.0-rc2
[git-manpages.git] / man1 / git-credential.1
blob27fc0dd86180025f3abebf25c30096d5c85206a2
1 '\" t
2 .\"     Title: git-credential
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
5 .\"      Date: 03/06/2023
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.40.0.rc2
8 .\"  Language: English
9 .\"
10 .TH "GIT\-CREDENTIAL" "1" "03/06/2023" "Git 2\&.40\&.0\&.rc2" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 git-credential \- Retrieve and store user credentials
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 \(aqgit credential\(aq (fill|approve|reject)
36 .fi
37 .sp
38 .SH "DESCRIPTION"
39 .sp
40 Git has an internal interface for storing and retrieving credentials from system\-specific helpers, as well as prompting the user for usernames and passwords\&. The git\-credential command exposes this interface to scripts which may want to retrieve, store, or prompt for credentials in the same manner as Git\&. The design of this scriptable interface models the internal C API; see credential\&.h for more background on the concepts\&.
41 .sp
42 git\-credential takes an "action" option on the command\-line (one of \fBfill\fR, \fBapprove\fR, or \fBreject\fR) and reads a credential description on stdin (see INPUT/OUTPUT FORMAT)\&.
43 .sp
44 If the action is \fBfill\fR, git\-credential will attempt to add "username" and "password" attributes to the description by reading config files, by contacting any configured credential helpers, or by prompting the user\&. The username and password attributes of the credential description are then printed to stdout together with the attributes already provided\&.
45 .sp
46 If the action is \fBapprove\fR, git\-credential will send the description to any configured credential helpers, which may store the credential for later use\&.
47 .sp
48 If the action is \fBreject\fR, git\-credential will send the description to any configured credential helpers, which may erase any stored credential matching the description\&.
49 .sp
50 If the action is \fBapprove\fR or \fBreject\fR, no output should be emitted\&.
51 .SH "TYPICAL USE OF GIT CREDENTIAL"
52 .sp
53 An application using git\-credential will typically use \fBgit credential\fR following these steps:
54 .sp
55 .RS 4
56 .ie n \{\
57 \h'-04' 1.\h'+01'\c
58 .\}
59 .el \{\
60 .sp -1
61 .IP "  1." 4.2
62 .\}
63 Generate a credential description based on the context\&.
64 .sp
65 For example, if we want a password for
66 \fBhttps://example\&.com/foo\&.git\fR, we might generate the following credential description (don\(cqt forget the blank line at the end; it tells
67 \fBgit credential\fR
68 that the application finished feeding all the information it has):
69 .sp
70 .if n \{\
71 .RS 4
72 .\}
73 .nf
74 protocol=https
75 host=example\&.com
76 path=foo\&.git
77 .fi
78 .if n \{\
79 .RE
80 .\}
81 .RE
82 .sp
83 .RS 4
84 .ie n \{\
85 \h'-04' 2.\h'+01'\c
86 .\}
87 .el \{\
88 .sp -1
89 .IP "  2." 4.2
90 .\}
91 Ask git\-credential to give us a username and password for this description\&. This is done by running
92 \fBgit credential fill\fR, feeding the description from step (1) to its standard input\&. The complete credential description (including the credential per se, i\&.e\&. the login and password) will be produced on standard output, like:
93 .sp
94 .if n \{\
95 .RS 4
96 .\}
97 .nf
98 protocol=https
99 host=example\&.com
100 username=bob
101 password=secr3t
103 .if n \{\
107 In most cases, this means the attributes given in the input will be repeated in the output, but Git may also modify the credential description, for example by removing the
108 \fBpath\fR
109 attribute when the protocol is HTTP(s) and
110 \fBcredential\&.useHttpPath\fR
111 is false\&.
113 If the
114 \fBgit credential\fR
115 knew about the password, this step may not have involved the user actually typing this password (the user may have typed a password to unlock the keychain instead, or no user interaction was done if the keychain was already unlocked) before it returned
116 \fBpassword=secr3t\fR\&.
119 .RS 4
120 .ie n \{\
121 \h'-04' 3.\h'+01'\c
123 .el \{\
124 .sp -1
125 .IP "  3." 4.2
127 Use the credential (e\&.g\&., access the URL with the username and password from step (2)), and see if it\(cqs accepted\&.
130 .RS 4
131 .ie n \{\
132 \h'-04' 4.\h'+01'\c
134 .el \{\
135 .sp -1
136 .IP "  4." 4.2
138 Report on the success or failure of the password\&. If the credential allowed the operation to complete successfully, then it can be marked with an "approve" action to tell
139 \fBgit credential\fR
140 to reuse it in its next invocation\&. If the credential was rejected during the operation, use the "reject" action so that
141 \fBgit credential\fR
142 will ask for a new password in its next invocation\&. In either case,
143 \fBgit credential\fR
144 should be fed with the credential description obtained from step (2) (which also contain the ones provided in step (1))\&.
146 .SH "INPUT/OUTPUT FORMAT"
148 \fBgit credential\fR reads and/or writes (depending on the action used) credential information in its standard input/output\&. This information can correspond either to keys for which \fBgit credential\fR will obtain the login information (e\&.g\&. host, protocol, path), or to the actual credential data to be obtained (username/password)\&.
150 The credential is split into a set of named attributes, with one attribute per line\&. Each attribute is specified by a key\-value pair, separated by an \fB=\fR (equals) sign, followed by a newline\&.
152 The key may contain any bytes except \fB=\fR, newline, or NUL\&. The value may contain any bytes except newline or NUL\&.
154 In both cases, all bytes are treated as\-is (i\&.e\&., there is no quoting, and one cannot transmit a value with newline or NUL in it)\&. The list of attributes is terminated by a blank line or end\-of\-file\&.
156 Git understands the following attributes:
158 \fBprotocol\fR
159 .RS 4
160 The protocol over which the credential will be used (e\&.g\&.,
161 \fBhttps\fR)\&.
164 \fBhost\fR
165 .RS 4
166 The remote hostname for a network credential\&. This includes the port number if one was specified (e\&.g\&., "example\&.com:8088")\&.
169 \fBpath\fR
170 .RS 4
171 The path with which the credential will be used\&. E\&.g\&., for accessing a remote https repository, this will be the repository\(cqs path on the server\&.
174 \fBusername\fR
175 .RS 4
176 The credential\(cqs username, if we already have one (e\&.g\&., from a URL, the configuration, the user, or from a previously run helper)\&.
179 \fBpassword\fR
180 .RS 4
181 The credential\(cqs password, if we are asking it to be stored\&.
184 \fBpassword_expiry_utc\fR
185 .RS 4
186 Generated passwords such as an OAuth access token may have an expiry date\&. When reading credentials from helpers,
187 \fBgit credential fill\fR
188 ignores expired passwords\&. Represented as Unix time UTC, seconds since 1970\&.
191 \fBurl\fR
192 .RS 4
193 When this special attribute is read by
194 \fBgit credential\fR, the value is parsed as a URL and treated as if its constituent parts were read (e\&.g\&.,
195 \fBurl=https://example\&.com\fR
196 would behave as if
197 \fBprotocol=https\fR
199 \fBhost=example\&.com\fR
200 had been provided)\&. This can help callers avoid parsing URLs themselves\&.
202 Note that specifying a protocol is mandatory and if the URL doesn\(cqt specify a hostname (e\&.g\&., "cert:///path/to/file") the credential will contain a hostname attribute whose value is an empty string\&.
204 Components which are missing from the URL (e\&.g\&., there is no username in the example above) will be left unset\&.
207 Unrecognised attributes are silently discarded\&.
208 .SH "GIT"
210 Part of the \fBgit\fR(1) suite