Grit 子模块更新返回 nil

发布于 2024-11-09 19:52:27 字数 355 浏览 2 评论 0原文

使用 Grit 处理 ruby​​/git 项目,但我无法以编程方式更新我的子模块。我弄清楚了 Missing_method 函数如何映射到 git 以及如何使用它来执行未写入 grit 的任务,但是子模块更新函数似乎不起作用。

这是我的代码的示例:

git = Grit::Git.new(@repository)
git.pull
pp git.submodule({:quiet => false, :verbose => true, :progress => true}, "update")

返回:

""

提前致谢!

Working on a ruby/git project using Grit, but I'm unable to update my submodules programmatically. I figured out how the missing_method function maps to git and how to use it to perform tasks not written in to grit, however the submodule update function doesnt seem to work.

Here is an example of my code:

git = Grit::Git.new(@repository)
git.pull
pp git.submodule({:quiet => false, :verbose => true, :progress => true}, "update")

Returns:

""

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

郁金香雨 2024-11-16 19:52:27

不熟悉 grit,但在普通的 git 中,你会

git submodule update --init --recursive

在子模块中 init 部分设置远程 url。希望你有 :init =>; true:recursive => true 参数可用。递归对您来说是可选的。如果您的子模块存储库本身具有子模块,请使用它。

希望这有帮助。

not familiar with grit, but in plain git you would

git submodule update --init --recursive

The init part sets the remote url in the submodule. Hopefully you have :init => true and :recursive => true parameters available. Recursive is optional for you. Use it if your submodule repo has submodules itself.

Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文