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 appea
you can add another remote account to your repository through giving different name instead of origin. You can use name such as origin2. so your git command can be modified as
git remote add origin2 https://github.com/Company_Name/repository_name.git