托管openshift时,我遇到了这个错误。我使用github / bitbucket存储库作为源代码。
答案 0 :(得分:0)
你可以这样做。 您可以克隆bitbuket,然后使用openshift git repo添加远程分支。
点击此链接。
Use existing git repo with openshift
=============================================== =========================
1)克隆你的回购
$ git clone <bitbucket-repo-url>
2)然后,添加openshift的远程原点
$ git remote add openshift -f <openshift-git-repo-url>
3)之后,将您的openshift repo与您当地的bitbucket合并
$ git merge openshift/master
4)最后将你的git repo推送到openshift
$ git push openshift HEAD
快乐的编码......