Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions src/lib/fork.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ export async function forkRepository(userOctokit, projectRepoDetails) {
);

if (fork) {
// console.log("Repo is already forked!");

const { isUpdated, updateSHA } = await isRepositoryForkUpdated(
userOctokit,
Expand All @@ -30,7 +29,6 @@ export async function forkRepository(userOctokit, projectRepoDetails) {
);

if (!isUpdated) {
// console.log("Repo is outdated!");

await updateRepositoryFork(userOctokit, fork, {
ref: repoMainBranchRef,
Expand Down Expand Up @@ -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", {
Expand Down
Loading