I recently forked a project and applied several fixes. I then created a pull request which was then accepted.
A few days later another change was made by another con
A lot of answers end up moving your fork one commit ahead of the parent repository. This answer summarizes the steps found here which will move your fork to the same commit as the parent.
Change directory to your local repository.
git checkout master
Add the parent as a remote repository, git remote add upstream
git fetch upstream
Issue git rebase upstream/master
git status
Issue git push origin master
For more information about these commands, refer to step 3.