Skip to content

Instantly share code, notes, and snippets.

@f3llps
Created May 13, 2024 13:14
Show Gist options
  • Save f3llps/33c0fb711f3971d6f912acc1ea3ebb10 to your computer and use it in GitHub Desktop.
Save f3llps/33c0fb711f3971d6f912acc1ea3ebb10 to your computer and use it in GitHub Desktop.
How to update a forked repo with git rebase
https://medium.com/@topspinj/how-to-git-rebase-into-a-forked-repo-c9f05e821c8a
Step 1: Add the remote (original repo that you forked) and call it “upstream”
git remote add upstream https://github.com/original-repo/goes-here.git
Step 2: Fetch all branches of remote upstream
git fetch upstream
Step 3: Rewrite your master with upstream’s master using git rebase.
git rebase upstream/master
Step 4: Push your updates to master. You may need to force the push with “--force”.
git push origin master --force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment