有没有人有任何经验让 Radiant CMS 扩展真正进入 heroku 实例?我曾尝试删除子模块并重新添加文件,但运气不佳。
问问题
769 次
2 回答
5
Heroku 目前不支持 git 子模块。但是,他们的(优秀的)文档表达了一种解决方法:在此处查看
从文档:
$ cd myapp
$ rm -rf `find . -mindepth 2 -name .git`
$ git add .
$ git commit -m "brought submodules into the main repo"
于 2009-05-21T20:05:02.393 回答
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
如果它打印任何输出,则说明您有子模块。
于 2010-11-23T16:39:05.860 回答