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
3. Add remote from original repository in your forked repository:
cd into/cloned/fork-repo
git remote add upstream https://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
//TortioseGit->Settings
// Git->Remote
// Edit Origin to be Upstream
// Edit URL to be https://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
4. Updating your fork from original repo to keep up with their changes:
git pull upstream master
//TortioseGit->Pull, change Remote to be Upstream and OK
//TortioseGit->Push, to send updated repo in line with upstream to forked github repo.