aboutsummaryrefslogtreecommitdiffstats
path: root/credential.c
AgeCommit message (Expand)AuthorFilesLines
2023-08-29credential: mark unused parameter in urlmatch callbackJeff King1-2/+2
2023-06-28config: add ctx arg to config_fn_tGlen Choo1-0/+1
2023-06-15credential: avoid erasing distinct passwordM Hickford1-3/+4
2023-05-10Merge branch 'mh/credential-oauth-refresh-token'Junio C Hamano1-0/+6
2023-05-10Merge branch 'tb/credential-long-lines'Junio C Hamano1-0/+2
2023-05-01credential.c: store "wwwauth[]" values in `credential_read()`Taylor Blau1-0/+2
2023-04-24treewide: remove cache.h inclusion due to previous changesElijah Newren1-1/+1
2023-04-24treewide: be explicit about dependence on strbuf.hElijah Newren1-0/+1
2023-04-21credential: new attribute oauth_refresh_tokenM Hickford1-0/+6
2023-03-21abspath.h: move absolute path functions from cache.hElijah Newren1-0/+1
2023-03-21treewide: be explicit about dependence on gettext.hElijah Newren1-0/+1
2023-03-17Merge branch 'mc/credential-helper-www-authenticate'Junio C Hamano1-0/+3
2023-02-27credential: add WWW-Authenticate header to cred requestsMatthew John Cheetham1-0/+3
2023-02-27http: read HTTP WWW-Authenticate response headersMatthew John Cheetham1-0/+1
2023-02-22credential: new attribute password_expiry_utcM Hickford1-1/+19
2022-03-04urlmatch.c: add and use a *_release() functionÆvar Arnfjörð Bjarmason1-0/+1
2021-10-01urlmatch.[ch]: add and use URLMATCH_CONFIG_INITÆvar Arnfjörð Bjarmason1-1/+1
2021-08-25credential: fix leak in credential_apply_config()Mike Hommey1-0/+1
2021-07-01*.c *_init(): define in terms of corresponding *_INIT macroÆvar Arnfjörð Bjarmason1-2/+2
2020-10-03credential: treat CR/LF as line endings in the credential protocolNikita Leonov1-1/+1
2020-08-26run_command: teach API users to use embedded 'args' moreJunio C Hamano1-3/+1
2020-05-05Merge branch 'js/partial-urlmatch'Junio C Hamano1-0/+17
2020-05-05Merge branch 'js/partial-urlmatch-2.17'Junio C Hamano1-6/+46
2020-05-05Merge branch 'bc/wildcard-credential'Junio C Hamano1-2/+2
2020-04-29credential: handle `credential.<partial-URL>.<key>` againJohannes Schindelin1-1/+17
2020-04-27credential: fix matching URLs with multiple levels in pathbrian m. carlson1-2/+2
2020-04-24credential: handle `credential.<partial-URL>.<key>` againJohannes Schindelin1-0/+27
2020-04-24credential: optionally allow partial URLs in credential_from_url_gently()Johannes Schindelin1-6/+36
2020-04-24credential: optionally allow partial URLs in credential_from_url_gently()Johannes Schindelin1-6/+36
2020-04-22Merge branch 'jk/credential-parsing-end-of-host-in-URL'Junio C Hamano1-1/+8
2020-04-19Git 2.26.2v2.26.2Jonathan Nieder1-16/+23
2020-04-19Git 2.18.4v2.18.4Jonathan Nieder1-16/+23
2020-04-19credential: treat URL with empty scheme as invalidJonathan Nieder1-3/+2
2020-04-19credential: treat URL without scheme as invalidJonathan Nieder1-2/+5
2020-04-19credential: die() when parsing invalid urlsJeff King1-4/+2
2020-04-19credential: refuse to operate when missing host or protocolJeff King1-6/+14
2020-04-19credential: parse URL without host as empty host, not unsetJeff King1-2/+1
2020-04-15credential: treat "?" and "#" in URLs as end of hostJeff King1-1/+8
2020-03-25Git 2.26.1v2.26.1Junio C Hamano1-2/+36
2020-03-17Git 2.18.3v2.18.3Junio C Hamano1-2/+36
2020-03-12credential: detect unrepresentable values when parsing urlsJeff King1-2/+34
2020-03-12credential: avoid writing values with newlinesJeff King1-0/+2
2020-02-20credential: allow wildcard patterns when matching configbrian m. carlson1-19/+47
2020-02-20credential: use the last matching username in the configbrian m. carlson1-1/+8
2018-03-29credential: ignore SIGPIPE when writing to credential helpersErik E Brady1-0/+3
2017-06-24Merge branch 'ab/free-and-null'Junio C Hamano1-6/+3
2017-06-16*.[ch] refactoring: make use of the FREE_AND_NULL() macroÆvar Arnfjörð Bjarmason1-4/+2
2017-06-16coccinelle: make use of the "type" FREE_AND_NULL() ruleÆvar Arnfjörð Bjarmason1-2/+1
2017-06-15config: don't include config.h by defaultBrandon Williams1-0/+1
2016-02-26credential: let empty credential specs reset helper listJeff King1-3/+6
2016-01-15strbuf: introduce strbuf_getline_{lf,nul}()Junio C Hamano1-1/+1
2014-12-22Merge branch 'jk/credential-quit'Junio C Hamano1-0/+5
2014-12-04credential: let helpers tell us to quitJeff King1-0/+5
2014-08-20run-command: introduce CHILD_PROCESS_INITRené Scharfe1-2/+1
2014-06-20refactor skip_prefix to return a booleanJeff King1-2/+1
2012-07-18credential: convert "url" attribute into its parsed subpartsJeff King1-0/+2
2012-06-25git credential fill: output the whole 'struct credential'Matthieu Moy1-1/+1
2011-12-12credential: use git_prompt instead of git_getpassJeff King1-8/+7
2011-12-12move git_getpass to its own source fileJeff King1-0/+1
2011-12-11credential: make relevance of http path configurableJeff King1-0/+14
2011-12-11credential: add credential.*.usernameJeff King1-0/+4
2011-12-11credential: apply helper configJeff King1-0/+61
2011-12-11credential: add function for parsing url componentsJeff King1-0/+52
2011-12-11introduce credentials APIJeff King1-0/+234