使用Grit处理ruby / git项目,但我无法以编程方式更新我的子模块。我想出了missing_method函数如何映射到git以及如何使用它来执行未写入grit的任务,但子模块更新函数似乎不起作用。
以下是我的代码示例:
git = Grit::Git.new(@repository)
git.pull
pp git.submodule({:quiet => false, :verbose => true, :progress => true}, "update")
返回:
""
提前致谢!
答案 0 :(得分:0)
不熟悉砂砾,但在普通的git中你会
git submodule update --init --recursive
init部分在子模块中设置远程URL。希望您有:init => true
和:recursive => true
参数可用。递归是可选的。如果子模块repo本身有子模块,请使用它。
希望这有帮助。