Packages the Git Credential Manager cross-platform implementation for Windows, macOS and Linux for use as a generic credential store.
Release version numbers track the GCM releases themselves.
The only code in this repository is a helper factory to create the credential store appropriate to the current platform:
using GitCredentialManager;
...
ICredentialStore store = CredentialManager.Create("myapp");The namespace for the CredentialManager static factory class is the same as GCM itself
for convenience: GitCredentialManager.
The optional namespace argument (myapp above) can be used to scope credential
operations to your own app/service.

