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

2019-06-24 Thread Johannes Schindelin
Hi Morian, On Sat, 22 Jun 2019, Morian Sonnet wrote: > Johannes Schindelin wrote: > > > On Tue, 18 Jun 2019, Morian Sonnet wrote: > > > > > "Morian Sonnet via GitGitGadget" wrote: > > > > > > > Calling > > > > > > > > git submodule foreach --recursive git reset --hard > > > > > > > > leads

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

2019-06-22 Thread Morian Sonnet
Johannes Schindelin wrote: Hello Johannes, thank your for the review. Sorry for the spam, I messed up with the replytoall command. > Hi Morian, > > On Tue, 18 Jun 2019, Morian Sonnet wrote: > > > "Morian Sonnet via GitGitGadget" wrote: > > > > > Calling > > > > > > git submodule foreach --

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

2019-06-19 Thread Johannes Schindelin
Hi Morian, On Tue, 18 Jun 2019, Morian Sonnet wrote: > "Morian Sonnet via GitGitGadget" wrote: > > > Calling > > > > git submodule foreach --recursive git reset --hard > > > > leads to an error stating that the option --hard is unknown to > > submodule--helper. > > > > Reasons: > > > > . Abo

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

2019-06-18 Thread Morian Sonnet
"Morian Sonnet via GitGitGadget" wrote: I fixed the problem with the test case. Please take another look. > 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. > > Reas

[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