Can a project have two (or more) “origins” in Git?
I would like to push a single project to both github and a Heroku server.
Specifically, this error appears when adding the github repository:
$ git remote add origin https://github.com/Company_Name/repository_name.git
fatal: remote origin already exists.
Edit: If you want to configure a single remote (
originor otherwise) to push to multiple upstream repos, that is possible. See Git – Pushing code to two remotesYou can have as many remotes as you want, but you can only have one remote named "origin". The remote called "origin" is not special in any way, except that it is the default remote created by Git when you clone an existing repository. You can configure a second remote, push to/pull from that remote, and setup some branches to track branches from that remote instead of origin.
Try adding a remote called "github" instead: