From 3b11a105117bed28b1e951e713d1e6b79310a696 Mon Sep 17 00:00:00 2001 From: RJ Nanjegowda Date: Fri, 11 Oct 2024 16:33:43 -0700 Subject: [PATCH] checkout to tempbranch --- src/create-or-update-branch.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/create-or-update-branch.ts b/src/create-or-update-branch.ts index 2eecd45..51b1d64 100644 --- a/src/create-or-update-branch.ts +++ b/src/create-or-update-branch.ts @@ -255,7 +255,7 @@ export async function createOrUpdateBranch( } } // Reset the temp branch to the working index - await git.checkout(tempBranch, 'HEAD') + await git.checkout(tempBranch) // Reset the base await git.fetch([`${base}:${base}`], baseRemote, fetchArgs) }