TL;DR 🚀
These are the only commands you need to sync your forked repo with the original repo
|
|
Why should I do this? 😏
Before submitting any pull request, syncing your forked repository with original repository is an important step to perform, as you may want to get the bug fixes or additional features to merge with your code since the time you forked the original repo.
But I can do a PR instead.. 💁♀️
You can, but that adds an extra commit into your forked repo instead of matching it with the original repo.
Inorder to sync without any additional changes as a part of the process,
- Configure the original repo as upstream remote.
- Merge changes from original repo
- Push the merged version back to Github.
Adding original repo as an upstream
- Open the forked repo in your Git Bash or command prompt or terminal.
- List the current configured remote repositories
|
|
- Add the original repo as upstream repo
|
|
- Verify the new upstream repo for your forked repo
|
|
You can now pull the changes from original repo.
Merge changes from upstream
- Open the forked repo in your Git Bash or command prompt or terminal.
- First things first, fetch the changes (branches and their commits) from upstream
|
|
Note : Commits to the original repo(master
) will be stored in a local branch, upstream/master
- Make sure you are on your local (fork’s)
master
branch
|
|
- The last step, which achieves our goal: Merge changes from original repo (
upstream/master
) into your forked repo(master
).
|
|
This step brings changes of forked repo in sync with original repo, without losing any uncommited changes :D
Optional Step
If you made changes to your repo and want to push them back to Github
|
|
Until next time 👋, Happy learning! 🎉 💻
If you found this helpful, please give a shoutout to @gsavitha_ and share this article to help others. For more articles like this, subscribe to my Newsletter and get the latest updates straight to your inbox.