From d0e5964859f33e33c9bb2c1606d0b90de718b346 Mon Sep 17 00:00:00 2001 From: Lessley Dennington Date: Mon, 23 Jan 2023 09:53:54 -0700 Subject: [PATCH] docs: update git credential cache platforms GCM's documentation states that git's credential cache is supported on Windows. Unfortunately, due to lack of Unix socket support on Windows versions prior to Windows 10, this feature is not currently supported on Windows, so this change removes it from the list of platforms on which this credstore can be used. See [1] for more details. [1]: https://github.com/git-for-windows/git/issues/3892 --- docs/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration.md b/docs/configuration.md index 03272592a..d77819731 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -442,7 +442,7 @@ _(unset)_|Windows: `wincredman`, macOS: `keychain`, Linux: _(none)_|- `keychain`|macOS Keychain.|macOS `secretservice`|[freedesktop.org Secret Service API][freedesktop-ss] via [libsecret][libsecret] (requires a graphical interface to unlock secret collections).|Linux `gpg`|Use GPG to store encrypted files that are compatible with the [pass][pass] (requires GPG and `pass` to initialize the store).|macOS, Linux -`cache`|Git's built-in [credential cache][credential-cache].|Windows, macOS, Linux +`cache`|Git's built-in [credential cache][credential-cache].|macOS, Linux `plaintext`|Store credentials in plaintext files (**UNSECURE**). Customize the plaintext store location with [`credential.plaintextStorePath`][credential-plaintextstorepath].|Windows, macOS, Linux #### Example