2016-03-04 21:51 GMT-03:00 alvinpenner <penner@...1856...>:
I get: C:\Users\Alvin\AppData\Roaming\lib2geom>git remote -v origin git://git.launchpad.net/lib2geom (fetch) origin git://git.launchpad.net/lib2geom (push)
not sure what that means. When I interrogate git I get the below, which is the same as before
It means your current branch tracking origin, which is the launchpad repo. So when you're in master and runs `git pull`, it'll try to sync your current branch against the launchpad's master branch.
There are several ways to work around this. My suggestion is to do the following:
git remote set-url origin https://github.com/inkscape/lib2geom.git
This will change the origin remote url to https://github.com/inkscape/lib2geom.git. So when you run git push/pull, git will try the github repo.