-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Closed
Labels
enhancementNew feature or requestNew feature or requesthelp-wantedThe core maintainers aren't planning to build this, but we would welcome a community contribution!The core maintainers aren't planning to build this, but we would welcome a community contribution!
Description
Git supports multiple credential helpers configured in sequence. I tried the following Git config to use a custom storage helper followed by GCM:
[credential]
helper = storage
helper = manager
But GCM gave me error:
fatal: No credential store has been selected.
This refers to the choice of GCM's internal credential store. This error makes sense when GCM is the only Git credential helper, but is superfluous when multiple credential helpers are configured.
Workaround: effectively disable GCM's internal credential store by telling it to cache with timeout zero.
[credential]
helper = storage
helper = manager
credentialStore = cache
cacheoptions = --timeout 0
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requesthelp-wantedThe core maintainers aren't planning to build this, but we would welcome a community contribution!The core maintainers aren't planning to build this, but we would welcome a community contribution!