git init
git branch -M main
git add . git commit -m "first commit"
git remote add origin https://github.com/your-username/your-repo.git git push -u origin main
git remote add upstream https://github.com/other-user/original-repo.git
git fetch upstream git checkout main git merge upstream/main git push origin main