Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question

2 Answers

up vote 1 down vote accepted

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.

share|improve this answer
Okay thanks, that's what I didn't understand. – eWizardII Aug 5 '11 at 22:31

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
share|improve this answer
anyway to push to heroku AND just add log info to github? – Eiyrioü von Kauyf Oct 30 '12 at 4:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.