Re: [PATCH] pull: honor submodule.recurse config option

2017-09-01 Thread René Scharfe
Am 01.09.2017 um 19:11 schrieb Stefan Beller: > On Fri, Sep 1, 2017 at 12:29 AM, Nicolas Morey-Chaisemartin > wrote: >> git pull used to not parse the submodule.recurse config option and simply >> consider the --recurse-submodules CLI option. >> When using the config option, submodules would only

Re: [PATCH] pull: honor submodule.recurse config option

2017-09-01 Thread Jonathan Nieder
Hi, Nicolas Morey-Chaisemartin wrote: > git pull used to not parse the submodule.recurse config option and simply > consider the --recurse-submodules CLI option. > When using the config option, submodules would only be fetched recursively > while the CLi option would tigger both fetch and update/

Re: [PATCH] pull: honor submodule.recurse config option

2017-09-01 Thread Stefan Beller
On Fri, Sep 1, 2017 at 12:29 AM, Nicolas Morey-Chaisemartin wrote: > git pull used to not parse the submodule.recurse config option and simply > consider the --recurse-submodules CLI option. > When using the config option, submodules would only be fetched recursively > while the CLi option would t

[PATCH] pull: honor submodule.recurse config option

2017-09-01 Thread Nicolas Morey-Chaisemartin
git pull used to not parse the submodule.recurse config option and simply consider the --recurse-submodules CLI option. When using the config option, submodules would only be fetched recursively while the CLi option would tigger both fetch and update/merge. Reported-by: Magnus Homann Signed-off-b