How to rebase forked repo with master


To rebase a forked repository with the master repository, you can follow these steps:

  • Clone your forked repository to your local machine by running the command:
    • git clone https://github.com/your-username/your-forked-repo.git
  • Add the upstream remote repository by running the command:
    • git remote add upstream https://github.com/original-repo/original-repo.git
  • Fetch the latest changes from the upstream repository by running the command:
    • git fetch upstream
  • Switch to the local master branch by running the command:
    • git checkout master
  • Merge the changes from the upstream master branch into your local master branch by running the git merge upstream/master
  • Push the changes to your forked repository by running the command:
    • git push -f origin master

This will bring your forked repository up to date with the latest changes from the original repository’s master branch.