Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Deploying changes to an app hosted on Heroku without using Git

Tags:

git

github

heroku

I have an application on GitHub that is deployed to Heroku. Even if I'm at a computer where Git is not installed, I can make changes to the files in the repository via the GitHub website. However, I'm not sure if I can deploy those changes to Heroku without invoking "git push heroku". Does anyone know if this is possible?

like image 209
Kevin Pang Avatar asked Apr 27 '11 15:04

Kevin Pang


2 Answers

This is possible now, check out https://github.com/ddollar/heroku-push

like image 114
Lars Grammel Avatar answered Sep 23 '22 22:09

Lars Grammel


it's not possible - deploys must be via git push

like image 38
John Beynon Avatar answered Sep 22 '22 22:09

John Beynon