I have a multi-module app that is already on Github. It is comprised of two modules, one of them an Android app and the other a Rails based Web app. So my project\'s directo
You can use git subtree push. It will generate a new commit tree with your directory as root, and push it.
git subtree push
git subtree push --prefix web heroku master
Full documentation is here.