how heroku git works code example
Example 1: how to add existing heroku remote
git remote add heroku git@heroku.com:project.git
Example 2: how to trigger new heorku build without diting git
heroku builds:create --source-url https://user:[email protected]/repos/<username>/<repo name>/tarball/master/ --app <app-name>