submodule API & "absorbgitdirs": remove "----recursive" option
Remove the "----recursive" option to "git submodule--helper
absorbgitdirs" (yes, with 4 dashes, not 2).
This option and all the "else" when "flags &
ABSORB_GITDIR_RECURSE_SUBMODULES" is false has never been used since
it was added in f6f8586140
(submodule: add absorb-git-dir function,
2016-12-12), which we'd have had to do as "----recursive", a
"--recursive" would have errored out.
It would be nice to follow-up with an optbug() assertion to
parse-options.c for such funnily named options, I manually validated
that this was the only long option whose name started with "-", but
let's skip adding such an assertion for now.
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Taylor Blau <me@ttaylorr.com>
This commit is contained in:
parent
46e87b5482
commit
82ff87789b
@ -86,8 +86,7 @@ static void submodules_absorb_gitdir_if_needed(void)
|
|||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (!submodule_uses_gitfile(name))
|
if (!submodule_uses_gitfile(name))
|
||||||
absorb_git_dir_into_superproject(name,
|
absorb_git_dir_into_superproject(name);
|
||||||
ABSORB_GITDIR_RECURSE_SUBMODULES);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1379,8 +1379,7 @@ static void deinit_submodule(const char *path, const char *prefix,
|
|||||||
".git file by using absorbgitdirs."),
|
".git file by using absorbgitdirs."),
|
||||||
displaypath);
|
displaypath);
|
||||||
|
|
||||||
absorb_git_dir_into_superproject(path,
|
absorb_git_dir_into_superproject(path);
|
||||||
ABSORB_GITDIR_RECURSE_SUBMODULES);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2831,13 +2830,10 @@ static int absorb_git_dirs(int argc, const char **argv, const char *prefix)
|
|||||||
int i;
|
int i;
|
||||||
struct pathspec pathspec = { 0 };
|
struct pathspec pathspec = { 0 };
|
||||||
struct module_list list = MODULE_LIST_INIT;
|
struct module_list list = MODULE_LIST_INIT;
|
||||||
unsigned flags = ABSORB_GITDIR_RECURSE_SUBMODULES;
|
|
||||||
struct option embed_gitdir_options[] = {
|
struct option embed_gitdir_options[] = {
|
||||||
OPT_STRING(0, "prefix", &prefix,
|
OPT_STRING(0, "prefix", &prefix,
|
||||||
N_("path"),
|
N_("path"),
|
||||||
N_("path into the working tree")),
|
N_("path into the working tree")),
|
||||||
OPT_BIT(0, "--recursive", &flags, N_("recurse into submodules"),
|
|
||||||
ABSORB_GITDIR_RECURSE_SUBMODULES),
|
|
||||||
OPT_END()
|
OPT_END()
|
||||||
};
|
};
|
||||||
const char *const git_submodule_helper_usage[] = {
|
const char *const git_submodule_helper_usage[] = {
|
||||||
@ -2853,7 +2849,7 @@ static int absorb_git_dirs(int argc, const char **argv, const char *prefix)
|
|||||||
goto cleanup;
|
goto cleanup;
|
||||||
|
|
||||||
for (i = 0; i < list.nr; i++)
|
for (i = 0; i < list.nr; i++)
|
||||||
absorb_git_dir_into_superproject(list.entries[i]->name, flags);
|
absorb_git_dir_into_superproject(list.entries[i]->name);
|
||||||
|
|
||||||
ret = 0;
|
ret = 0;
|
||||||
cleanup:
|
cleanup:
|
||||||
|
13
submodule.c
13
submodule.c
@ -2139,8 +2139,7 @@ int submodule_move_head(const char *path,
|
|||||||
if (!(flags & SUBMODULE_MOVE_HEAD_DRY_RUN)) {
|
if (!(flags & SUBMODULE_MOVE_HEAD_DRY_RUN)) {
|
||||||
if (old_head) {
|
if (old_head) {
|
||||||
if (!submodule_uses_gitfile(path))
|
if (!submodule_uses_gitfile(path))
|
||||||
absorb_git_dir_into_superproject(path,
|
absorb_git_dir_into_superproject(path);
|
||||||
ABSORB_GITDIR_RECURSE_SUBMODULES);
|
|
||||||
} else {
|
} else {
|
||||||
struct strbuf gitdir = STRBUF_INIT;
|
struct strbuf gitdir = STRBUF_INIT;
|
||||||
submodule_name_to_gitdir(&gitdir, the_repository,
|
submodule_name_to_gitdir(&gitdir, the_repository,
|
||||||
@ -2332,8 +2331,7 @@ static void absorb_git_dir_into_superproject_recurse(const char *path)
|
|||||||
* having its git directory within the working tree to the git dir nested
|
* having its git directory within the working tree to the git dir nested
|
||||||
* in its superprojects git dir under modules/.
|
* in its superprojects git dir under modules/.
|
||||||
*/
|
*/
|
||||||
void absorb_git_dir_into_superproject(const char *path,
|
void absorb_git_dir_into_superproject(const char *path)
|
||||||
unsigned flags)
|
|
||||||
{
|
{
|
||||||
int err_code;
|
int err_code;
|
||||||
const char *sub_git_dir;
|
const char *sub_git_dir;
|
||||||
@ -2382,12 +2380,7 @@ void absorb_git_dir_into_superproject(const char *path,
|
|||||||
}
|
}
|
||||||
strbuf_release(&gitdir);
|
strbuf_release(&gitdir);
|
||||||
|
|
||||||
if (flags & ABSORB_GITDIR_RECURSE_SUBMODULES) {
|
absorb_git_dir_into_superproject_recurse(path);
|
||||||
if (flags & ~ABSORB_GITDIR_RECURSE_SUBMODULES)
|
|
||||||
BUG("we don't know how to pass the flags down?");
|
|
||||||
|
|
||||||
absorb_git_dir_into_superproject_recurse(path);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int get_superproject_working_tree(struct strbuf *buf)
|
int get_superproject_working_tree(struct strbuf *buf)
|
||||||
|
@ -164,9 +164,7 @@ void submodule_unset_core_worktree(const struct submodule *sub);
|
|||||||
*/
|
*/
|
||||||
void prepare_submodule_repo_env(struct strvec *env);
|
void prepare_submodule_repo_env(struct strvec *env);
|
||||||
|
|
||||||
#define ABSORB_GITDIR_RECURSE_SUBMODULES (1<<0)
|
void absorb_git_dir_into_superproject(const char *path);
|
||||||
void absorb_git_dir_into_superproject(const char *path,
|
|
||||||
unsigned flags);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Return the absolute path of the working tree of the superproject, which this
|
* Return the absolute path of the working tree of the superproject, which this
|
||||||
|
Loading…
Reference in New Issue
Block a user