From 3b54d4e2706c2681518fef5b6d895b26a751362c Mon Sep 17 00:00:00 2001 From: John Emau Date: Tue, 12 Jan 2021 16:59:56 -0800 Subject: [PATCH 1/2] Add example of how to configure git-credential-core.exe as git's credential store --- docs/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration.md b/docs/configuration.md index fea6d0333..7146a60b7 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -10,7 +10,7 @@ URL-specific settings or overrides can be applied to any value in the `credentia Additionally, GCM Core respects several GCM-specific [environment variables](environment.md) **which take precedence over configuration options.** -GCM Core will only be used by Git if it is installed and configured (`credential.helper`). +GCM Core will only be used by Git if it is installed and configured (`git config --global credential.helper manager-core`). **Example:** From a0dc6d5c3bb2b351a4bb868184cb4c7e90b7e365 Mon Sep 17 00:00:00 2001 From: John <309310+johnemau@users.noreply.github.com> Date: Wed, 13 Jan 2021 10:26:35 -0800 Subject: [PATCH 2/2] Docs: Add explanation to git configuration command Co-authored-by: Derrick Stolee --- docs/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration.md b/docs/configuration.md index 7146a60b7..a00efb85b 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -10,7 +10,7 @@ URL-specific settings or overrides can be applied to any value in the `credentia Additionally, GCM Core respects several GCM-specific [environment variables](environment.md) **which take precedence over configuration options.** -GCM Core will only be used by Git if it is installed and configured (`git config --global credential.helper manager-core`). +GCM Core will only be used by Git if it is installed and configured. Use `git config --global credential.helper manager-core` to assign GCM Core as your credential helper. Use `git config credential.helper` to see the current configuration. **Example:**