You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
2. Add remote from original repository in your forked repository:
cd into/cloned/fork-repo
# Add the remote, call it "upstream":
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
# Fetch all the branches of that remote into remote-tracking branches,
# such as upstream/master:
git fetch upstream
# Make sure that you're on your master branch
git checkout master
3. Updating your fork from original repo to keep up with their changes:
For more insight, Please see: https://stackoverflow.com/questions/7244321/how-do-i-update-a-github-forked-repository