当该子模块没有该分支时,Git 子模块会忽略分支签出时的错误

发布于 2025-01-10 14:33:23 字数 488 浏览 0 评论 0原文

我的 git 存储库中有 6 个子模块,即 submodule1、submodule2、... submodule6。 在 4 个子模块上: submodule1/2/4/5 我有一个分支,featureABC 说,在它们上面。

当我运行签出命令时:

$ git submodule foreach git checkout featureABC

出现错误:

error: pathspec 'featureABC' did not match any file(s) known to git
fatal: run_command returned non-zero status for submodule3

我知道 submodule3/6 没有分支 featureABC,我想在运行递归签出时忽略它们。所以我的问题是:有什么方法可以忽略签出错误,保留 submodule3/5 的分支不变并继续其他子模块签出吗?

I have 6 sub modules in a git repository, says submodule1, submodule2,... submodule6.
On 4 sub modules: submodule1/2/4/5 I have a branch, says featureABC, on them.

When I run the checkout command:

$ git submodule foreach git checkout featureABC

there is an errror:

error: pathspec 'featureABC' did not match any file(s) known to git
fatal: run_command returned non-zero status for submodule3

I know that submodule3/6 do not have branch featureABC and I want to ignore them when run recursive checkout. So my question is: is there any way to ignore checkout error, leave the branch of submodule3/5 as it is and continue to other submodule checkout?

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

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

发布评论

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

评论(2

寄风 2025-01-17 14:33:23

忽略此 shell 语法的所有错误:

git submodule foreach "git checkout featureABC || :"

: 表示“不执行任何操作”。

Ignore all errors with this shell syntax:

git submodule foreach "git checkout featureABC || :"

: means "do nothing".

薄暮涼年 2025-01-17 14:33:23

我们有什么办法可以放弃报价吗?
我正在尝试在 linux shell 上为此创建一个别名,例如 alias gis='git submodule foreach git'

您需要一个带有参数的 git 别名:

alias git = '!f() { git submodule foreach "git switch ${1} || :"; }'

我在这里使用 git 开关 (Git 2.23,2019 年第 3 季度)而不是 git checkoutgit switch 仅适用于分支,而不是像 git checkout 那样的“分支或文件”。

Is there any way we can drop the quote?
I'm trying to make an alias for this on linux shell, e.g. alias gis='git submodule foreach git'

You would need a git alias with parameters:

alias git = '!f() { git submodule foreach "git switch ${1} || :"; }'

I am using here git switch (Git 2.23, Q3 2019) instead of git checkout. git switch works only with branches, not "branches or files" like git checkout.

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