如何将我的OpenShift应用程序克隆到git

时间:2014-12-09 08:07:16

标签: git github openshift

我从开放式转换中创建了一个应用程序。我想将它克隆到git-hub但我失败了。 从命令提示符下载到我的开放式帐户后,我运行了它:

$ git clone <git_URL> <directory to create>

我创建了一个git存储库,并从web-console中找到git_URL。 但它没有用。 错误消息是:

致命:无法创建“https://github.com/torvalds/linux”的前导目录:参数无效

任何人都可以举出

的例子
$ git clone <git_URL> <directory to create>

需要帮助!提前谢谢。

2 个答案:

答案 0 :(得分:1)

如果我理解正确,您正在尝试将通过openshift创建的应用程序推送到github存储库。以下文章可以帮助您:

https://forums.openshift.com/how-to-keep-a-github-repository-and-an-openshift-repository-in-sync

您需要在github上创建一个空白存储库,在应用程序的git配置中将其添加为远程存储库,然后使用git push remote_name master进行推送。

git remote add github <github repo url>
git push github master

答案 1 :(得分:0)

首先安装ruby并安装rhc。并使用

设置你的rhc
$ rhc setup
之后的

命令

$ git clone <git_URL>

了解更多信息,请转到此openshift developer site