[PATCH v2 0/1] submodule foreach: fix recursion of options

2019-06-12 Thread Morian Sonnet via GitGitGadget
During the usage of git in Buildkite we noted that git fails upon calling git submodule foreach --recursive git reset --hardafter updating git version to 2.22.0. This is due to a problem with the recursive calling of git submodule--helper itself, which is fixed in the patch below. Morian Sonnet

[PATCH v2 1/1] submodule foreach: fix recursion of options

2019-06-12 Thread Morian Sonnet via GitGitGadget
From: Morian Sonnet Calling git submodule foreach --recursive git reset --hard leads to an error stating that the option --hard is unknown to submodule--helper. Reasons: . Above call is internally translated into git submodule--helper foreach --recursive -- git reset --hard . After

[PATCH 0/1] submodule foreach: fix recursion of options

2019-06-12 Thread Morian Sonnet via GitGitGadget
During the usage of git in Buildkite we noted that git fails upon calling git submodule foreach --recursive git reset --hardafter updating git version to 2.22.0. This is due to a problem with the recursive calling of git submodule--helper itself, which is fixed in the patch below. Morian Sonnet

[PATCH 1/1] submodule foreach: fix recursion of options

2019-06-12 Thread Morian Sonnet via GitGitGadget
From: Morian Sonnet Calling git submodule foreach --recursive git reset --hard leads to an error stating that the option --hard is unknown to submodule--helper. Reasons: . Above call is internally translated into git submodule--helper foreach --recursive -- git reset --hard . After