1.
Restart your KitClient based on the instructions in Subsection 2.7.5
git remote -v
command lists the names and URLs of all of the remote repositories (or just remotes for short) that your local repo knows about. Run this command in the directory that contains your local repository.git remote -v
command pay attention to the name given to the fetch and pull URLs.upstream
using the link from your origin repo in GitHub. Once you find the upstream, you can get the URL by using the “Code” button in the upstream repo, it ends in .git
. git remote add <remote repo name> <remote repo URL>
upstream
that points to the FarmData2 upstream repository that you are using for this exercise.git remote -v
command to confirm that the new upstream remote has been added.git remote -v
command pay attention to the name given to second set of fetch and pull URLs.