eWizardII
eWizardII

Reputation: 1936

Link Heroku commits to Github?

This may be a silly question, but when you commit to Git for Heroku, does it show up anywhere on Github or is there any way to have it show up that way? Or where are the commits being stored? I wasn't able to find anywhere online to know if this was possible or not. The closest and most relavent I did find on Stack was this:

Heroku + Github Integration

Thanks!

Upvotes: 4

Views: 2068

Answers (3)

seantomburke
seantomburke

Reputation: 11692

If you push your code to Heroku, it will not show up in Github unless you do the following. If you want to see your code in Github you must add Github as a remote repository along with your heroku repository.

git remote add origin https://git.heroku.com/repo.git
git remote set-url --add origin https://github.com/username/repo.git

Now every time you push your commits to heroku it will also push it to github

git push origin

Now when you click on the commit links in Heroku's Revisions tab, they will link you to Github.

Upvotes: 3

John Beynon
John Beynon

Reputation: 37507

Yes, if you push your code to github then you'll see the log messages - Heroku is after all just a remote git repo, just like github is.

Upvotes: 3

Baversjo
Baversjo

Reputation: 3716

Github does not know this information as your just pushing new commits to heroku server.

However, you can locally view which commit heroku is on right now (assuming remote name is "heroku"):

$ git show heroku/master

Upvotes: 1

Related Questions