Syncing A forked Repo with the Parent Repo on GitHub
A short guide and a practical reference to GitHub Documentation on syncing a repo. It’s kind of an ‘open-source’ hacks For the guide, I’ll be using a repo I forked from FbDevcCommunityContent. From the terminal, I will change my directory to where the project files are: The first step will be to fetch branches and their commits from the upstream, or the parent repository: git fetch upstream After that, ensure that you are at the default repository on your remote repo. In my case, the default branch is master, and so is the upstream. ...