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
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
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
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
4 matches
Mail list logo