git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* [GSoC] [PATCH] submodule--helper: introduce add-config subcommand
@ 2021-07-22 11:21 Atharva Raykar
  2021-07-22 11:41 ` Atharva Raykar
                   ` (4 more replies)
  0 siblings, 5 replies; 13+ messages in thread
From: Atharva Raykar @ 2021-07-22 11:21 UTC (permalink / raw)
  To: git
  Cc: Atharva Raykar, Emily Shaffer, Jonathan Nieder, Junio C Hamano,
	Christian Couder, Shourya Shukla, Kaartic Sivaraam, Eric Sunshine,
	Prathamesh Chavan, Đoàn Trần Công Danh,
	Rafael Silva

Add a new "add-config" subcommand to `git submodule--helper` with the
goal of converting part of the shell code in git-submodule.sh related to
`git submodule add` into C code. This new subcommand sets the
configuration variables of a newly added submodule, by registering the
url in local git config, as well as the submodule name and path in the
.gitmodules file. It also sets 'submodule.<name>.active' to "true" if
the submodule path has not already been covered by any pathspec
specified in 'submodule.active'.

This is meant to be a faithful conversion from shell to C, with only one
minor change: A warning is emitted if no value is specified in
'submodule.active', ie, the config looks like: "[submodule] active\n",
because it is an invalid configuration. It would be helpful to let the
user know that the pathspec is unset, and the value of
'submodule.<name>.active' might be set to 'true' so that they can
rectify their configuration and prevent future surprises (especially
given that the latter variable has a higher priority than the former).

The structure of the conditional to check if we need to set the 'active'
toggle looks different from the shell version -- but behaves the same.
The change was made to decrease code duplication. A comment has been
added to explain that only one value of 'submodule.active' is obtained
to check if we need to call is_submodule_active() at all.

Signed-off-by: Atharva Raykar <raykar.ath@gmail.com>
Mentored-by: Christian Couder <christian.couder@gmail.com>
Mentored-by: Shourya Shukla <periperidip@gmail.com>
Based-on-patch-by: Shourya Shukla <periperidip@gmail.com>
Based-on-patch-by: Prathamesh Chavan <pc44800@gmail.com>
---

This patch depends on changes introduced in 83913dd5b6 (t7400: test failure to
add submodule in tracked path, 2021-06-18), which belongs to the
ar/submodule-add (2021-07-12) series[1].

This changes in this patch are no different from the one in my first
submodule-add conversion series[2] which has already got some reviews before.

[1] https://lore.kernel.org/git/20210710074801.19917-1-raykar.ath@gmail.com/
[2] https://lore.kernel.org/git/20210615145745.33382-4-raykar.ath@gmail.com/

 builtin/submodule--helper.c | 125 ++++++++++++++++++++++++++++++++++++
 git-submodule.sh            |  28 +-------
 2 files changed, 126 insertions(+), 27 deletions(-)

diff --git a/builtin/submodule--helper.c b/builtin/submodule--helper.c
index 862053c9f2..9658804d24 100644
--- a/builtin/submodule--helper.c
+++ b/builtin/submodule--helper.c
@@ -2936,6 +2936,130 @@ static int add_clone(int argc, const char **argv, const char *prefix)
 	return 0;
 }
 
