diff --git a/src/lib/fork.js b/src/lib/fork.js index 7ae2d2c..9400ab9 100644 --- a/src/lib/fork.js +++ b/src/lib/fork.js @@ -21,7 +21,6 @@ export async function forkRepository(userOctokit, projectRepoDetails) { ); if (fork) { - // console.log("Repo is already forked!"); const { isUpdated, updateSHA } = await isRepositoryForkUpdated( userOctokit, @@ -30,7 +29,6 @@ export async function forkRepository(userOctokit, projectRepoDetails) { ); if (!isUpdated) { - // console.log("Repo is outdated!"); await updateRepositoryFork(userOctokit, fork, { ref: repoMainBranchRef, @@ -82,7 +80,6 @@ async function updateRepositoryFork( sha, }); - // console.log("Fork is now updated and in-sync with upstream"); } catch (error) { // console.error("Error syncing with upstream:", error.message); throw new Error("Error occurred while updating fork", {