diff --git a/scripts/clean_fork.sh b/scripts/clean_fork.sh index 1908724a9..dbad5c138 100755 --- a/scripts/clean_fork.sh +++ b/scripts/clean_fork.sh @@ -1,8 +1,8 @@ #!/bin/sh set -e # clean up the fork and restart from upstream -git remote add upstream https://github.com/thepracticaldev/dev.to +git remote add upstream https://github.com/forem/forem.git git fetch upstream git checkout main -git reset --hard upstream/main -git push origin main --force +git reset --hard upstream/main +git push origin main --force diff --git a/scripts/sync_fork.sh b/scripts/sync_fork.sh index 1f3a7ea7e..28257b6ed 100755 --- a/scripts/sync_fork.sh +++ b/scripts/sync_fork.sh @@ -2,7 +2,7 @@ set -e # sync this fork with upstream to get the latest changes -URL="https://github.com/thepracticaldev/dev.to"; +URL="https://github.com/forem/forem.git"; if ! git config remote.upstream.url > /dev/null; then echo "Adding remote ${URL}" git remote add upstream $URL