4 #include "submodule-config.h"
7 static void die_usage(int argc
, const char **argv
, const char *msg
)
9 fprintf(stderr
, "%s\n", msg
);
10 fprintf(stderr
, "Usage: %s [<commit> <submodulepath>] ...\n", argv
[0]);
14 int cmd__submodule_config(int argc
, const char **argv
)
16 const char **arg
= argv
;
23 while (arg
[0] && starts_with(arg
[0], "--")) {
24 if (!strcmp(arg
[0], "--url"))
26 if (!strcmp(arg
[0], "--name"))
33 die_usage(argc
, argv
, "Wrong number of arguments.");
35 setup_git_directory();
38 struct object_id commit_oid
;
39 const struct submodule
*submodule
;
41 const char *path_or_name
;
44 path_or_name
= arg
[1];
46 if (commit
[0] == '\0')
48 else if (get_oid(commit
, &commit_oid
) < 0)
49 die_usage(argc
, argv
, "Commit not found.");
52 submodule
= submodule_from_name(the_repository
,
53 &commit_oid
, path_or_name
);
55 submodule
= submodule_from_path(the_repository
,
56 &commit_oid
, path_or_name
);
58 die_usage(argc
, argv
, "Submodule not found.");
61 printf("Submodule url: '%s' for path '%s'\n",
62 submodule
->url
, submodule
->path
);
64 printf("Submodule name: '%s' for path '%s'\n",
65 submodule
->name
, submodule
->path
);
70 submodule_free(the_repository
);