Created
May 13, 2024 13:14
-
-
Save f3llps/33c0fb711f3971d6f912acc1ea3ebb10 to your computer and use it in GitHub Desktop.
How to update a forked repo with git rebase
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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