Keep Github Original Repository and Forked Repo in Sync via the command line

syncing-git-hub-fork

…need to add that as an upstream remote… git remote add upstream https://github.com/theirname/the-repo.git Then run git remote -v origin git@github.com:yourname/the-repo.git (fetch) origin git@github.com:yourname/the-repo.git (push) upstream https://github.com/theirname/the-repo.git (fetch) upstream https://github.com/theirname/the-repo.git (push)…

Read More