Syncing Fork with Parent Repo


Note
Now Github actually Provides this.
terminal.sh
# check if remote exists git remote -v # add the remote git remote add upstream <https... .git> # fetch the upstream repo git fetch upstream # merge the branch git merge upstream/main # push the changes git push