Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2022-11-23 05:22:25 +0300
committerJunio C Hamano <gitster@pobox.com>2022-11-23 05:22:25 +0300
commitc197977cb6b250906dbe1a05f899c65bb1ac2a9f (patch)
treef59b112d182d4c8a3192e8765c6c10e0bc9adfd3
parentf8828f91256b5bc9731c313d59f8cd2d26901541 (diff)
parentdabb9d875f665ec5da9ae8c84fed765cf9187463 (diff)
Merge branch 'mh/gitcredentials-generate'
Doc update. * mh/gitcredentials-generate: Docs: describe how a credential-generating helper works
-rw-r--r--Documentation/gitcredentials.txt8
1 files changed, 5 insertions, 3 deletions
diff --git a/Documentation/gitcredentials.txt b/Documentation/gitcredentials.txt
index d6665d2f31..4522471c33 100644
--- a/Documentation/gitcredentials.txt
+++ b/Documentation/gitcredentials.txt
@@ -62,7 +62,9 @@ for a password. It is generally configured by adding this to your config:
Credential helpers, on the other hand, are external programs from which Git can
request both usernames and passwords; they typically interface with secure
-storage provided by the OS or other programs.
+storage provided by the OS or other programs. Alternatively, a
+credential-generating helper might generate credentials for certain servers via
+some API.
To use a helper, you must first select one to use. Git currently
includes the following helpers:
@@ -288,8 +290,8 @@ For a `store` or `erase` operation, the helper's output is ignored.
If a helper fails to perform the requested operation or needs to notify
the user of a potential issue, it may write to stderr.
-If it does not support the requested operation (e.g., a read-only store),
-it should silently ignore the request.
+If it does not support the requested operation (e.g., a read-only store
+or generator), it should silently ignore the request.
If a helper receives any other operation, it should silently ignore the
request. This leaves room for future operations to be added (older