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) }