Is it necessary to have git repo on openshift only? I already have bitbucket / github git repo and would prefer to push there only. Can I simply hook into it so that openshi
From you project folder, do
git remote add backup user@server:/path/to/git/test.git git push backup master
You can read Pushing to two git remote origins from one repository and Changing git remote origin.