I created a clone of this repository . If I run the following command, I see that my local repo is configured to use my clone to pull / pull, as expected.
$ git remote show origin * remote origin Fetch URL: https://github.com/domurtag/airbrake-grails.git Push URL: https://github.com/domurtag/airbrake-grails.git
I would like my local repo to exit the master repo (the one I cloned from) instead, and click on my clone. The first thing I did was add the master repo as remote:
$ git remote add cavneb https:
If I run git remote show origin again, I will see the same output, so obviously I need to do something else to indicate that the cavneb repository should be used for extraction, but I'm not sure what it is.
In case this is relevant, I showed the contents of my .git/config below:
[core] repositoryformatversion = 0 filemode = true logallrefupdates = true [remote "origin"] url = https://github.com/domurtag/airbrake-grails.git fetch = +refs/heads/*:refs/remotes/origin/* [branch "master"] remote = origin merge = refs/heads/master [remote "cavneb"] url = https://github.com/cavneb/airbrake-grails.git fetch = +refs/heads/*:refs/remotes/cavneb/*
source share