Heroku的Radiant扩展?

时间:2009-05-21 19:22:46

标签: heroku content-management-system

任何人都有任何经验尚未获得Radiant CMS扩展以实际进入heroku实例吗?我已经尝试删除子模块并添加文件,但实际上并没有太多运气。

2 个答案:

答案 0 :(得分:5)

Heroku目前不支持git子模块。 但是,他们(优秀)的文档表达了一种解决方法:check it out here

来自文档:

$ cd myapp
$ rm -rf `find . -mindepth 2 -name .git`
$ git add .
$ git commit -m "brought submodules into the main repo"

答案 1 :(得分:1)

目前不支持Git子模块。我们正在评估将来是否支持他们;在此期间,您需要跟踪主项目中的任何子模块。你可以这样做:

$ cd myapp
$ rm -rf `find . -mindepth 2 -name .git`
$ git rm --cache `git submodule | cut -f2 -d' '`
$ git rm .gitmodules
$ git add .
$ git config -l | grep '^submodule' | cut -d'=' -f1 | xargs -n1 git config --unset-all
$ git commit -m "brought submodules into the main repo"

如果您不确定您的项目是否使用子模块,请运行此命令:

$ find . -mindepth 2 -name .git

如果它打印任何输出,你有子模块。