Omar Lahlou
Omar Lahlou

Reputation: 1000

Equivalent of git log command for Heroku

I am wondering if there is an equivalent of git log for Heroku that shows the push history on heroku remote.

Upvotes: 1

Views: 551

Answers (2)

Daniel Disblu
Daniel Disblu

Reputation: 343

I complement this question by saying that heroku releases will do that, but if you want to know more about the release you can do:

For version 1: heroku releases:info v1

For version 2: heroku releases:info v2

And so on...

You can check more info in the documentation of heroku:

https://devcenter.heroku.com/articles/releases

Upvotes: 1

topheman
topheman

Reputation: 7902

Using the heroku cli running the command : heroku releases should do the trick.

Source : https://devcenter.heroku.com/articles/using-the-cli

Upvotes: 3

Related Questions