You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a null/no-op credential store option that, as the name suggests,
does nothing. This can be useful if the user wants to use another
credential helper, configured in-front of GCM via Git, to store
credentials.
Example config:
```ini
[credential]
credentialStore = none
helper = /bin/my-awesome-helper
helper = /usr/local/bin/git-credential-manager
```
In this example, the `my-awesome-helper` will be consulted first to
retrieve existing credentials before GCM, and will be asked to store any
credentials generated by GCM.
Fixesgit-ecosystem#1283
`gpg`|Use GPG to store encrypted files that are compatible with the [pass][pass] (requires GPG and `pass` to initialize the store).|macOS, Linux
586
586
`cache`|Git's built-in [credential cache][credential-cache].|macOS, Linux
587
587
`plaintext`|Store credentials in plaintext files (**UNSECURE**). Customize the plaintext store location with [`credential.plaintextStorePath`][credential-plaintextstorepath].|Windows, macOS, Linux
588
+
`none`|Do not store credentials via GCM.|Windows, macOS, Linux
`gpg`|Use GPG to store encrypted files that are compatible with the [`pass` utility][passwordstore] (requires GPG and `pass` to initialize the store).|macOS, Linux
717
717
`cache`|Git's built-in [credential cache][git-credential-cache].|Windows, macOS, Linux
718
718
`plaintext`|Store credentials in plaintext files (**UNSECURE**). Customize the plaintext store location with [`GCM_PLAINTEXT_STORE_PATH`][gcm-plaintext-store-path].|Windows, macOS, Linux
719
+
`none`|Do not store credentials via GCM.|Windows, macOS, Linux
0 commit comments