I\'m building an application which I\'m also testing in Heroku. I ran into some problem today and had to rollback one commit in my local git repo, but Heroku now won\'t reco
This worked for me (from https://coderwall.com/p/okrlzg):
heroku plugins:install https://github.com/lstoll/heroku-repo.githeroku repo:reset -a APPNAMEFrom there, the git repository has been "reset". Next, run:
git push heroku master -a APPNAMEto seed the git repository and re-deploy your app.