I've tried to find a concrete answer for this but failed. I'm rather new to openshift, django and git so I hope it's not too trivial and not a duplicate.
The situation is as follows: 1. I'm developing a Django based web application and source control it using git on a private bitbucket repo. I have my regular django application source tree as needed. 2. I wish to deploy my app on openshift which comes with a different directory tree. I've been able to successfully run this quickstart: git://github.com/rancavil/django-openshift-quickstart.git
Basically what I try to achieve is a wrapper directory (and git project) which is based on the repo specified in #2. Within this wrapper one of the subdirectories (wsgi/my_project) should be based on my private repo specified in #1. I wish to be able to pull recent changes from the private repo and then push and deploy to openshift these changes.
Any help would be greatly appreciated!