From 47a5e6897255725362550f8e803af4c7486faa60 Mon Sep 17 00:00:00 2001 From: RJ Nanjegowda Date: Fri, 11 Oct 2024 16:59:12 -0700 Subject: [PATCH] fix --- src/create-or-update-branch.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/create-or-update-branch.ts b/src/create-or-update-branch.ts index 51b1d64..bba15c5 100644 --- a/src/create-or-update-branch.ts +++ b/src/create-or-update-branch.ts @@ -255,6 +255,7 @@ export async function createOrUpdateBranch( } } // Reset the temp branch to the working index + // Fix is to change to temp branch instead of recreating await git.checkout(tempBranch) // Reset the base await git.fetch([`${base}:${base}`], baseRemote, fetchArgs)