+static void config_submodule_in_gitmodules(const char *name, const char *var, const char *value)
+{
+	char *key;
+
+	if (!is_writing_gitmodules_ok())
+		die(_("please make sure that the .gitmodules file is in the working tree"));
+
+	key = xstrfmt("submodule.%s.%s", name, var);
+	config_set_in_gitmodules_file_gently(key, value);
+	free(key);
+}
+
+static void configure_added_submodule(struct add_data *add_data)
+{
+	char *key, *submod_pathspec = NULL;
+	struct child_process add_submod = CHILD_PROCESS_INIT;
+	struct child_process add_gitmodules = CHILD_PROCESS_INIT;
+	int pathspec_key_exists, activate = 0;
+
+	key = xstrfmt("submodule.%s.url", add_data->sm_name);
+	git_config_set_gently(key, add_data->realrepo);
+	free(key);
+
+	add_submod.git_cmd = 1;
+	strvec_pushl(&add_submod.args, "add",
+		     "--no-warn-embedded-repo", NULL);
+	if (add_data->force)
+		strvec_push(&add_submod.args, "--force");
+	strvec_pushl(&add_submod.args, "--", add_data->sm_path, NULL);
+
+	if (run_command(&add_submod))
+		die(_("Failed to add submodule '%s'"), add_data->sm_path);
+
+	config_submodule_in_gitmodules(add_data->sm_name, "path", add_data->sm_path);
+	config_submodule_in_gitmodules(add_data->sm_name, "url", add_data->repo);
+	if (add_data->branch)
+		config_submodule_in_gitmodules(add_data->sm_name,
+					       "branch", add_data->branch);
+
+	add_gitmodules.git_cmd = 1;
+	strvec_pushl(&add_gitmodules.args,
+		     "add", "--force", "--", ".gitmodules", NULL);
+
+	if (run_command(&add_gitmodules))
+		die(_("Failed to register submodule '%s'"), add_data->sm_path);
+
+	/*
+	 * NEEDSWORK: In a multi-working-tree world this needs to be
+	 * set in the per-worktree config.
+	 */
+	pathspec_key_exists = !git_config_get_string("submodule.active",
+						     &submod_pathspec);
+	if (pathspec_key_exists && !submod_pathspec) {
+		warning(_("The submodule.active configuration exists, but the "
+			  "pathspec was unset. If the submodule is not already "
+			  "active, the value of submodule.%s.active will be "
+			  "be set to 'true'."), add_data->sm_name);
+		activate = 1;
+	}
+
+	/*
+	 * If submodule.active does not exist, or if the pathspec was unset,
+	 * we will activate this module unconditionally.
+	 *
+	 * Otherwise, we ask is_submodule_active(), which iterates
+	 * through all the values of 'submodule.active' to determine
+	 * if this module is already active.
+	 */
+	if (!pathspec_key_exists || activate ||
+	    !is_submodule_active(the_repository, add_data->sm_path)) {
+		key = xstrfmt("submodule.%s.active", add_data->sm_name);
+		git_config_set_gently(key, "true");
+		free(key);
+	}
+}
+
+static int add_config(int argc, const char **argv, const char *prefix)
+{
+	int force = 0;
+	struct add_data add_data = ADD_DATA_INIT;
+
+	struct option options[] = {
+		OPT_STRING('b', "branch", &add_data.branch,
+			   N_("branch"),
+			   N_("branch of repository to store in "
+			      "the submodule configuration")),
+		OPT_STRING(0, "url", &add_data.repo,
+			   N_("string"),
+			   N_("url to clone submodule from")),
+		OPT_STRING(0, "resolved-url", &add_data.realrepo,
+			   N_("string"),
+			   N_("url to clone the submodule from, after it has "
+			      "been dereferenced relative to parent's url, "
+			      "in the case where <url> is a relative url")),
+		OPT_STRING(0, "path", &add_data.sm_path,
+			   N_("path"),
+			   N_("where the new submodule will be cloned to")),
+		OPT_STRING(0, "name", &add_data.sm_name,
+			   N_("string"),
+			   N_("name of the new submodule")),
+		OPT__FORCE(&force, N_("allow adding an otherwise ignored submodule path"),
+			   PARSE_OPT_NOCOMPLETE),
+		OPT_END()
+	};
+
+	const char *const usage[] = {
+		N_("git submodule--helper add-config "
+		   "[--force|-f] [--branch|-b <branch>] "
+		   "--url <url> --resolved-url <resolved-url> "
+		   "--path <path> --name <name>"),
+		NULL
+	};
+
+	argc = parse_options(argc, argv, prefix, options, usage, 0);
+
+	if (argc != 0)
+		usage_with_options(usage, options);
+
+	add_data.force = !!force;
+	configure_added_submodule(&add_data);
+
+	return 0;
+}
+
 #define SUPPORT_SUPER_PREFIX (1<<0)
 
 struct cmd_struct {
@@ -2949,6 +3073,7 @@ static struct cmd_struct commands[] = {
 	{"name", module_name, 0},
 	{"clone", module_clone, 0},
 	{"add-clone", add_clone, 0},
+	{"add-config", add_config, 0},
 	{"update-module-mode", module_update_module_mode, 0},
 	{"update-clone", update_clone, 0},
 	{"ensure-core-worktree", ensure_core_worktree, 0},
diff --git a/git-submodule.sh b/git-submodule.sh
index 053daf3724..f713cb113c 100755
--- a/git-submodule.sh
+++ b/git-submodule.sh
@@ -242,33 +242,7 @@ cmd_add()
 	fi
 
 	git submodule--helper add-clone ${GIT_QUIET:+--quiet} ${force:+"--force"} ${progress:+"--progress"} ${branch:+--branch "$branch"} --prefix "$wt_prefix" --path "$sm_path" --name "$sm_name" --url "$realrepo" ${reference:+"$reference"} ${dissociate:+"--dissociate"} ${depth:+"$depth"} || exit
-	git config submodule."$sm_name".url "$realrepo"
-
-	git add --no-warn-embedded-repo $force "$sm_path" ||
-	die "fatal: $(eval_gettext "Failed to add submodule '\$sm_path'")"
-
-	git submodule--helper config submodule."$sm_name".path "$sm_path" &&
-	git submodule--helper config submodule."$sm_name".url "$repo" &&
-	if test -n "$branch"
-	then
-		git submodule--helper config submodule."$sm_name".branch "$branch"
-	fi &&
-	git add --force .gitmodules ||
-	die "fatal: $(eval_gettext "Failed to register submodule '\$sm_path'")"
-
-	# NEEDSWORK: In a multi-working-tree world, this needs to be
-	# set in the per-worktree config.
-	if git config --get submodule.active >/dev/null
-	then
-		# If the submodule being adding isn't already covered by the
-		# current configured pathspec, set the submodule's active flag
-		if ! git submodule--helper is-active "$sm_path"
-		then
-			git config submodule."$sm_name".active "true"
-		fi
-	else
-		git config submodule."$sm_name".active "true"
-	fi
+	git submodule--helper add-config ${force:+--force} ${branch:+--branch "$branch"} --url "$repo" --resolved-url "$realrepo" --path "$sm_path" --name "$sm_name"
 }
 
 #
-- 
2.32.0


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* Re: [GSoC] [PATCH] submodule--helper: introduce add-config subcommand
  2021-07-22 11:21 [GSoC] [PATCH] submodule--helper: introduce add-config subcommand Atharva Raykar
@ 2021-07-22 11:41 ` Atharva Raykar
  2021-07-22 11:50 ` Ævar Arnfjörð Bjarmason
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 13+ messages in thread
From: Atharva Raykar @ 2021-07-22 11:41 UTC (permalink / raw)
  To: Git List
  Cc: Emily Shaffer, Jonathan Nieder, Junio C Hamano, Christian Couder,
	Shourya Shukla, Kaartic Sivaraam, Eric Sunshine,
	Prathamesh Chavan, Đoàn Trần Công Danh,
	Rafael Silva

On 22-Jul-2021, at 16:51, Atharva Raykar <raykar.ath@gmail.com> wrote:
> 
> Add a new "add-config" subcommand to `git submodule--helper` with the
> goal of converting part of the shell code in git-submodule.sh related to
> `git submodule add` into C code. This new subcommand sets the
> configuration variables of a newly added submodule, by registering the
> url in local git config, as well as the submodule name and path in the
> .gitmodules file. It also sets 'submodule.<name>.active' to "true" if
> the submodule path has not already been covered by any pathspec
> specified in 'submodule.active'.
> 
> This is meant to be a faithful conversion from shell to C, with only one
> minor change: A warning is emitted if no value is specified in
> 'submodule.active', ie, the config looks like: "[submodule] active\n",
> because it is an invalid configuration. It would be helpful to let the
> user know that the pathspec is unset, and the value of
> 'submodule.<name>.active' might be set to 'true' so that they can
> rectify their configuration and prevent future surprises (especially
> given that the latter variable has a higher priority than the former).
> 
> The structure of the conditional to check if we need to set the 'active'
> toggle looks different from the shell version -- but behaves the same.
> The change was made to decrease code duplication. A comment has been
> added to explain that only one value of 'submodule.active' is obtained
> to check if we need to call is_submodule_active() at all.
> 
> Signed-off-by: Atharva Raykar <raykar.ath@gmail.com>
> Mentored-by: Christian Couder <christian.couder@gmail.com>
> Mentored-by: Shourya Shukla <periperidip@gmail.com>
> Based-on-patch-by: Shourya Shukla <periperidip@gmail.com>
> Based-on-patch-by: Prathamesh Chavan <pc44800@gmail.com>
> ---
> 
> This patch depends on changes introduced in 83913dd5b6 (t7400: test failure to
> add submodule in tracked path, 2021-06-18), which belongs to the
> ar/submodule-add (2021-07-12) series[1].
> 
> This changes in this patch are no different from the one in my first
> submodule-add conversion series[2] which has already got some reviews before.
> 
> [1] https://lore.kernel.org/git/20210710074801.19917-1-raykar.ath@gmail.com/
> [2] https://lore.kernel.org/git/20210615145745.33382-4-raykar.ath@gmail.com/

I forgot to mention, you can fetch this change through:
git fetch https://github.com/tfidfwastaken/git.git submodule-helper-add-config-1


^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [GSoC] [PATCH] submodule--helper: introduce add-config subcommand
  2021-07-22 11:21 [GSoC] [PATCH] submodule--helper: introduce add-config subcommand Atharva Raykar
  2021-07-22 11:41 ` Atharva Raykar
@ 2021-07-22 11:50 ` Ævar Arnfjörð Bjarmason
  2021-07-22 13:28   ` Atharva Raykar
  2021-07-22 13:31 ` Atharva Raykar
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 13+ messages in thread
From: Ævar Arnfjörð Bjarmason @ 2021-07-22 11:50 UTC (permalink / raw)
  To: Atharva Raykar
  Cc: git, Emily Shaffer, Jonathan Nieder, Junio C Hamano,
	Christian Couder, Shourya Shukla, Kaartic Sivaraam, Eric Sunshine,
	Prathamesh Chavan, Đoàn Trần Công Danh,
	Rafael Silva


On Thu, Jul 22 2021, Atharva Raykar wrote:

> +static void config_submodule_in_gitmodules(const char *name, const char *var, const char *value)
> +{
> +	char *key;
> +
> +	if (!is_writing_gitmodules_ok())
> +		die(_("please make sure that the .gitmodules file is in the working tree"));
> +
> +	key = xstrfmt("submodule.%s.%s", name, var);
> +	config_set_in_gitmodules_file_gently(key, value);
> +	free(key);
> +}

Just a small point not per-se to do with this patch, but aren't all
callers of config_set_in_gitmodules_file_gently() wanting to prefix
thigs with "submodule."? Looks like its API could be simplified a bit
with that xstrfmt() and free() inside that function.

> +static void configure_added_submodule(struct add_data *add_data)
> +{
> +	char *key, *submod_pathspec = NULL;
> +	struct child_process add_submod = CHILD_PROCESS_INIT;
> +	struct child_process add_gitmodules = CHILD_PROCESS_INIT;
> +	int pathspec_key_exists, activate = 0;

Usual style is to have different variables on different lines, unless
they're closely related (like "int i, j"), so "char *key;\n char
*submod[...]" in this case.

> +
> +	key = xstrfmt("submodule.%s.url", add_data->sm_name);
> +	git_config_set_gently(key, add_data->realrepo);
> +	free(key);
> +
> +	add_submod.git_cmd = 1;
> +	strvec_pushl(&add_submod.args, "add",
> +		     "--no-warn-embedded-repo", NULL);
> +	if (add_data->force)
> +		strvec_push(&add_submod.args, "--force");
> +	strvec_pushl(&add_submod.args, "--", add_data->sm_path, NULL);
> +
> +	if (run_command(&add_submod))
> +		die(_("Failed to add submodule '%s'"), add_data->sm_path);
> +
> +	config_submodule_in_gitmodules(add_data->sm_name, "path", add_data->sm_path);
> +	config_submodule_in_gitmodules(add_data->sm_name, "url", add_data->repo);
> +	if (add_data->branch)
> +		config_submodule_in_gitmodules(add_data->sm_name,
> +					       "branch", add_data->branch);
> +
> +	add_gitmodules.git_cmd = 1;
> +	strvec_pushl(&add_gitmodules.args,
> +		     "add", "--force", "--", ".gitmodules", NULL);
> +
> +	if (run_command(&add_gitmodules))
> +		die(_("Failed to register submodule '%s'"), add_data->sm_path);

Looks good at a glance.

> +	/*
> +	 * NEEDSWORK: In a multi-working-tree world this needs to be
> +	 * set in the per-worktree config.
> +	 */

So should we have a failing test for that scenario, or...? (Update: but
read ahead...)

> +static int add_config(int argc, const char **argv, const char *prefix)
> +{
> +	int force = 0;
> +	struct add_data add_data = ADD_DATA_INIT;
> +
> +	struct option options[] = {
> +		OPT_STRING('b', "branch", &add_data.branch,
> +			   N_("branch"),
> +			   N_("branch of repository to store in "
> +			      "the submodule configuration")),
> +		OPT_STRING(0, "url", &add_data.repo,
> +			   N_("string"),
> +			   N_("url to clone submodule from")),
> +		OPT_STRING(0, "resolved-url", &add_data.realrepo,
> +			   N_("string"),
> +			   N_("url to clone the submodule from, after it has "
> +			      "been dereferenced relative to parent's url, "
> +			      "in the case where <url> is a relative url")),
> +		OPT_STRING(0, "path", &add_data.sm_path,
> +			   N_("path"),
> +			   N_("where the new submodule will be cloned to")),
> +		OPT_STRING(0, "name", &add_data.sm_name,
> +			   N_("string"),
> +			   N_("name of the new submodule")),
> +		OPT__FORCE(&force, N_("allow adding an otherwise ignored submodule path"),
> +			   PARSE_OPT_NOCOMPLETE),
> +		OPT_END()
> +	};
> +
> +	const char *const usage[] = {
> +		N_("git submodule--helper add-config "
> +		   "[--force|-f] [--branch|-b <branch>] "
> +		   "--url <url> --resolved-url <resolved-url> "
> +		   "--path <path> --name <name>"),
> +		NULL
> +	};

I'd say consider adding this as a "static" earlier in the file, but it's
an established pattern in this file, so let's keep it.

> +	argc = parse_options(argc, argv, prefix, options, usage, 0);

It's fine to omit it for a helper, but we're being non-pedantic about
checking mandatory options here. Would do it in a "real" built-in, but
for internal use it's fine.

> +	if (argc != 0)

Style: if (!argc)

> +		usage_with_options(usage, options);
> +
> +	add_data.force = !!force;
> +	configure_added_submodule(&add_data);
> +
> +	return 0;
> +}
> +
>  #define SUPPORT_SUPER_PREFIX (1<<0)
>  
>  struct cmd_struct {
> @@ -2949,6 +3073,7 @@ static struct cmd_struct commands[] = {
>  	{"name", module_name, 0},
>  	{"clone", module_clone, 0},
>  	{"add-clone", add_clone, 0},
> +	{"add-config", add_config, 0},
>  	{"update-module-mode", module_update_module_mode, 0},
>  	{"update-clone", update_clone, 0},
>  	{"ensure-core-worktree", ensure_core_worktree, 0},
> diff --git a/git-submodule.sh b/git-submodule.sh
> index 053daf3724..f713cb113c 100755
> --- a/git-submodule.sh
> +++ b/git-submodule.sh
> @@ -242,33 +242,7 @@ cmd_add()
>  	fi
>  
>  	git submodule--helper add-clone ${GIT_QUIET:+--quiet} ${force:+"--force"} ${progress:+"--progress"} ${branch:+--branch "$branch"} --prefix "$wt_prefix" --path "$sm_path" --name "$sm_name" --url "$realrepo" ${reference:+"$reference"} ${dissociate:+"--dissociate"} ${depth:+"$depth"} || exit
> -	git config submodule."$sm_name".url "$realrepo"
> -
> -	git add --no-warn-embedded-repo $force "$sm_path" ||
> -	die "fatal: $(eval_gettext "Failed to add submodule '\$sm_path'")"
> -
> -	git submodule--helper config submodule."$sm_name".path "$sm_path" &&
> -	git submodule--helper config submodule."$sm_name".url "$repo" &&
> -	if test -n "$branch"
> -	then
> -		git submodule--helper config submodule."$sm_name".branch "$branch"
> -	fi &&
> -	git add --force .gitmodules ||
> -	die "fatal: $(eval_gettext "Failed to register submodule '\$sm_path'")"
> -
> -	# NEEDSWORK: In a multi-working-tree world, this needs to be
> -	# set in the per-worktree config.

Ah, this is the NEEDSWORK comment, just copied to the C code...

> -	if git config --get submodule.active >/dev/null
> -	then
> -		# If the submodule being adding isn't already covered by the
> -		# current configured pathspec, set the submodule's active flag
> -		if ! git submodule--helper is-active "$sm_path"
> -		then
> -			git config submodule."$sm_name".active "true"
> -		fi
> -	else
> -		git config submodule."$sm_name".active "true"
> -	fi
> +	git submodule--helper add-config ${force:+--force} ${branch:+--branch "$branch"} --url "$repo" --resolved-url "$realrepo" --path "$sm_path" --name "$sm_name"
>  }
>  

Very nice to have this simplified.

Would be good to split this very long line across multiple lines
though...

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [GSoC] [PATCH] submodule--helper: introduce add-config subcommand
  2021-07-22 11:50 ` Ævar Arnfjörð Bjarmason
@ 2021-07-22 13:28   ` Atharva Raykar
  0 siblings, 0 replies; 13+ messages in thread
From: Atharva Raykar @ 2021-07-22 13:28 UTC (permalink / raw)
  To: Ævar Arnfjörð Bjarmason
  Cc: Git List, Emily Shaffer, Jonathan Nieder, Junio C Hamano,
	Christian Couder, Shourya Shukla, Kaartic Sivaraam, Eric Sunshine,
	Prathamesh Chavan, Đoàn Trần Công Danh,
	Rafael Silva

On 22-Jul-2021, at 17:20, Ævar Arnfjörð Bjarmason <avarab@gmail.com> wrote:
> 
> 
> On Thu, Jul 22 2021, Atharva Raykar wrote:
> 
>> +static void config_submodule_in_gitmodules(const char *name, const char *var, const char *value)
>> +{
>> +	char *key;
>> +
>> +	if (!is_writing_gitmodules_ok())
>> +		die(_("please make sure that the .gitmodules file is in the working tree"));
>> +
>> +	key = xstrfmt("submodule.%s.%s", name, var);
>> +	config_set_in_gitmodules_file_gently(key, value);
>> +	free(key);
>> +}
> 
> Just a small point not per-se to do with this patch, but aren't all
> callers of config_set_in_gitmodules_file_gently() wanting to prefix
> thigs with "submodule."? Looks like its API could be simplified a bit
> with that xstrfmt() and free() inside that function.

Yes, you are right, all the callers prefix with "submodule.". Changing
the API to what you suggested, would require some special handling in
'submodule--helper:module_config()', which will be dead code after the
whole series is done, so probably a better time to change it would be
during the cleanup after the conversion.

>> +static void configure_added_submodule(struct add_data *add_data)
>> +{
>> +	char *key, *submod_pathspec = NULL;
>> +	struct child_process add_submod = CHILD_PROCESS_INIT;
>> +	struct child_process add_gitmodules = CHILD_PROCESS_INIT;
>> +	int pathspec_key_exists, activate = 0;
> 
> Usual style is to have different variables on different lines, unless
> they're closely related (like "int i, j"), so "char *key;\n char
> *submod[...]" in this case.

Okay.

>> +
>> +	key = xstrfmt("submodule.%s.url", add_data->sm_name);
>> +	git_config_set_gently(key, add_data->realrepo);
>> +	free(key);
>> +
>> +	add_submod.git_cmd = 1;
>> +	strvec_pushl(&add_submod.args, "add",
>> +		     "--no-warn-embedded-repo", NULL);
>> +	if (add_data->force)
>> +		strvec_push(&add_submod.args, "--force");
>> +	strvec_pushl(&add_submod.args, "--", add_data->sm_path, NULL);
>> +
>> +	if (run_command(&add_submod))
>> +		die(_("Failed to add submodule '%s'"), add_data->sm_path);
>> +
>> +	config_submodule_in_gitmodules(add_data->sm_name, "path", add_data->sm_path);
>> +	config_submodule_in_gitmodules(add_data->sm_name, "url", add_data->repo);
>> +	if (add_data->branch)
>> +		config_submodule_in_gitmodules(add_data->sm_name,
>> +					       "branch", add_data->branch);
>> +
>> +	add_gitmodules.git_cmd = 1;
>> +	strvec_pushl(&add_gitmodules.args,
>> +		     "add", "--force", "--", ".gitmodules", NULL);
>> +
>> +	if (run_command(&add_gitmodules))
>> +		die(_("Failed to register submodule '%s'"), add_data->sm_path);
> 
> Looks good at a glance.
> 
>> +	/*
>> +	 * NEEDSWORK: In a multi-working-tree world this needs to be
>> +	 * set in the per-worktree config.
>> +	 */
> 
> So should we have a failing test for that scenario, or...? (Update: but
> read ahead...)
> 
>> +static int add_config(int argc, const char **argv, const char *prefix)
>> +{
>> +	int force = 0;
>> +	struct add_data add_data = ADD_DATA_INIT;
>> +
>> +	struct option options[] = {
>> +		OPT_STRING('b', "branch", &add_data.branch,
>> +			   N_("branch"),
>> +			   N_("branch of repository to store in "
>> +			      "the submodule configuration")),
>> +		OPT_STRING(0, "url", &add_data.repo,
>> +			   N_("string"),
>> +			   N_("url to clone submodule from")),
>> +		OPT_STRING(0, "resolved-url", &add_data.realrepo,
>> +			   N_("string"),
>> +			   N_("url to clone the submodule from, after it has "
>> +			      "been dereferenced relative to parent's url, "
>> +			      "in the case where <url> is a relative url")),
>> +		OPT_STRING(0, "path", &add_data.sm_path,
>> +			   N_("path"),
>> +			   N_("where the new submodule will be cloned to")),
>> +		OPT_STRING(0, "name", &add_data.sm_name,
>> +			   N_("string"),
>> +			   N_("name of the new submodule")),
>> +		OPT__FORCE(&force, N_("allow adding an otherwise ignored submodule path"),
>> +			   PARSE_OPT_NOCOMPLETE),
>> +		OPT_END()
>> +	};
>> +
>> +	const char *const usage[] = {
>> +		N_("git submodule--helper add-config "
>> +		   "[--force|-f] [--branch|-b <branch>] "
>> +		   "--url <url> --resolved-url <resolved-url> "
>> +		   "--path <path> --name <name>"),
>> +		NULL
>> +	};
> 
> I'd say consider adding this as a "static" earlier in the file, but it's
> an established pattern in this file, so let's keep it.
> 
>> +	argc = parse_options(argc, argv, prefix, options, usage, 0);
> 
> It's fine to omit it for a helper, but we're being non-pedantic about
> checking mandatory options here. Would do it in a "real" built-in, but
> for internal use it's fine.
> 
>> +	if (argc != 0)
> 
> Style: if (!argc)

Will fix.

>> +		usage_with_options(usage, options);
>> +
>> +	add_data.force = !!force;
>> +	configure_added_submodule(&add_data);
>> +
>> +	return 0;
>> +}
>> +
>> #define SUPPORT_SUPER_PREFIX (1<<0)
>> 
>> struct cmd_struct {
>> @@ -2949,6 +3073,7 @@ static struct cmd_struct commands[] = {
>> 	{"name", module_name, 0},
>> 	{"clone", module_clone, 0},
>> 	{"add-clone", add_clone, 0},
>> +	{"add-config", add_config, 0},
>> 	{"update-module-mode", module_update_module_mode, 0},
>> 	{"update-clone", update_clone, 0},
>> 	{"ensure-core-worktree", ensure_core_worktree, 0},
>> diff --git a/git-submodule.sh b/git-submodule.sh
>> index 053daf3724..f713cb113c 100755
>> --- a/git-submodule.sh
>> +++ b/git-submodule.sh
>> @@ -242,33 +242,7 @@ cmd_add()
>> 	fi
>> 
>> 	git submodule--helper add-clone ${GIT_QUIET:+--quiet} ${force:+"--force"} ${progress:+"--progress"} ${branch:+--branch "$branch"} --prefix "$wt_prefix" --path "$sm_path" --name "$sm_name" --url "$realrepo" ${reference:+"$reference"} ${dissociate:+"--dissociate"} ${depth:+"$depth"} || exit
>> -	git config submodule."$sm_name".url "$realrepo"
>> -
>> -	git add --no-warn-embedded-repo $force "$sm_path" ||
>> -	die "fatal: $(eval_gettext "Failed to add submodule '\$sm_path'")"
>> -
>> -	git submodule--helper config submodule."$sm_name".path "$sm_path" &&
>> -	git submodule--helper config submodule."$sm_name".url "$repo" &&
>> -	if test -n "$branch"
>> -	then
>> -		git submodule--helper config submodule."$sm_name".branch "$branch"
>> -	fi &&
>> -	git add --force .gitmodules ||
>> -	die "fatal: $(eval_gettext "Failed to register submodule '\$sm_path'")"
>> -
>> -	# NEEDSWORK: In a multi-working-tree world, this needs to be
>> -	# set in the per-worktree config.
> 
> Ah, this is the NEEDSWORK comment, just copied to the C code...
> 
>> -	if git config --get submodule.active >/dev/null
>> -	then
>> -		# If the submodule being adding isn't already covered by the
>> -		# current configured pathspec, set the submodule's active flag
>> -		if ! git submodule--helper is-active "$sm_path"
>> -		then
>> -			git config submodule."$sm_name".active "true"
>> -		fi
>> -	else
>> -		git config submodule."$sm_name".active "true"
>> -	fi
>> +	git submodule--helper add-config ${force:+--force} ${branch:+--branch "$branch"} --url "$repo" --resolved-url "$realrepo" --path "$sm_path" --name "$sm_name"
>> }
>> 
> 
> Very nice to have this simplified.
> 
> Would be good to split this very long line across multiple lines
> though...

I followed the established pattern of not splitting the lines from the
previous conversions ('submodule--helper update-clone' being the
exception in that file).

In this case, I felt it should be fine because a follow-up series that
completes the full conversion will get rid of that line entirely.


^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [GSoC] [PATCH] submodule--helper: introduce add-config subcommand
  2021-07-22 11:21 [GSoC] [PATCH] submodule--helper: introduce add-config subcommand Atharva Raykar
  2021-07-22 11:41 ` Atharva Raykar
  2021-07-22 11:50 ` Ævar Arnfjörð Bjarmason
@ 2021-07-22 13:31 ` Atharva Raykar
  2021-07-23 20:36 ` Junio C Hamano
  2021-07-28 11:53 ` [GSoC] [PATCH v2] " Atharva Raykar
  4 siblings, 0 replies; 13+ messages in thread
From: Atharva Raykar @ 2021-07-22 13:31 UTC (permalink / raw)
  To: Git List
  Cc: Emily Shaffer, Jonathan Nieder, Junio C Hamano, Christian Couder,
	Shourya Shukla, Kaartic Sivaraam, Eric Sunshine,
	Prathamesh Chavan, Đoàn Trần Công Danh,
	Rafael Silva

On 22-Jul-2021, at 16:51, Atharva Raykar <raykar.ath@gmail.com> wrote:
> [...]
> This patch depends on changes introduced in 83913dd5b6 (t7400: test failure to
> add submodule in tracked path, 2021-06-18), which belongs to the
> ar/submodule-add (2021-07-12) series[1].
> 
> This changes in this patch are no different from the one in my first
> submodule-add conversion series[2] which has already got some reviews before.
> 
> [1] https://lore.kernel.org/git/20210710074801.19917-1-raykar.ath@gmail.com/
> [2] https://lore.kernel.org/git/20210615145745.33382-4-raykar.ath@gmail.com/

A correction:

This patch depends on that same topic, but a different commit, which is
559e49fe5c (submodule: prefix die messages with 'fatal', 2021-07-08).

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [GSoC] [PATCH] submodule--helper: introduce add-config subcommand
  2021-07-22 11:21 [GSoC] [PATCH] submodule--helper: introduce add-config subcommand Atharva Raykar
                   ` (2 preceding siblings ...)
  2021-07-22 13:31 ` Atharva Raykar
@ 2021-07-23 20:36 ` Junio C Hamano
  2021-07-24  9:59   ` Atharva Raykar
  2021-07-28 11:53 ` [GSoC] [PATCH v2] " Atharva Raykar
  4 siblings, 1 reply; 13+ messages in thread
From: Junio C Hamano @ 2021-07-23 20:36 UTC (permalink / raw)
  To: Atharva Raykar
  Cc: git, Emily Shaffer, Jonathan Nieder, Christian Couder,
	Shourya Shukla, Kaartic Sivaraam, Eric Sunshine,
	Prathamesh Chavan, Đoàn Trần Công Danh,
	Rafael Silva

Atharva Raykar <raykar.ath@gmail.com> writes:

> This is meant to be a faithful conversion from shell to C, with only one
> minor change: A warning is emitted if no value is specified in
> 'submodule.active', ie, the config looks like: "[submodule] active\n",

... meaning that submodule.active is *not* a boolean.

In scripted porcelain, I think we let "submodule--helper is-active"
to inspect its value(s), which may end up feeding a NULL as one of
the pathspec elements when calling parse_pathspec(), so this may
even be a bugfix.  In any case, I think "submodule--helper
is-active" is where such a fix should happen and in the longer term,
the code that says "if submodule.active exists, ask is-active and
set submodule.*.active accordingly, otherwise activate everything"
we see in this patch should be simplified to always ask is-active
and let is-active worry about cases like missing submodule.active
and submodule.active being valueless true, so let's not worry too
much about what happens in this patch, because it needs to be
cleaned up anyway after the dust settles.

> diff --git a/builtin/submodule--helper.c b/builtin/submodule--helper.c
> index 862053c9f2..9658804d24 100644
> --- a/builtin/submodule--helper.c
> +++ b/builtin/submodule--helper.c
> @@ -2936,6 +2936,130 @@ static int add_clone(int argc, const char **argv, const char *prefix)
>  	return 0;
>  }
>  
> +static void config_submodule_in_gitmodules(const char *name, const char *var, const char *value)
> +{
> +	char *key;
> +
> +	if (!is_writing_gitmodules_ok())
> +		die(_("please make sure that the .gitmodules file is in the working tree"));
> +
> +	key = xstrfmt("submodule.%s.%s", name, var);
> +	config_set_in_gitmodules_file_gently(key, value);

This uses _gently() to avoid dying, but does it discard error return
and hide it from our callers?

> +	free(key);
> +}
> +
> +static void configure_added_submodule(struct add_data *add_data)
> +{
> +	char *key, *submod_pathspec = NULL;
> +	struct child_process add_submod = CHILD_PROCESS_INIT;
> +	struct child_process add_gitmodules = CHILD_PROCESS_INIT;
> +	int pathspec_key_exists, activate = 0;
> +
> +	key = xstrfmt("submodule.%s.url", add_data->sm_name);
> +	git_config_set_gently(key, add_data->realrepo);
> +	free(key);
> +
> +	add_submod.git_cmd = 1;
> +	strvec_pushl(&add_submod.args, "add",
> +		     "--no-warn-embedded-repo", NULL);
> +	if (add_data->force)
> +		strvec_push(&add_submod.args, "--force");
> +	strvec_pushl(&add_submod.args, "--", add_data->sm_path, NULL);
> +
> +	if (run_command(&add_submod))
> +		die(_("Failed to add submodule '%s'"), add_data->sm_path);
> +
> +	config_submodule_in_gitmodules(add_data->sm_name, "path", add_data->sm_path);
> +	config_submodule_in_gitmodules(add_data->sm_name, "url", add_data->repo);
> +	if (add_data->branch)
> +		config_submodule_in_gitmodules(add_data->sm_name,
> +					       "branch", add_data->branch);

A failure in any of the above in the scripted version used to result
in "failed to register submodule" error, but they are now ignored.
Intended?

> +	add_gitmodules.git_cmd = 1;
> +	strvec_pushl(&add_gitmodules.args,
> +		     "add", "--force", "--", ".gitmodules", NULL);
> +
> +	if (run_command(&add_gitmodules))
> +		die(_("Failed to register submodule '%s'"), add_data->sm_path);
> +
> +	/*
> +	 * NEEDSWORK: In a multi-working-tree world this needs to be
> +	 * set in the per-worktree config.
> +	 */
> +	pathspec_key_exists = !git_config_get_string("submodule.active",
> +						     &submod_pathspec);
> +	if (pathspec_key_exists && !submod_pathspec) {
> +		warning(_("The submodule.active configuration exists, but the "
> +			  "pathspec was unset. If the submodule is not already "
> +			  "active, the value of submodule.%s.active will be "
> +			  "be set to 'true'."), add_data->sm_name);
> +		activate = 1;
> +	}
> +
> +	/*
> +	 * If submodule.active does not exist, or if the pathspec was unset,
> +	 * we will activate this module unconditionally.
> +	 *
> +	 * Otherwise, we ask is_submodule_active(), which iterates
> +	 * through all the values of 'submodule.active' to determine
> +	 * if this module is already active.
> +	 */
> +	if (!pathspec_key_exists || activate ||
> +	    !is_submodule_active(the_repository, add_data->sm_path)) {
> +		key = xstrfmt("submodule.%s.active", add_data->sm_name);
> +		git_config_set_gently(key, "true");
> +		free(key);
> +	}

This is the part I discussed earlier.  I think this "optimize so
that we can avoid calling is_submodule_active()" should go away in
the long run.  In the current code, is_submodule_active() needs to
find out the value of submodule.active itself anyway, so the
short-circuit is not working as an optimization.

Other than the "what happens when we see errors?" issue, the patch
looks quite straight-forward rewrite from the scripted version.

Thanks.

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [GSoC] [PATCH] submodule--helper: introduce add-config subcommand
  2021-07-23 20:36 ` Junio C Hamano
@ 2021-07-24  9:59   ` Atharva Raykar
  0 siblings, 0 replies; 13+ messages in thread
From: Atharva Raykar @ 2021-07-24  9:59 UTC (permalink / raw)
  To: Junio C Hamano
  Cc: git, Emily Shaffer, Jonathan Nieder, Christian Couder,
	Shourya Shukla, Kaartic Sivaraam, Eric Sunshine,
	Prathamesh Chavan, Đoàn Trần Công Danh,
	Rafael Silva

On 24/07/21 02:06, Junio C Hamano wrote:
> Atharva Raykar <raykar.ath@gmail.com> writes:
> 
>> This is meant to be a faithful conversion from shell to C, with only one
>> minor change: A warning is emitted if no value is specified in
>> 'submodule.active', ie, the config looks like: "[submodule] active\n",
> 
> ... meaning that submodule.active is *not* a boolean.
> 
> In scripted porcelain, I think we let "submodule--helper is-active"
> to inspect its value(s), which may end up feeding a NULL as one of
> the pathspec elements when calling parse_pathspec(), so this may
> even be a bugfix.  In any case, I think "submodule--helper
> is-active" is where such a fix should happen and in the longer term,
> the code that says "if submodule.active exists, ask is-active and
> set submodule.*.active accordingly, otherwise activate everything"
> we see in this patch should be simplified to always ask is-active
> and let is-active worry about cases like missing submodule.active
> and submodule.active being valueless true, so let's not worry too
> much about what happens in this patch, because it needs to be
> cleaned up anyway after the dust settles.

Okay, that makes sense. I'll remove the extra warning and special
handling and make it a bug-for-bug conversion for now, so that the
cleanup can be handled afterwards. It will probably be more fitting to
have this change 'is_submodule_active()' afterwards. I'll maybe add a
NEEDSWORK comment for now?

>> diff --git a/builtin/submodule--helper.c b/builtin/submodule--helper.c
>> index 862053c9f2..9658804d24 100644
>> --- a/builtin/submodule--helper.c
>> +++ b/builtin/submodule--helper.c
>> @@ -2936,6 +2936,130 @@ static int add_clone(int argc, const char **argv, const char *prefix)
>>  	return 0;
>>  }
>>  
>> +static void config_submodule_in_gitmodules(const char *name, const char *var, const char *value)
>> +{
>> +	char *key;
>> +
>> +	if (!is_writing_gitmodules_ok())
>> +		die(_("please make sure that the .gitmodules file is in the working tree"));
>> +
>> +	key = xstrfmt("submodule.%s.%s", name, var);
>> +	config_set_in_gitmodules_file_gently(key, value);
> 
> This uses _gently() to avoid dying, but does it discard error return
> and hide it from our callers?
> 
>> +	free(key);
>> +}
>> +
>> +static void configure_added_submodule(struct add_data *add_data)
>> +{
>> +	char *key, *submod_pathspec = NULL;
>> +	struct child_process add_submod = CHILD_PROCESS_INIT;
>> +	struct child_process add_gitmodules = CHILD_PROCESS_INIT;
>> +	int pathspec_key_exists, activate = 0;
>> +
>> +	key = xstrfmt("submodule.%s.url", add_data->sm_name);
>> +	git_config_set_gently(key, add_data->realrepo);
>> +	free(key);
>> +
>> +	add_submod.git_cmd = 1;
>> +	strvec_pushl(&add_submod.args, "add",
>> +		     "--no-warn-embedded-repo", NULL);
>> +	if (add_data->force)
>> +		strvec_push(&add_submod.args, "--force");
>> +	strvec_pushl(&add_submod.args, "--", add_data->sm_path, NULL);
>> +
>> +	if (run_command(&add_submod))
>> +		die(_("Failed to add submodule '%s'"), add_data->sm_path);
>> +
>> +	config_submodule_in_gitmodules(add_data->sm_name, "path", add_data->sm_path);
>> +	config_submodule_in_gitmodules(add_data->sm_name, "url", add_data->repo);
>> +	if (add_data->branch)
>> +		config_submodule_in_gitmodules(add_data->sm_name,
>> +					       "branch", add_data->branch);
> 
> A failure in any of the above in the scripted version used to result
> in "failed to register submodule" error, but they are now ignored.
> Intended?

This was not intended. I think I did not notice those expressions were
chained in the scripted version. I'll fix this.

>> +	add_gitmodules.git_cmd = 1;
>> +	strvec_pushl(&add_gitmodules.args,
>> +		     "add", "--force", "--", ".gitmodules", NULL);
>> +
>> +	if (run_command(&add_gitmodules))
>> +		die(_("Failed to register submodule '%s'"), add_data->sm_path);
>> +
>> +	/*
>> +	 * NEEDSWORK: In a multi-working-tree world this needs to be
>> +	 * set in the per-worktree config.
>> +	 */
>> +	pathspec_key_exists = !git_config_get_string("submodule.active",
>> +						     &submod_pathspec);
>> +	if (pathspec_key_exists && !submod_pathspec) {
>> +		warning(_("The submodule.active configuration exists, but the "
>> +			  "pathspec was unset. If the submodule is not already "
>> +			  "active, the value of submodule.%s.active will be "
>> +			  "be set to 'true'."), add_data->sm_name);
>> +		activate = 1;
>> +	}
>> +
>> +	/*
>> +	 * If submodule.active does not exist, or if the pathspec was unset,
>> +	 * we will activate this module unconditionally.
>> +	 *
>> +	 * Otherwise, we ask is_submodule_active(), which iterates
>> +	 * through all the values of 'submodule.active' to determine
>> +	 * if this module is already active.
>> +	 */
>> +	if (!pathspec_key_exists || activate ||
>> +	    !is_submodule_active(the_repository, add_data->sm_path)) {
>> +		key = xstrfmt("submodule.%s.active", add_data->sm_name);
>> +		git_config_set_gently(key, "true");
>> +		free(key);
>> +	}
> 
> This is the part I discussed earlier.  I think this "optimize so
> that we can avoid calling is_submodule_active()" should go away in
> the long run.  In the current code, is_submodule_active() needs to
> find out the value of submodule.active itself anyway, so the
> short-circuit is not working as an optimization.

Agreed.

> Other than the "what happens when we see errors?" issue, the patch
> looks quite straight-forward rewrite from the scripted version.
> 
> Thanks.
> 


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [GSoC] [PATCH v2] submodule--helper: introduce add-config subcommand
  2021-07-22 11:21 [GSoC] [PATCH] submodule--helper: introduce add-config subcommand Atharva Raykar
                   ` (3 preceding siblings ...)
  2021-07-23 20:36 ` Junio C Hamano
@ 2021-07-28 11:53 ` Atharva Raykar
  2021-07-28 19:51   ` Kaartic Sivaraam
  2021-08-01  6:33   ` [GSoC] [PATCH v3] " Atharva Raykar
  4 siblings, 2 replies; 13+ messages in thread
From: Atharva Raykar @ 2021-07-28 11:53 UTC (permalink / raw)
  To: git
  Cc: Atharva Raykar, Ævar Arnfjörð Bjarmason,
	Emily Shaffer, Jonathan Nieder, Junio C Hamano, Christian Couder,
	Shourya Shukla, Kaartic Sivaraam, Eric Sunshine,
	Prathamesh Chavan, Đoàn Trần Công Danh,
	Rafael Silva

Add a new "add-config" subcommand to `git submodule--helper` with the
goal of converting part of the shell code in git-submodule.sh related to
`git submodule add` into C code. This new subcommand sets the
configuration variables of a newly added submodule, by registering the
url in local git config, as well as the submodule name and path in the
.gitmodules file. It also sets 'submodule.<name>.active' to "true" if
the submodule path has not already been covered by any pathspec
specified in 'submodule.active'.

This is meant to be a faithful conversion from shell to C, with only one
minor change: A warning is emitted if no value is specified in
'submodule.active', ie, the config looks like: "[submodule] active\n",
because it is an invalid configuration. It would be helpful to let the
user know that the pathspec is unset, and the value of
'submodule.<name>.active' might be set to 'true' so that they can
rectify their configuration and prevent future surprises (especially
given that the latter variable has a higher priority than the former).

The structure of the conditional to check if we need to set the 'active'
toggle looks different from the shell version -- but behaves the same.
The change was made to decrease code duplication. A comment has been
added to explain that only one value of 'submodule.active' is obtained
to check if we need to call is_submodule_active() at all.

Signed-off-by: Atharva Raykar <raykar.ath@gmail.com>
Mentored-by: Christian Couder <christian.couder@gmail.com>
Mentored-by: Shourya Shukla <periperidip@gmail.com>
Based-on-patch-by: Shourya Shukla <periperidip@gmail.com>
Based-on-patch-by: Prathamesh Chavan <pc44800@gmail.com>
---

Changes since v1:

* Remove the extra handling for the case where submodule.active is valueless, as
  Junio pointed out that it is better dealt with in a cleanup patch.

* Do not discard error returns from 'config_submodule_in_gitmodules()', and also
  ensure that any calls to it in 'configure_added_submodule()' die on failure,
  like with the original shell porcelain.

* Style fixes.

 builtin/submodule--helper.c | 120 ++++++++++++++++++++++++++++++++++++
 git-submodule.sh            |  28 +--------
 2 files changed, 121 insertions(+), 27 deletions(-)

diff --git a/builtin/submodule--helper.c b/builtin/submodule--helper.c
index 862053c9f2..60b47492cb 100644
--- a/builtin/submodule--helper.c
+++ b/builtin/submodule--helper.c
@@ -2936,6 +2936,125 @@ static int add_clone(int argc, const char **argv, const char *prefix)
 	return 0;
 }
 
+static int config_submodule_in_gitmodules(const char *name, const char *var, const char *value)
+{
+	char *key;
+	int ret;
+
+	if (!is_writing_gitmodules_ok())
+		die(_("please make sure that the .gitmodules file is in the working tree"));
+
+	key = xstrfmt("submodule.%s.%s", name, var);
+	ret = config_set_in_gitmodules_file_gently(key, value);
+	free(key);
+
+	return ret;
+}
+
+static void configure_added_submodule(struct add_data *add_data)
+{
+	char *key;
+	char *val = NULL;
+	struct child_process add_submod = CHILD_PROCESS_INIT;
+	struct child_process add_gitmodules = CHILD_PROCESS_INIT;
+
+	key = xstrfmt("submodule.%s.url", add_data->sm_name);
+	git_config_set_gently(key, add_data->realrepo);
+	free(key);
+
+	add_submod.git_cmd = 1;
+	strvec_pushl(&add_submod.args, "add",
+		     "--no-warn-embedded-repo", NULL);
+	if (add_data->force)
+		strvec_push(&add_submod.args, "--force");
+	strvec_pushl(&add_submod.args, "--", add_data->sm_path, NULL);
+
+	if (run_command(&add_submod))
+		die(_("Failed to add submodule '%s'"), add_data->sm_path);
+
+	if (config_submodule_in_gitmodules(add_data->sm_name, "path", add_data->sm_path) ||
+	    config_submodule_in_gitmodules(add_data->sm_name, "url", add_data->repo))
+		die(_("Failed to register submodule '%s'"), add_data->sm_path);
+
+	if (add_data->branch)
+		if (config_submodule_in_gitmodules(add_data->sm_name,
+						   "branch", add_data->branch))
+			die(_("Failed to register submodule '%s'"), add_data->sm_path);
+
+	add_gitmodules.git_cmd = 1;
+	strvec_pushl(&add_gitmodules.args,
+		     "add", "--force", "--", ".gitmodules", NULL);
+
+	if (run_command(&add_gitmodules))
+		die(_("Failed to register submodule '%s'"), add_data->sm_path);
+
+	/*
+	 * NEEDSWORK: In a multi-working-tree world this needs to be
+	 * set in the per-worktree config.
+	 *
+	 * If submodule.active does not exist, or if the pathspec was unset,
+	 * we will activate this module unconditionally.
+	 *
+	 * Otherwise, we ask is_submodule_active(), which iterates
+	 * through all the values of 'submodule.active' to determine
+	 * if this module is already active.
+	 */
+	if (git_config_get_string("submodule.active", &val) ||
+	    !is_submodule_active(the_repository, add_data->sm_path)) {
+		key = xstrfmt("submodule.%s.active", add_data->sm_name);
+		git_config_set_gently(key, "true");
+		free(key);
+	}
+}
+
+static int add_config(int argc, const char **argv, const char *prefix)
+{
+	int force = 0;
+	struct add_data add_data = ADD_DATA_INIT;
+
+	struct option options[] = {
+		OPT_STRING('b', "branch", &add_data.branch,
+			   N_("branch"),
+			   N_("branch of repository to store in "
+			      "the submodule configuration")),
+		OPT_STRING(0, "url", &add_data.repo,
+			   N_("string"),
+			   N_("url to clone submodule from")),
+		OPT_STRING(0, "resolved-url", &add_data.realrepo,
+			   N_("string"),
+			   N_("url to clone the submodule from, after it has "
+			      "been dereferenced relative to parent's url, "
+			      "in the case where <url> is a relative url")),
+		OPT_STRING(0, "path", &add_data.sm_path,
+			   N_("path"),
+			   N_("where the new submodule will be cloned to")),
+		OPT_STRING(0, "name", &add_data.sm_name,
+			   N_("string"),
+			   N_("name of the new submodule")),
+		OPT__FORCE(&force, N_("allow adding an otherwise ignored submodule path"),
+			   PARSE_OPT_NOCOMPLETE),
+		OPT_END()
+	};
+
+	const char *const usage[] = {
+		N_("git submodule--helper add-config "
+		   "[--force|-f] [--branch|-b <branch>] "
+		   "--url <url> --resolved-url <resolved-url> "
+		   "--path <path> --name <name>"),
+		NULL
+	};
+
+	argc = parse_options(argc, argv, prefix, options, usage, 0);
+
+	if (argc)
+		usage_with_options(usage, options);
+
+	add_data.force = !!force;
+	configure_added_submodule(&add_data);
+
+	return 0;
+}
+
 #define SUPPORT_SUPER_PREFIX (1<<0)
 
 struct cmd_struct {
@@ -2949,6 +3068,7 @@ static struct cmd_struct commands[] = {
 	{"name", module_name, 0},
 	{"clone", module_clone, 0},
 	{"add-clone", add_clone, 0},
+	{"add-config", add_config, 0},
 	{"update-module-mode", module_update_module_mode, 0},
 	{"update-clone", update_clone, 0},
 	{"ensure-core-worktree", ensure_core_worktree, 0},
diff --git a/git-submodule.sh b/git-submodule.sh
index 053daf3724..f713cb113c 100755
--- a/git-submodule.sh
+++ b/git-submodule.sh
@@ -242,33 +242,7 @@ cmd_add()
 	fi
 
 	git submodule--helper add-clone ${GIT_QUIET:+--quiet} ${force:+"--force"} ${progress:+"--progress"} ${branch:+--branch "$branch"} --prefix "$wt_prefix" --path "$sm_path" --name "$sm_name" --url "$realrepo" ${reference:+"$reference"} ${dissociate:+"--dissociate"} ${depth:+"$depth"} || exit
-	git config submodule."$sm_name".url "$realrepo"
-
-	git add --no-warn-embedded-repo $force "$sm_path" ||
-	die "fatal: $(eval_gettext "Failed to add submodule '\$sm_path'")"
-
-	git submodule--helper config submodule."$sm_name".path "$sm_path" &&
-	git submodule--helper config submodule."$sm_name".url "$repo" &&
-	if test -n "$branch"
-	then
-		git submodule--helper config submodule."$sm_name".branch "$branch"
-	fi &&
-	git add --force .gitmodules ||
-	die "fatal: $(eval_gettext "Failed to register submodule '\$sm_path'")"
-
-	# NEEDSWORK: In a multi-working-tree world, this needs to be
-	# set in the per-worktree config.
-	if git config --get submodule.active >/dev/null
-	then
-		# If the submodule being adding isn't already covered by the
-		# current configured pathspec, set the submodule's active flag
-		if ! git submodule--helper is-active "$sm_path"
-		then
-			git config submodule."$sm_name".active "true"
-		fi
-	else
-		git config submodule."$sm_name".active "true"
-	fi
+	git submodule--helper add-config ${force:+--force} ${branch:+--branch "$branch"} --url "$repo" --resolved-url "$realrepo" --path "$sm_path" --name "$sm_name"
 }
 
 #
-- 
2.32.0


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* Re: [GSoC] [PATCH v2] submodule--helper: introduce add-config subcommand
  2021-07-28 11:53 ` [GSoC] [PATCH v2] " Atharva Raykar
@ 2021-07-28 19:51   ` Kaartic Sivaraam
       [not found]     ` <d206fa7a-a450-552b-824c-518ee481c480@gmail.com>
  2021-08-01  6:33   ` [GSoC] [PATCH v3] " Atharva Raykar
  1 sibling, 1 reply; 13+ messages in thread
From: Kaartic Sivaraam @ 2021-07-28 19:51 UTC (permalink / raw)
  To: Atharva Raykar
  Cc: Ævar Arnfjörð Bjarmason, Emily Shaffer,
	Jonathan Nieder, Junio C Hamano, Christian Couder, Shourya Shukla,
	Eric Sunshine, Prathamesh Chavan,
	Đoàn Trần Công Danh, Rafael Silva, git

Hi Atharva,

On 28/07/21 5:23 pm, Atharva Raykar wrote:
> Add a new "add-config" subcommand to `git submodule--helper` with the
> goal of converting part of the shell code in git-submodule.sh related to
> `git submodule add` into C code. This new subcommand sets the
> configuration variables of a newly added submodule, by registering the
> url in local git config, as well as the submodule name and path in the
> .gitmodules file. It also sets 'submodule.<name>.active' to "true" if
> the submodule path has not already been covered by any pathspec
> specified in 'submodule.active'.
> 
> This is meant to be a faithful conversion from shell to C, with only one
> minor change: A warning is emitted if no value is specified in
> 'submodule.active', ie, the config looks like: "[submodule] active\n",
> because it is an invalid configuration. It would be helpful to let the
> user know that the pathspec is unset, and the value of
> 'submodule.<name>.active' might be set to 'true' so that they can
> rectify their configuration and prevent future surprises (especially
> given that the latter variable has a higher priority than the former).
> 

v2 doesn't have the warning that this paragraph describes. So, this could
be dropped.

> [ snip ]
>
> A comment has been
> added to explain that only one value of 'submodule.active' is obtained
> to check if we need to call is_submodule_active() at all.
>

This could be me likely not understanding this properly. Anyways, where
is this comment in the code? I only see a comment about how 'is_submodule_active'
iterates over all values. I couldn't find any "one value" reference in it.
  
> Signed-off-by: Atharva Raykar <raykar.ath@gmail.com>
> Mentored-by: Christian Couder <christian.couder@gmail.com>
> Mentored-by: Shourya Shukla <periperidip@gmail.com>
> Based-on-patch-by: Shourya Shukla <periperidip@gmail.com>
> Based-on-patch-by: Prathamesh Chavan <pc44800@gmail.com>
> ---
> 
> Changes since v1:
> 
> * Remove the extra handling for the case where submodule.active is valueless, as
>    Junio pointed out that it is better dealt with in a cleanup patch.
> 
> * Do not discard error returns from 'config_submodule_in_gitmodules()', and also
>    ensure that any calls to it in 'configure_added_submodule()' die on failure,
>    like with the original shell porcelain.
> 
> * Style fixes.
> 
>   builtin/submodule--helper.c | 120 ++++++++++++++++++++++++++++++++++++
>   git-submodule.sh            |  28 +--------
>   2 files changed, 121 insertions(+), 27 deletions(-)
> 
> diff --git a/builtin/submodule--helper.c b/builtin/submodule--helper.c
> index 862053c9f2..60b47492cb 100644
> --- a/builtin/submodule--helper.c
> +++ b/builtin/submodule--helper.c
> @@ -2936,6 +2936,125 @@ static int add_clone(int argc, const char **argv, const char *prefix)
>   	return 0;
>   }
>   
> +static int config_submodule_in_gitmodules(const char *name, const char *var, const char *value)
> +{
> +	char *key;
> +	int ret;
> +
> +	if (!is_writing_gitmodules_ok())
> +		die(_("please make sure that the .gitmodules file is in the working tree"));
> +
> +	key = xstrfmt("submodule.%s.%s", name, var);
> +	ret = config_set_in_gitmodules_file_gently(key, value);
> +	free(key);
> +
> +	return ret;
> +}
> +
> +static void configure_added_submodule(struct add_data *add_data)
> +{
> +	char *key;
> +	char *val = NULL;
> +	struct child_process add_submod = CHILD_PROCESS_INIT;
> +	struct child_process add_gitmodules = CHILD_PROCESS_INIT;
> +
> +	key = xstrfmt("submodule.%s.url", add_data->sm_name);
> +	git_config_set_gently(key, add_data->realrepo);
> +	free(key);
> +
> +	add_submod.git_cmd = 1;
> +	strvec_pushl(&add_submod.args, "add",
> +		     "--no-warn-embedded-repo", NULL);
> +	if (add_data->force)
> +		strvec_push(&add_submod.args, "--force");
> +	strvec_pushl(&add_submod.args, "--", add_data->sm_path, NULL);
> +
> +	if (run_command(&add_submod))
> +		die(_("Failed to add submodule '%s'"), add_data->sm_path);
> +

> +	if (config_submodule_in_gitmodules(add_data->sm_name, "path", add_data->sm_path) ||
> +	    config_submodule_in_gitmodules(add_data->sm_name, "url", add_data->repo))
> +		die(_("Failed to register submodule '%s'"), add_data->sm_path);
> +
> +	if (add_data->branch)
> +		if (config_submodule_in_gitmodules(add_data->sm_name,
> +						   "branch", add_data->branch))
> +			die(_("Failed to register submodule '%s'"), add_data->sm_path);
> +
> +	add_gitmodules.git_cmd = 1;
> +	strvec_pushl(&add_gitmodules.args,
> +		     "add", "--force", "--", ".gitmodules", NULL);
> +
> +	if (run_command(&add_gitmodules))
> +		die(_("Failed to register submodule '%s'"), add_data->sm_path);
> +

We could restructure this portion like so ...

-- 8< --
         add_gitmodules.git_cmd = 1;
         strvec_pushl(&add_gitmodules.args,
                      "add", "--force", "--", ".gitmodules", NULL);
                                                                                                                                                                                              
         if (config_submodule_in_gitmodules(add_data->sm_name, "path", add_data->sm_path) ||
             config_submodule_in_gitmodules(add_data->sm_name, "url", add_data->repo) ||
             (add_data->branch && config_submodule_in_gitmodules(add_data->sm_name,
                                                                 "branch", add_data->branch)) ||
             run_command(&add_gitmodules))
                 die(_("Failed to register submodule '%s'"), add_data->sm_path);
-- >8 --

.. to avoid the redundant "Failed to register submodule ..." error message.
Whether the restructured version has poor readability or not is debatable, though.
                           
> +	/*
> +	 * NEEDSWORK: In a multi-working-tree world this needs to be
> +	 * set in the per-worktree config.
> +	 *

It might be a good idea to differentiate the NEEDSWORK comment from an informative
comment about the code snippet.

Also, you could add another NEEDSWORK/TODO comment regarding the change
to 'is_submodule_active' which you mention before[1].

[1]: https://public-inbox.org/git/a6de518a-d4a2-5a2b-28e2-ca8b62f2c85b@gmail.com/

> +	 * If submodule.active does not exist, or if the pathspec was unset,
> +	 * we will activate this module unconditionally.
> +	 *
> +	 * Otherwise, we ask is_submodule_active(), which iterates
> +	 * through all the values of 'submodule.active' to determine
> +	 * if this module is already active.
> +	 */
> +	if (git_config_get_string("submodule.active", &val) ||
> +	    !is_submodule_active(the_repository, add_data->sm_path)) {
> +		key = xstrfmt("submodule.%s.active", add_data->sm_name);
> +		git_config_set_gently(key, "true");
> +		free(key);
> +	}

It might be a good idea to expand this condition similar to the scripted version,
to retain the following comment which seems like a useful one to keep.

> [ snip ]
>
> -	if git config --get submodule.active >/dev/null
> -	then
> -		# If the submodule being adding isn't already covered by the
> -		# current configured pathspec, set the submodule's active flag
> -		if ! git submodule--helper is-active "$sm_path"
> -		then
> -			git config submodule."$sm_name".active "true"
> -		fi
> -	else
> -		git config submodule."$sm_name".active "true"
> -	fi

> +	git submodule--helper add-config ${force:+--force} ${branch:+--branch "$branch"} --url "$repo" --resolved-url "$realrepo" --path "$sm_path" --name "$sm_name"
>   }
>   
>   #
> 

-- 
Sivaraam

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [GSoC] [PATCH v2] submodule--helper: introduce add-config subcommand
       [not found]     ` <d206fa7a-a450-552b-824c-518ee481c480@gmail.com>
@ 2021-07-29 19:30       ` Kaartic Sivaraam
  2021-07-30  6:22         ` Atharva Raykar
  0 siblings, 1 reply; 13+ messages in thread
From: Kaartic Sivaraam @ 2021-07-29 19:30 UTC (permalink / raw)
  To: Atharva Raykar
  Cc: Ævar Arnfjörð Bjarmason, Emily Shaffer,
	Jonathan Nieder, Junio C Hamano, Christian Couder, Shourya Shukla,
	Eric Sunshine, Prathamesh Chavan,
	Đoàn Trần Công Danh, Rafael Silva, git

On 29/07/21 11:05 pm, Atharva Raykar wrote:
> (apologies for the reflowed text, seems to only happen when replying to
> this message?? Won't affect this response much though)
> 

In case you're using thunderbird then you could see if the following helps:

http://kb.mozillazine.org/Plain_text_e-mail_%28Thunderbird%29#Flowed_format

> On 29/07/21 01:21, Kaartic Sivaraam wrote:
>> Hi Atharva,
>>
>> On 28/07/21 5:23 pm, Atharva Raykar wrote:
>>> Add a new "add-config" subcommand to `git submodule--helper` with the
>>> goal of converting part of the shell code in git-submodule.sh related to
>>> `git submodule add` into C code. This new subcommand sets the
>>> configuration variables of a newly added submodule, by registering the
>>> url in local git config, as well as the submodule name and path in the
>>> .gitmodules file. It also sets 'submodule.<name>.active' to "true" if
>>> the submodule path has not already been covered by any pathspec
>>> specified in 'submodule.active'.
>>>
>>> This is meant to be a faithful conversion from shell to C, with only one
>>> minor change: A warning is emitted if no value is specified in
>>> 'submodule.active', ie, the config looks like: "[submodule] active\n",
>>> because it is an invalid configuration. It would be helpful to let the
>>> user know that the pathspec is unset, and the value of
>>> 'submodule.<name>.active' might be set to 'true' so that they can
>>> rectify their configuration and prevent future surprises (especially
>>> given that the latter variable has a higher priority than the former).
>>>
>>
>> v2 doesn't have the warning that this paragraph describes. So, this could
>> be dropped.
> 
> My bad, looks like I forgot to edit the commit message.
> 
>>> [ snip ]
>>>
>>> A comment has been
>>> added to explain that only one value of 'submodule.active' is obtained
>>> to check if we need to call is_submodule_active() at all.
>>>
>>
>> This could be me likely not understanding this properly. Anyways, where
>> is this comment in the code? I only see a comment about how
>> 'is_submodule_active'
>> iterates over all values. I couldn't find any "one value" reference in it.
> 
> Looks like my comment does not explain it clearly. It would have made
> more sense to start the comment with "If there is no value found for
> submodule.active", but I think instead of modifying that comment (which
> is clear enough as it is), I'll make the commit message better, by
> removing the mention of the "we check one value".
> 
> It seems like the line:
> 
> 	if (git_config_get_string("submodule.active", &val)
> 
> makes it clear that a single string is being queried first. The larger
> point was about why that conditional was needed, if we were going to
> call 'is_submodule_active()' to retrieve the value anyway.
> 

Ah. Now I get the idea. A rephrasing might indeed make this clear.

>>> +    if (config_submodule_in_gitmodules(add_data->sm_name, "path", add_data->sm_path) ||
>>> +        config_submodule_in_gitmodules(add_data->sm_name, "url", add_data->repo))
>>> +        die(_("Failed to register submodule '%s'"), add_data->sm_path);
>>> +
>>> +    if (add_data->branch)
>>> +        if (config_submodule_in_gitmodules(add_data->sm_name,
>>> +                           "branch", add_data->branch))
>>> +            die(_("Failed to register submodule '%s'"), add_data->sm_path);
>>> +
>>> +    add_gitmodules.git_cmd = 1;
>>> +    strvec_pushl(&add_gitmodules.args,
>>> +             "add", "--force", "--", ".gitmodules", NULL);
>>> +
>>> +    if (run_command(&add_gitmodules))
>>> +        die(_("Failed to register submodule '%s'"), add_data->sm_path);
>>> +
>>
>> We could restructure this portion like so ...
>>
>> -- 8< --
>>          add_gitmodules.git_cmd = 1;
>>          strvec_pushl(&add_gitmodules.args,
>>                       "add", "--force", "--", ".gitmodules", NULL);
>>>                                                                                                                                           
>>          if (config_submodule_in_gitmodules(add_data->sm_name, "path", add_data->sm_path) ||
>>              config_submodule_in_gitmodules(add_data->sm_name, "url", add_data->repo) ||
>>              (add_data->branch && config_submodule_in_gitmodules(add_data->sm_name,
>>                                                                  "branch", add_data->branch)) ||
>>              run_command(&add_gitmodules))
>>                  die(_("Failed to register submodule '%s'"),
>> add_data->sm_path);
>> -- >8 --
>>
>> .. to avoid the redundant "Failed to register submodule ..." error message.
>> Whether the restructured version has poor readability or not is debatable, though.
> 
> Yeah, I felt the redundancy in this case was okay, I find that big
> conditional rather hard to read.
> 

I tried to make it as easy to read as possible but its a really long one
indeed. So, I could understand. But the redundancy bothered me a bit ;-)

>>> +    /*
>>> +     * NEEDSWORK: In a multi-working-tree world this needs to be
>>> +     * set in the per-worktree config.
>>> +     *
>>
>> It might be a good idea to differentiate the NEEDSWORK comment from an
>> informative comment about the code snippet.
> 
> Okay. I suppose you mean give this part it's own closing delimiter and
> start the next line with a new multiline comment.
> 

Yeah. I did mean this.

> If you meant something else, do let me know.
> 
>> Also, you could add another NEEDSWORK/TODO comment regarding the change
>> to 'is_submodule_active' which you mention before[1].
>>
>> [1]: https://public-inbox.org/git/a6de518a-d4a2-5a2b-28e2-ca8b62f2c85b@gmail.com/
> 
> Good point. I'll add it.
> 
>>> +     * If submodule.active does not exist, or if the pathspec was unset,
>>> +     * we will activate this module unconditionally.
>>> +     *
>>> +     * Otherwise, we ask is_submodule_active(), which iterates
>>> +     * through all the values of 'submodule.active' to determine
>>> +     * if this module is already active.
>>> +     */
>>> +    if (git_config_get_string("submodule.active", &val) ||
>>> +        !is_submodule_active(the_repository, add_data->sm_path)) {
>>> +        key = xstrfmt("submodule.%s.active", add_data->sm_name);
>>> +        git_config_set_gently(key, "true");
>>> +        free(key);
>>> +    }
>>
>> It might be a good idea to expand this condition similar to the scripted version,
>> to retain the following comment which seems like a useful one to keep.
> 
> I felt that this version had less redundant code, and hence seemed more
> readable than the expanded conditional in shell.
> 
> For comparison this is the same code imitating the shell version:
> 
> if (!git_config_get_string("submodule.active", &var) && var) {
> 
> 	/*
> 	 * If the submodule being added isn't already covered by the
> 	 * current configured pathspec, set the submodule's active flag
> 	 */
> 	if (!is_submodule_active(the_repository, info->sm_path)) {
> 		key = xstrfmt("submodule.%s.active", info->sm_name);
> 		git_config_set_gently(key, "true");
> 		free(key);
> 	}
> 
> } else {
> 	key = xstrfmt("submodule.%s.active", info->sm_name);
> 	git_config_set_gently(key, "true");
> 	free(key);
> }
> 
> It repeats the string allocation and freeing, and also is a lot more
> code to parse mentally while reading. The shorter version that I used
> does not feel more "clever" to me than this either.
> 
> As for the comment, I felt that the new one I introduced (Otherwise, we
> ask ...) covers the same ground.
> 

I think the comment you introduced only mentions that 'is_submodule_active'
iterates over configs to determine that a submodule is active. It doesn't mention
that we set the submodule's active flag if the submodule is not covered by the
current configured pathspec, which is what the original tries to convey.
Correct me if I missed anything.

> I am open to reverting to the expanded conditional, but it would be nice
> if you could help me understand the motivation behind why it should be done.
> 

I'm not against short-circuiting the conditional. I suggested expanding the conditional
so that we get a structure similar to the scripted version. That way we could keep the
original comment close to the inside conditional where it felt relevant :)

>>> [ snip ]
>>>
>>> -    if git config --get submodule.active >/dev/null
>>> -    then
>>> -        # If the submodule being adding isn't already covered by the
>>> -        # current configured pathspec, set the submodule's active flag
>>> -        if ! git submodule--helper is-active "$sm_path"
>>> -        then
>>> -            git config submodule."$sm_name".active "true"
>>> -        fi
>>> -    else
>>> -        git config submodule."$sm_name".active "true"
>>> -    fi
>>> +    git submodule--helper add-config ${force:+--force}
>>> ${branch:+--branch "$branch"} --url "$repo" --resolved-url "$realrepo"
>>> --path "$sm_path" --name "$sm_name"
>>>    }
>>>      #
>>>
>>
> 


-- 
Sivaraam

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [GSoC] [PATCH v2] submodule--helper: introduce add-config subcommand
  2021-07-29 19:30       ` Kaartic Sivaraam
@ 2021-07-30  6:22         ` Atharva Raykar
  0 siblings, 0 replies; 13+ messages in thread
From: Atharva Raykar @ 2021-07-30  6:22 UTC (permalink / raw)
  To: Kaartic Sivaraam
  Cc: Ævar Arnfjörð Bjarmason, Emily Shaffer,
	Jonathan Nieder, Junio C Hamano, Christian Couder, Shourya Shukla,
	Eric Sunshine, Prathamesh Chavan,
	Đoàn Trần Công Danh, Rafael Silva, git

On Fri, Jul 30, 2021 at 1:00 AM Kaartic Sivaraam
<kaartic.sivaraam@gmail.com> wrote:
>
> On 29/07/21 11:05 pm, Atharva Raykar wrote:
> > (apologies for the reflowed text, seems to only happen when replying to
> > this message?? Won't affect this response much though)
> >
>
> In case you're using thunderbird then you could see if the following helps:
>
> http://kb.mozillazine.org/Plain_text_e-mail_%28Thunderbird%29#Flowed_format

Yeah, I have pretty much been following the setup that is in the
git-format-patch [1] documentation. It worked fine until the last couple of
days. The mailing list is now rejecting all my mails. My guess is because
Thunderbird is forcing a 'Content-Transfer-Encoding: 7-bit' which I read causes
problems with this list [2]. Strangely, so far, this header is added only when
I send mails to git@vger.kernel.org, not elsewhere.
(sending this from GMail for now)

Here's the error message:
------8<------8<------8<------

<git@vger.kernel.org>: host 23.128.96.18[23.128.96.18] said: 550 5.7.1
    Content-Policy reject msg: Wrong MIME labeling on 8-bit character texts.
    BF:<H 0>; S229739AbhG2RfR (in reply to end of DATA command)

------8<------8<------8<------

I'll try fixing my mail situation today, and if I still have problems, I'll
bring it up on a separate thread.

[1] https://git-scm.com/docs/git-format-patch#_approach_1_add_on
[2] https://lore.kernel.org/git/alpine.DEB.2.20.1611031554100.3108@virtualbox/

> > On 29/07/21 01:21, Kaartic Sivaraam wrote:
> >> Hi Atharva,
> >>
> >> On 28/07/21 5:23 pm, Atharva Raykar wrote:
> >>> Add a new "add-config" subcommand to `git submodule--helper` with the
> >>> goal of converting part of the shell code in git-submodule.sh related to
> >>> `git submodule add` into C code. This new subcommand sets the
> >>> configuration variables of a newly added submodule, by registering the
> >>> url in local git config, as well as the submodule name and path in the
> >>> .gitmodules file. It also sets 'submodule.<name>.active' to "true" if
> >>> the submodule path has not already been covered by any pathspec
> >>> specified in 'submodule.active'.
> >>>
> >>> This is meant to be a faithful conversion from shell to C, with only one
> >>> minor change: A warning is emitted if no value is specified in
> >>> 'submodule.active', ie, the config looks like: "[submodule] active\n",
> >>> because it is an invalid configuration. It would be helpful to let the
> >>> user know that the pathspec is unset, and the value of
> >>> 'submodule.<name>.active' might be set to 'true' so that they can
> >>> rectify their configuration and prevent future surprises (especially
> >>> given that the latter variable has a higher priority than the former).
> >>>
> >>
> >> v2 doesn't have the warning that this paragraph describes. So, this could
> >> be dropped.
> >
> > My bad, looks like I forgot to edit the commit message.
> >
> >>> [ snip ]
> >>>
> >>> A comment has been
> >>> added to explain that only one value of 'submodule.active' is obtained
> >>> to check if we need to call is_submodule_active() at all.
> >>>
> >>
> >> This could be me likely not understanding this properly. Anyways, where
> >> is this comment in the code? I only see a comment about how
> >> 'is_submodule_active'
> >> iterates over all values. I couldn't find any "one value" reference in it.
> >
> > Looks like my comment does not explain it clearly. It would have made
> > more sense to start the comment with "If there is no value found for
> > submodule.active", but I think instead of modifying that comment (which
> > is clear enough as it is), I'll make the commit message better, by
> > removing the mention of the "we check one value".
> >
> > It seems like the line:
> >
> >       if (git_config_get_string("submodule.active", &val)
> >
> > makes it clear that a single string is being queried first. The larger
> > point was about why that conditional was needed, if we were going to
> > call 'is_submodule_active()' to retrieve the value anyway.
> >
>
> Ah. Now I get the idea. A rephrasing might indeed make this clear.
>
> >>> +    if (config_submodule_in_gitmodules(add_data->sm_name, "path", add_data->sm_path) ||
> >>> +        config_submodule_in_gitmodules(add_data->sm_name, "url", add_data->repo))
> >>> +        die(_("Failed to register submodule '%s'"), add_data->sm_path);
> >>> +
> >>> +    if (add_data->branch)
> >>> +        if (config_submodule_in_gitmodules(add_data->sm_name,
> >>> +                           "branch", add_data->branch))
> >>> +            die(_("Failed to register submodule '%s'"), add_data->sm_path);
> >>> +
> >>> +    add_gitmodules.git_cmd = 1;
> >>> +    strvec_pushl(&add_gitmodules.args,
> >>> +             "add", "--force", "--", ".gitmodules", NULL);
> >>> +
> >>> +    if (run_command(&add_gitmodules))
> >>> +        die(_("Failed to register submodule '%s'"), add_data->sm_path);
> >>> +
> >>
> >> We could restructure this portion like so ...
> >>
> >> -- 8< --
> >>          add_gitmodules.git_cmd = 1;
> >>          strvec_pushl(&add_gitmodules.args,
> >>                       "add", "--force", "--", ".gitmodules", NULL);
> >>>
> >>          if (config_submodule_in_gitmodules(add_data->sm_name, "path", add_data->sm_path) ||
> >>              config_submodule_in_gitmodules(add_data->sm_name, "url", add_data->repo) ||
> >>              (add_data->branch && config_submodule_in_gitmodules(add_data->sm_name,
> >>                                                                  "branch", add_data->branch)) ||
> >>              run_command(&add_gitmodules))
> >>                  die(_("Failed to register submodule '%s'"),
> >> add_data->sm_path);
> >> -- >8 --
> >>
> >> .. to avoid the redundant "Failed to register submodule ..." error message.
> >> Whether the restructured version has poor readability or not is debatable, though.
> >
> > Yeah, I felt the redundancy in this case was okay, I find that big
> > conditional rather hard to read.
> >
>
> I tried to make it as easy to read as possible but its a really long one
> indeed. So, I could understand. But the redundancy bothered me a bit ;-)
>
> >>> +    /*
> >>> +     * NEEDSWORK: In a multi-working-tree world this needs to be
> >>> +     * set in the per-worktree config.
> >>> +     *
> >>
> >> It might be a good idea to differentiate the NEEDSWORK comment from an
> >> informative comment about the code snippet.
> >
> > Okay. I suppose you mean give this part it's own closing delimiter and
> > start the next line with a new multiline comment.
> >
>
> Yeah. I did mean this.
>
> > If you meant something else, do let me know.
> >
> >> Also, you could add another NEEDSWORK/TODO comment regarding the change
> >> to 'is_submodule_active' which you mention before[1].
> >>
> >> [1]: https://public-inbox.org/git/a6de518a-d4a2-5a2b-28e2-ca8b62f2c85b@gmail.com/
> >
> > Good point. I'll add it.
> >
> >>> +     * If submodule.active does not exist, or if the pathspec was unset,
> >>> +     * we will activate this module unconditionally.
> >>> +     *
> >>> +     * Otherwise, we ask is_submodule_active(), which iterates
> >>> +     * through all the values of 'submodule.active' to determine
> >>> +     * if this module is already active.
> >>> +     */
> >>> +    if (git_config_get_string("submodule.active", &val) ||
> >>> +        !is_submodule_active(the_repository, add_data->sm_path)) {
> >>> +        key = xstrfmt("submodule.%s.active", add_data->sm_name);
> >>> +        git_config_set_gently(key, "true");
> >>> +        free(key);
> >>> +    }
> >>
> >> It might be a good idea to expand this condition similar to the scripted version,
> >> to retain the following comment which seems like a useful one to keep.
> >
> > I felt that this version had less redundant code, and hence seemed more
> > readable than the expanded conditional in shell.
> >
> > For comparison this is the same code imitating the shell version:
> >
> > if (!git_config_get_string("submodule.active", &var) && var) {
> >
> >       /*
> >        * If the submodule being added isn't already covered by the
> >        * current configured pathspec, set the submodule's active flag
> >        */
> >       if (!is_submodule_active(the_repository, info->sm_path)) {
> >               key = xstrfmt("submodule.%s.active", info->sm_name);
> >               git_config_set_gently(key, "true");
> >               free(key);
> >       }
> >
> > } else {
> >       key = xstrfmt("submodule.%s.active", info->sm_name);
> >       git_config_set_gently(key, "true");
> >       free(key);
> > }
> >
> > It repeats the string allocation and freeing, and also is a lot more
> > code to parse mentally while reading. The shorter version that I used
> > does not feel more "clever" to me than this either.
> >
> > As for the comment, I felt that the new one I introduced (Otherwise, we
> > ask ...) covers the same ground.
> >
>
> I think the comment you introduced only mentions that 'is_submodule_active'
> iterates over configs to determine that a submodule is active. It doesn't mention
> that we set the submodule's active flag if the submodule is not covered by the
> current configured pathspec, which is what the original tries to convey.
> Correct me if I missed anything.
>
> > I am open to reverting to the expanded conditional, but it would be nice
> > if you could help me understand the motivation behind why it should be done.
> >
>
> I'm not against short-circuiting the conditional. I suggested expanding the conditional
> so that we get a structure similar to the scripted version. That way we could keep the
> original comment close to the inside conditional where it felt relevant :)

Ah okay, so the reason is so that we could keep the structure similar
to retain the
comment? Okay, I'll change that.

> >>> [ snip ]
> >>>
> >>> -    if git config --get submodule.active >/dev/null
> >>> -    then
> >>> -        # If the submodule being adding isn't already covered by the
> >>> -        # current configured pathspec, set the submodule's active flag
> >>> -        if ! git submodule--helper is-active "$sm_path"
> >>> -        then
> >>> -            git config submodule."$sm_name".active "true"
> >>> -        fi
> >>> -    else
> >>> -        git config submodule."$sm_name".active "true"
> >>> -    fi
> >>> +    git submodule--helper add-config ${force:+--force}
> >>> ${branch:+--branch "$branch"} --url "$repo" --resolved-url "$realrepo"
> >>> --path "$sm_path" --name "$sm_name"
> >>>    }
> >>>      #
> >>>
> >>
> >
>
>
> --
> Sivaraam

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [GSoC] [PATCH v3] submodule--helper: introduce add-config subcommand
  2021-07-28 11:53 ` [GSoC] [PATCH v2] " Atharva Raykar
  2021-07-28 19:51   ` Kaartic Sivaraam
@ 2021-08-01  6:33   ` Atharva Raykar
  2021-08-05 18:25     ` Kaartic Sivaraam
  1 sibling, 1 reply; 13+ messages in thread
From: Atharva Raykar @ 2021-08-01  6:33 UTC (permalink / raw)
  To: git
  Cc: Atharva Raykar, Ævar Arnfjörð Bjarmason,
	Emily Shaffer, Jonathan Nieder, Junio C Hamano, Christian Couder,
	Shourya Shukla, Kaartic Sivaraam, Eric Sunshine,
	Prathamesh Chavan, Đoàn Trần Công Danh,
	Rafael Silva

Add a new "add-config" subcommand to `git submodule--helper` with the
goal of converting part of the shell code in git-submodule.sh related to
`git submodule add` into C code. This new subcommand sets the
configuration variables of a newly added submodule, by registering the
url in local git config, as well as the submodule name and path in the
.gitmodules file. It also sets 'submodule.<name>.active' to "true" if
the submodule path has not already been covered by any pathspec
specified in 'submodule.active'.

This is meant to be a faithful conversion from shell to C, although we
add comments to areas that could be improved in future patches, after
the conversion has settled.

Signed-off-by: Atharva Raykar <raykar.ath@gmail.com>
Mentored-by: Christian Couder <christian.couder@gmail.com>
Mentored-by: Shourya Shukla <periperidip@gmail.com>
Based-on-patch-by: Shourya Shukla <periperidip@gmail.com>
Based-on-patch-by: Prathamesh Chavan <pc44800@gmail.com>
---

Changes since v2:

* Change the commit message, which erroneously still spoke about a warning that
  has since been removed.

* Change the structure of the code that checks if a submodule is active, so that
  it more closely resembles the conditional in the original shell version, and
  preserves the original comments.

* Add NEEDSWORK comments, one to state the future intention of removing the
  check for 'submodule.active' before anyway calling is_submodule_active().
  The other comment is to state the intention of adding a warning in a future
  patch when 'is_submodule_active()' reads a valueless 'submodule.active'.

Fetch-it-via:
git fetch https://github.com/tfidfwastaken/git.git submodule-helper-add-config-3

 builtin/submodule--helper.c | 128 ++++++++++++++++++++++++++++++++++++
 git-submodule.sh            |  28 +-------
 submodule.c                 |   5 ++
 3 files changed, 134 insertions(+), 27 deletions(-)

diff --git a/builtin/submodule--helper.c b/builtin/submodule--helper.c
index 862053c9f2..791ceeb63e 100644
--- a/builtin/submodule--helper.c
+++ b/builtin/submodule--helper.c
@@ -2936,6 +2936,133 @@ static int add_clone(int argc, const char **argv, const char *prefix)
 	return 0;
 }
 
