From f2738ccb35cf2b949f95def74b8ea59ba1b676d0 Mon Sep 17 00:00:00 2001
From: Nanashi <sevenc7c@sevenc7c.com>
Date: Mon, 20 Jun 2022 17:08:30 +0900
Subject: [PATCH 1/2] Fix: Don't remove auth if submodules are off

---
 src/git-auth-helper.ts | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/src/git-auth-helper.ts b/src/git-auth-helper.ts
index 8a1c7c3..888fde1 100644
--- a/src/git-auth-helper.ts
+++ b/src/git-auth-helper.ts
@@ -363,10 +363,12 @@ class GitAuthHelper {
       }
     }
 
-    const pattern = regexpHelper.escape(configKey)
-    await this.git.submoduleForeach(
-      `git config --local --name-only --get-regexp '${pattern}' && git config --local --unset-all '${configKey}' || :`,
-      true
+    if (this.settings.submodules) {
+      const pattern = regexpHelper.escape(configKey)
+      await this.git.submoduleForeach(
+        `git config --local --name-only --get-regexp '${pattern}' && git config --local --unset-all '${configKey}' || :`,
+        true
+      )
     )
   }
 }

From 51ffdcdb1d3039be2dd10147efdd9ac72851d9b7 Mon Sep 17 00:00:00 2001
From: Nanashi <sevenc7c@sevenc7c.com>
Date: Mon, 20 Jun 2022 17:16:41 +0900
Subject: [PATCH 2/2] Fix: Fix Syntax

---
 src/git-auth-helper.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/git-auth-helper.ts b/src/git-auth-helper.ts
index 888fde1..2cee41c 100644
--- a/src/git-auth-helper.ts
+++ b/src/git-auth-helper.ts
@@ -369,6 +369,6 @@ class GitAuthHelper {
         `git config --local --name-only --get-regexp '${pattern}' && git config --local --unset-all '${configKey}' || :`,
         true
       )
-    )
+    }
   }
 }