I went and grabbed the original repo, and then forcibly pushed it into my Heroku app. Looks like that:
git clone https://github.com/USER/REPO.git git checkout v0.7.3 git remote add heroku https://git.heroku.com/APP-NAME.git git push -f heroku master
Heroku simplifies repo cloning for your application using
heroku git:clone -a app-name
I initially tried to do this and then added the original repo as remote and merging the changes, but I ran into some problems that I didnโt like figuring out.
source share