+static int config_submodule_in_gitmodules(const char *name, const char *var, const char *value)
+{
+	char *key;
+	int ret;
+
+	if (!is_writing_gitmodules_ok())
+		die(_("please make sure that the .gitmodules file is in the working tree"));
+
+	key = xstrfmt("submodule.%s.%s", name, var);
+	ret = config_set_in_gitmodules_file_gently(key, value);
+	free(key);
+
+	return ret;
+}
+
+static void configure_added_submodule(struct add_data *add_data)
+{
+	char *key;
+	char *val = NULL;
+	struct child_process add_submod = CHILD_PROCESS_INIT;
+	struct child_process add_gitmodules = CHILD_PROCESS_INIT;
+
+	key = xstrfmt("submodule.%s.url", add_data->sm_name);
+	git_config_set_gently(key, add_data->realrepo);
+	free(key);
+
+	add_submod.git_cmd = 1;
+	strvec_pushl(&add_submod.args, "add",
+		     "--no-warn-embedded-repo", NULL);
+	if (add_data->force)
+		strvec_push(&add_submod.args, "--force");
+	strvec_pushl(&add_submod.args, "--", add_data->sm_path, NULL);
+
+	if (run_command(&add_submod))
+		die(_("Failed to add submodule '%s'"), add_data->sm_path);
+
+	if (config_submodule_in_gitmodules(add_data->sm_name, "path", add_data->sm_path) ||
+	    config_submodule_in_gitmodules(add_data->sm_name, "url", add_data->repo))
+		die(_("Failed to register submodule '%s'"), add_data->sm_path);
+
+	if (add_data->branch)
+		if (config_submodule_in_gitmodules(add_data->sm_name,
+						   "branch", add_data->branch))
+			die(_("Failed to register submodule '%s'"), add_data->sm_path);
+
+	add_gitmodules.git_cmd = 1;
+	strvec_pushl(&add_gitmodules.args,
+		     "add", "--force", "--", ".gitmodules", NULL);
+
+	if (run_command(&add_gitmodules))
+		die(_("Failed to register submodule '%s'"), add_data->sm_path);
+
+	/*
+	 * NEEDSWORK: In a multi-working-tree world this needs to be
+	 * set in the per-worktree config.
+	 */
+	/*
+	 * NEEDSWORK: In the longer run, we need to get rid of this
+	 * pattern of querying "submodule.active" before calling
+	 * is_submodule_active(), since that function needs to find
+	 * out the value of "submodule.active" again anyway.
+	 */
+	if (!git_config_get_string("submodule.active", &val) && val) {
+		/*
+		 * If the submodule being added isn't already covered by the
+		 * current configured pathspec, set the submodule's active flag
+		 */
+		if (!is_submodule_active(the_repository, add_data->sm_path)) {
+			key = xstrfmt("submodule.%s.active", add_data->sm_name);
+			git_config_set_gently(key, "true");
+			free(key);
+		}
+	} else {
+		key = xstrfmt("submodule.%s.active", add_data->sm_name);
+		git_config_set_gently(key, "true");
+		free(key);
+	}
+}
+
+static int add_config(int argc, const char **argv, const char *prefix)
+{
+	int force = 0;
+	struct add_data add_data = ADD_DATA_INIT;
+
+	struct option options[] = {
+		OPT_STRING('b', "branch", &add_data.branch,
+			   N_("branch"),
+			   N_("branch of repository to store in "
+			      "the submodule configuration")),
+		OPT_STRING(0, "url", &add_data.repo,
+			   N_("string"),
+			   N_("url to clone submodule from")),
+		OPT_STRING(0, "resolved-url", &add_data.realrepo,
+			   N_("string"),
+			   N_("url to clone the submodule from, after it has "
+			      "been dereferenced relative to parent's url, "
+			      "in the case where <url> is a relative url")),
+		OPT_STRING(0, "path", &add_data.sm_path,
+			   N_("path"),
+			   N_("where the new submodule will be cloned to")),
+		OPT_STRING(0, "name", &add_data.sm_name,
+			   N_("string"),
+			   N_("name of the new submodule")),
+		OPT__FORCE(&force, N_("allow adding an otherwise ignored submodule path"),
+			   PARSE_OPT_NOCOMPLETE),
+		OPT_END()
+	};
+
+	const char *const usage[] = {
+		N_("git submodule--helper add-config "
+		   "[--force|-f] [--branch|-b <branch>] "
+		   "--url <url> --resolved-url <resolved-url> "
+		   "--path <path> --name <name>"),
+		NULL
+	};
+
+	argc = parse_options(argc, argv, prefix, options, usage, 0);
+
+	if (argc)
+		usage_with_options(usage, options);
+
+	add_data.force = !!force;
+	configure_added_submodule(&add_data);
+
+	return 0;
+}
+
 #define SUPPORT_SUPER_PREFIX (1<<0)
 
 struct cmd_struct {
@@ -2949,6 +3076,7 @@ static struct cmd_struct commands[] = {
 	{"name", module_name, 0},
 	{"clone", module_clone, 0},
 	{"add-clone", add_clone, 0},
+	{"add-config", add_config, 0},
 	{"update-module-mode", module_update_module_mode, 0},
 	{"update-clone", update_clone, 0},
 	{"ensure-core-worktree", ensure_core_worktree, 0},
diff --git a/git-submodule.sh b/git-submodule.sh
index 053daf3724..f713cb113c 100755
--- a/git-submodule.sh
+++ b/git-submodule.sh
@@ -242,33 +242,7 @@ cmd_add()
 	fi
 
 	git submodule--helper add-clone ${GIT_QUIET:+--quiet} ${force:+"--force"} ${progress:+"--progress"} ${branch:+--branch "$branch"} --prefix "$wt_prefix" --path "$sm_path" --name "$sm_name" --url "$realrepo" ${reference:+"$reference"} ${dissociate:+"--dissociate"} ${depth:+"$depth"} || exit
-	git config submodule."$sm_name".url "$realrepo"
-
-	git add --no-warn-embedded-repo $force "$sm_path" ||
-	die "fatal: $(eval_gettext "Failed to add submodule '\$sm_path'")"
-
-	git submodule--helper config submodule."$sm_name".path "$sm_path" &&
-	git submodule--helper config submodule."$sm_name".url "$repo" &&
-	if test -n "$branch"
-	then
-		git submodule--helper config submodule."$sm_name".branch "$branch"
-	fi &&
-	git add --force .gitmodules ||
-	die "fatal: $(eval_gettext "Failed to register submodule '\$sm_path'")"
-
-	# NEEDSWORK: In a multi-working-tree world, this needs to be
-	# set in the per-worktree config.
-	if git config --get submodule.active >/dev/null
-	then
-		# If the submodule being adding isn't already covered by the
-		# current configured pathspec, set the submodule's active flag
-		if ! git submodule--helper is-active "$sm_path"
-		then
-			git config submodule."$sm_name".active "true"
-		fi
-	else
-		git config submodule."$sm_name".active "true"
-	fi
+	git submodule--helper add-config ${force:+--force} ${branch:+--branch "$branch"} --url "$repo" --resolved-url "$realrepo" --path "$sm_path" --name "$sm_name"
 }
 
 #
diff --git a/submodule.c b/submodule.c
index 0b1d9c1dde..8577667773 100644
--- a/submodule.c
+++ b/submodule.c
@@ -237,6 +237,11 @@ int option_parse_recurse_submodules_worktree_updater(const struct option *opt,
 /*
  * Determine if a submodule has been initialized at a given 'path'
  */
+/*
+ * NEEDSWORK: Emit a warning if submodule.active exists, but is valueless,
+ * ie, the config looks like: "[submodule] active\n".
+ * Since that is an invalid pathspec, we should inform the user.
+ */
 int is_submodule_active(struct repository *repo, const char *path)
 {
 	int ret = 0;
-- 
2.32.0


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* Re: [GSoC] [PATCH v3] submodule--helper: introduce add-config subcommand
  2021-08-01  6:33   ` [GSoC] [PATCH v3] " Atharva Raykar
@ 2021-08-05 18:25     ` Kaartic Sivaraam
  0 siblings, 0 replies; 13+ messages in thread
From: Kaartic Sivaraam @ 2021-08-05 18:25 UTC (permalink / raw)
  To: Atharva Raykar
  Cc: Ævar Arnfjörð Bjarmason, Emily Shaffer,
	Jonathan Nieder, Junio C Hamano, Christian Couder, Shourya Shukla,
	Eric Sunshine, Prathamesh Chavan,
	Đoàn Trần Công Danh, Rafael Silva, git

On 01/08/21 12:03 pm, Atharva Raykar wrote:
> Add a new "add-config" subcommand to `git submodule--helper` with the
> goal of converting part of the shell code in git-submodule.sh related to
> `git submodule add` into C code. This new subcommand sets the
> configuration variables of a newly added submodule, by registering the
> url in local git config, as well as the submodule name and path in the
> .gitmodules file. It also sets 'submodule.<name>.active' to "true" if
> the submodule path has not already been covered by any pathspec
> specified in 'submodule.active'.
> 
> This is meant to be a faithful conversion from shell to C, although we
> add comments to areas that could be improved in future patches, after
> the conversion has settled.
> 
> Signed-off-by: Atharva Raykar <raykar.ath@gmail.com>
> Mentored-by: Christian Couder <christian.couder@gmail.com>
> Mentored-by: Shourya Shukla <periperidip@gmail.com>
> Based-on-patch-by: Shourya Shukla <periperidip@gmail.com>
> Based-on-patch-by: Prathamesh Chavan <pc44800@gmail.com>
> ---
>

The v3 mostly looks good to me. Just one style nit:

> [ ... ]
>
> +static void configure_added_submodule(struct add_data *add_data)
> +{
> +	char *key;
> +	char *val = NULL;
> +	struct child_process add_submod = CHILD_PROCESS_INIT;
> +	struct child_process add_gitmodules = CHILD_PROCESS_INIT;
> +
> +	key = xstrfmt("submodule.%s.url", add_data->sm_name);
> +	git_config_set_gently(key, add_data->realrepo);
> +	free(key);
> +
> +	add_submod.git_cmd = 1;
> +	strvec_pushl(&add_submod.args, "add",
> +		     "--no-warn-embedded-repo", NULL);
> +	if (add_data->force)
> +		strvec_push(&add_submod.args, "--force");
> +	strvec_pushl(&add_submod.args, "--", add_data->sm_path, NULL);
> +
> +	if (run_command(&add_submod))
> +		die(_("Failed to add submodule '%s'"), add_data->sm_path);
> +
> +	if (config_submodule_in_gitmodules(add_data->sm_name, "path", add_data->sm_path) ||
> +	    config_submodule_in_gitmodules(add_data->sm_name, "url", add_data->repo))
> +		die(_("Failed to register submodule '%s'"), add_data->sm_path);
> +
> +	if (add_data->branch)
> +		if (config_submodule_in_gitmodules(add_data->sm_name,
> +						   "branch", add_data->branch))
> +			die(_("Failed to register submodule '%s'"), add_data->sm_path);
> +

As the body of if(add->branch) has a nested if in it and totally spans 3 lines, it might
be a good idea to wrap it in braces like so:

         if (add_data->branch) {
                 if (config_submodule_in_gitmodules(add_data->sm_name,
                                                    "branch", add_data->branch))
                         die(_("Failed to register submodule '%s'"), add_data->sm_path);
         }


... or collapse both conditionals into a single if like so:

         if (add_data->branch &&
             config_submodule_in_gitmodules(add_data->sm_name, "branch", add_data->branch))
                 die(_("Failed to register submodule '%s'"), add_data->sm_path);

-- 
Sivaraam

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2021-08-05 18:25 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-22 11:21 [GSoC] [PATCH] submodule--helper: introduce add-config subcommand Atharva Raykar
2021-07-22 11:41 ` Atharva Raykar
2021-07-22 11:50 ` Ævar Arnfjörð Bjarmason
2021-07-22 13:28   ` Atharva Raykar
2021-07-22 13:31 ` Atharva Raykar
2021-07-23 20:36 ` Junio C Hamano
2021-07-24  9:59   ` Atharva Raykar
2021-07-28 11:53 ` [GSoC] [PATCH v2] " Atharva Raykar
2021-07-28 19:51   ` Kaartic Sivaraam
     [not found]     ` <d206fa7a-a450-552b-824c-518ee481c480@gmail.com>
2021-07-29 19:30       ` Kaartic Sivaraam
2021-07-30  6:22         ` Atharva Raykar
2021-08-01  6:33   ` [GSoC] [PATCH v3] " Atharva Raykar
2021-08-05 18:25     ` Kaartic Sivaraam

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).