I forked a repo and set everything up on my local machine. However, when I do ‘git remote -v’ it shows the original repo as my fetch and push source. I want it to by from my forked repo. How do I change it over to that without starting all over? And then, how do I add an upstream to the original repo?
Share
From the git remote man page:
See also the examples of GitHub: Changing a remote’s URL.
You will then be able to fetch from upstream, and push to origin:
See “What is the difference between
originandupstreamin Github“.