Re: [RFC PATCH 02/10] submodule: factor out a config_gitmodules_set function

2018-06-20 Thread Antonio Ospite
On Mon, 14 May 2018 18:20:21 -0700 Stefan Beller wrote: > On Mon, May 14, 2018 at 3:58 AM, Antonio Ospite wrote: > > Introduce a new config_gitmodules_set function to write config values to the > > .gitmodules file. > > > > This is in preparation for a future change which will use the function >

Re: [RFC PATCH 02/10] submodule: factor out a config_gitmodules_set function

2018-05-14 Thread Stefan Beller
On Mon, May 14, 2018 at 3:58 AM, Antonio Ospite wrote: > Introduce a new config_gitmodules_set function to write config values to the > .gitmodules file. > > This is in preparation for a future change which will use the function > to write to the .gitmodules file in a more controlled way instead o

[RFC PATCH 02/10] submodule: factor out a config_gitmodules_set function

2018-05-14 Thread Antonio Ospite
Introduce a new config_gitmodules_set function to write config values to the .gitmodules file. This is in preparation for a future change which will use the function to write to the .gitmodules file in a more controlled way instead of using "git config -f .gitmodules". Signed-off-by: Antonio Ospi