Is it possible to add heroku git repository to github?
Example I have a Heroku git:
git@heroku.com:myapp.git
Can I somehow add this to github? So I can see want files are on the server and follow changes etc..
Is it possible to add heroku git repository to github?
Example I have a Heroku git:
git@heroku.com:myapp.git
Can I somehow add this to github? So I can see want files are on the server and follow changes etc..
You can just add another remote to your clone that points to your github account/repository and then push to that repository as well when you make changes. You'll have to make sure though, that you always push to both remotes.
It is possible to set up git to push to two repositories simultaneously.
Please see this post here: Pushing to Multiple Git Repositories Simultaneously