3 #include "submodule-config.h"
9 #include "run-command.h"
12 #include "string-list.h"
13 #include "sha1-array.h"
14 #include "argv-array.h"
16 #include "thread-utils.h"
20 #include "parse-options.h"
22 static int config_fetch_recurse_submodules
= RECURSE_SUBMODULES_ON_DEMAND
;
23 static int config_update_recurse_submodules
= RECURSE_SUBMODULES_OFF
;
24 static int parallel_jobs
= 1;
25 static struct string_list changed_submodule_paths
= STRING_LIST_INIT_DUP
;
26 static int initialized_fetch_ref_tips
;
27 static struct oid_array ref_tips_before_fetch
;
28 static struct oid_array ref_tips_after_fetch
;
31 * The following flag is set if the .gitmodules file is unmerged. We then
32 * disable recursion for all submodules where .git/config doesn't have a
33 * matching config entry because we can't guess what might be configured in
34 * .gitmodules unless the user resolves the conflict. When a command line
35 * option is given (which always overrides configuration) this flag will be
38 static int gitmodules_is_unmerged
;
41 * This flag is set if the .gitmodules file had unstaged modifications on
42 * startup. This must be checked before allowing modifications to the
43 * .gitmodules file with the intention to stage them later, because when
44 * continuing we would stage the modifications the user didn't stage herself
45 * too. That might change in a future version when we learn to stage the
46 * changes we do ourselves without staging any previous modifications.
48 static int gitmodules_is_modified
;
50 int is_staging_gitmodules_ok(void)
52 return !gitmodules_is_modified
;
56 * Try to update the "path" entry in the "submodule.<name>" section of the
57 * .gitmodules file. Return 0 only if a .gitmodules file was found, a section
58 * with the correct path=<oldpath> setting was found and we could update it.
60 int update_path_in_gitmodules(const char *oldpath
, const char *newpath
)
62 struct strbuf entry
= STRBUF_INIT
;
63 const struct submodule
*submodule
;
65 if (!file_exists(".gitmodules")) /* Do nothing without .gitmodules */
68 if (gitmodules_is_unmerged
)
69 die(_("Cannot change unmerged .gitmodules, resolve merge conflicts first"));
71 submodule
= submodule_from_path(null_sha1
, oldpath
);
72 if (!submodule
|| !submodule
->name
) {
73 warning(_("Could not find section in .gitmodules where path=%s"), oldpath
);
76 strbuf_addstr(&entry
, "submodule.");
77 strbuf_addstr(&entry
, submodule
->name
);
78 strbuf_addstr(&entry
, ".path");
79 if (git_config_set_in_file_gently(".gitmodules", entry
.buf
, newpath
) < 0) {
80 /* Maybe the user already did that, don't error out here */
81 warning(_("Could not update .gitmodules entry %s"), entry
.buf
);
82 strbuf_release(&entry
);
85 strbuf_release(&entry
);
90 * Try to remove the "submodule.<name>" section from .gitmodules where the given
91 * path is configured. Return 0 only if a .gitmodules file was found, a section
92 * with the correct path=<path> setting was found and we could remove it.
94 int remove_path_from_gitmodules(const char *path
)
96 struct strbuf sect
= STRBUF_INIT
;
97 const struct submodule
*submodule
;
99 if (!file_exists(".gitmodules")) /* Do nothing without .gitmodules */
102 if (gitmodules_is_unmerged
)
103 die(_("Cannot change unmerged .gitmodules, resolve merge conflicts first"));
105 submodule
= submodule_from_path(null_sha1
, path
);
106 if (!submodule
|| !submodule
->name
) {
107 warning(_("Could not find section in .gitmodules where path=%s"), path
);
110 strbuf_addstr(§
, "submodule.");
111 strbuf_addstr(§
, submodule
->name
);
112 if (git_config_rename_section_in_file(".gitmodules", sect
.buf
, NULL
) < 0) {
113 /* Maybe the user already did that, don't error out here */
114 warning(_("Could not remove .gitmodules entry for %s"), path
);
115 strbuf_release(§
);
118 strbuf_release(§
);
122 void stage_updated_gitmodules(void)
124 if (add_file_to_cache(".gitmodules", 0))
125 die(_("staging updated .gitmodules failed"));
128 static int add_submodule_odb(const char *path
)
130 struct strbuf objects_directory
= STRBUF_INIT
;
133 ret
= strbuf_git_path_submodule(&objects_directory
, path
, "objects/");
136 if (!is_directory(objects_directory
.buf
)) {
140 add_to_alternates_memory(objects_directory
.buf
);
142 strbuf_release(&objects_directory
);
146 void set_diffopt_flags_from_submodule_config(struct diff_options
*diffopt
,
149 const struct submodule
*submodule
= submodule_from_path(null_sha1
, path
);
151 if (submodule
->ignore
)
152 handle_ignore_submodules_arg(diffopt
, submodule
->ignore
);
153 else if (gitmodules_is_unmerged
)
154 DIFF_OPT_SET(diffopt
, IGNORE_SUBMODULES
);
158 /* For loading from the .gitmodules file. */
159 static int git_modules_config(const char *var
, const char *value
, void *cb
)
161 if (!strcmp(var
, "submodule.fetchjobs")) {
162 parallel_jobs
= git_config_int(var
, value
);
163 if (parallel_jobs
< 0)
164 die(_("negative values not allowed for submodule.fetchJobs"));
166 } else if (starts_with(var
, "submodule."))
167 return parse_submodule_config_option(var
, value
);
168 else if (!strcmp(var
, "fetch.recursesubmodules")) {
169 config_fetch_recurse_submodules
= parse_fetch_recurse_submodules_arg(var
, value
);
175 /* Loads all submodule settings from the config. */
176 int submodule_config(const char *var
, const char *value
, void *cb
)
178 if (!strcmp(var
, "submodule.recurse")) {
179 int v
= git_config_bool(var
, value
) ?
180 RECURSE_SUBMODULES_ON
: RECURSE_SUBMODULES_OFF
;
181 config_update_recurse_submodules
= v
;
184 return git_modules_config(var
, value
, cb
);
188 /* Cheap function that only determines if we're interested in submodules at all */
189 int git_default_submodule_config(const char *var
, const char *value
, void *cb
)
191 if (!strcmp(var
, "submodule.recurse")) {
192 int v
= git_config_bool(var
, value
) ?
193 RECURSE_SUBMODULES_ON
: RECURSE_SUBMODULES_OFF
;
194 config_update_recurse_submodules
= v
;
199 int option_parse_recurse_submodules_worktree_updater(const struct option
*opt
,
200 const char *arg
, int unset
)
203 config_update_recurse_submodules
= RECURSE_SUBMODULES_OFF
;
207 config_update_recurse_submodules
=
208 parse_update_recurse_submodules_arg(opt
->long_name
,
211 config_update_recurse_submodules
= RECURSE_SUBMODULES_ON
;
216 void load_submodule_cache(void)
218 if (config_update_recurse_submodules
== RECURSE_SUBMODULES_OFF
)
222 git_config(submodule_config
, NULL
);
225 void gitmodules_config(void)
227 const char *work_tree
= get_git_work_tree();
229 struct strbuf gitmodules_path
= STRBUF_INIT
;
231 strbuf_addstr(&gitmodules_path
, work_tree
);
232 strbuf_addstr(&gitmodules_path
, "/.gitmodules");
233 if (read_cache() < 0)
234 die("index file corrupt");
235 pos
= cache_name_pos(".gitmodules", 11);
236 if (pos
< 0) { /* .gitmodules not found or isn't merged */
238 if (active_nr
> pos
) { /* there is a .gitmodules */
239 const struct cache_entry
*ce
= active_cache
[pos
];
240 if (ce_namelen(ce
) == 11 &&
241 !memcmp(ce
->name
, ".gitmodules", 11))
242 gitmodules_is_unmerged
= 1;
244 } else if (pos
< active_nr
) {
246 if (lstat(".gitmodules", &st
) == 0 &&
247 ce_match_stat(active_cache
[pos
], &st
, 0) & DATA_CHANGED
)
248 gitmodules_is_modified
= 1;
251 if (!gitmodules_is_unmerged
)
252 git_config_from_file(git_modules_config
,
253 gitmodules_path
.buf
, NULL
);
254 strbuf_release(&gitmodules_path
);
258 void gitmodules_config_sha1(const unsigned char *commit_sha1
)
260 struct strbuf rev
= STRBUF_INIT
;
261 unsigned char sha1
[20];
263 if (gitmodule_sha1_from_commit(commit_sha1
, sha1
, &rev
)) {
264 git_config_from_blob_sha1(git_modules_config
, rev
.buf
,
267 strbuf_release(&rev
);
271 * NEEDSWORK: With the addition of different configuration options to determine
272 * if a submodule is of interests, the validity of this function's name comes
273 * into question. Once the dust has settled and more concrete terminology is
274 * decided upon, come up with a more proper name for this function. One
275 * potential candidate could be 'is_submodule_active()'.
277 * Determine if a submodule has been initialized at a given 'path'
279 int is_submodule_initialized(const char *path
)
284 const struct string_list
*sl
;
285 const struct submodule
*module
= submodule_from_path(null_sha1
, path
);
287 /* early return if there isn't a path->module mapping */
291 /* submodule.<name>.active is set */
292 key
= xstrfmt("submodule.%s.active", module
->name
);
293 if (!git_config_get_bool(key
, &ret
)) {
299 /* submodule.active is set */
300 sl
= git_config_get_value_multi("submodule.active");
303 struct argv_array args
= ARGV_ARRAY_INIT
;
304 const struct string_list_item
*item
;
306 for_each_string_list_item(item
, sl
) {
307 argv_array_push(&args
, item
->string
);
310 parse_pathspec(&ps
, 0, 0, NULL
, args
.argv
);
311 ret
= match_pathspec(&ps
, path
, strlen(path
), 0, NULL
, 1);
313 argv_array_clear(&args
);
318 /* fallback to checking if the URL is set */
319 key
= xstrfmt("submodule.%s.url", module
->name
);
320 ret
= !git_config_get_string(key
, &value
);
327 int is_submodule_populated_gently(const char *path
, int *return_error_code
)
330 char *gitdir
= xstrfmt("%s/.git", path
);
332 if (resolve_gitdir_gently(gitdir
, return_error_code
))
340 * Dies if the provided 'prefix' corresponds to an unpopulated submodule
342 void die_in_unpopulated_submodule(const struct index_state
*istate
,
350 prefixlen
= strlen(prefix
);
352 for (i
= 0; i
< istate
->cache_nr
; i
++) {
353 struct cache_entry
*ce
= istate
->cache
[i
];
354 int ce_len
= ce_namelen(ce
);
356 if (!S_ISGITLINK(ce
->ce_mode
))
358 if (prefixlen
<= ce_len
)
360 if (strncmp(ce
->name
, prefix
, ce_len
))
362 if (prefix
[ce_len
] != '/')
365 die(_("in unpopulated submodule '%s'"), ce
->name
);
370 * Dies if any paths in the provided pathspec descends into a submodule
372 void die_path_inside_submodule(const struct index_state
*istate
,
373 const struct pathspec
*ps
)
377 for (i
= 0; i
< istate
->cache_nr
; i
++) {
378 struct cache_entry
*ce
= istate
->cache
[i
];
379 int ce_len
= ce_namelen(ce
);
381 if (!S_ISGITLINK(ce
->ce_mode
))
384 for (j
= 0; j
< ps
->nr
; j
++) {
385 const struct pathspec_item
*item
= &ps
->items
[j
];
387 if (item
->len
<= ce_len
)
389 if (item
->match
[ce_len
] != '/')
391 if (strncmp(ce
->name
, item
->match
, ce_len
))
393 if (item
->len
== ce_len
+ 1)
396 die(_("Pathspec '%s' is in submodule '%.*s'"),
397 item
->original
, ce_len
, ce
->name
);
402 int parse_submodule_update_strategy(const char *value
,
403 struct submodule_update_strategy
*dst
)
405 free((void*)dst
->command
);
407 if (!strcmp(value
, "none"))
408 dst
->type
= SM_UPDATE_NONE
;
409 else if (!strcmp(value
, "checkout"))
410 dst
->type
= SM_UPDATE_CHECKOUT
;
411 else if (!strcmp(value
, "rebase"))
412 dst
->type
= SM_UPDATE_REBASE
;
413 else if (!strcmp(value
, "merge"))
414 dst
->type
= SM_UPDATE_MERGE
;
415 else if (skip_prefix(value
, "!", &value
)) {
416 dst
->type
= SM_UPDATE_COMMAND
;
417 dst
->command
= xstrdup(value
);
423 const char *submodule_strategy_to_string(const struct submodule_update_strategy
*s
)
425 struct strbuf sb
= STRBUF_INIT
;
427 case SM_UPDATE_CHECKOUT
:
429 case SM_UPDATE_MERGE
:
431 case SM_UPDATE_REBASE
:
435 case SM_UPDATE_UNSPECIFIED
:
437 case SM_UPDATE_COMMAND
:
438 strbuf_addf(&sb
, "!%s", s
->command
);
439 return strbuf_detach(&sb
, NULL
);
444 void handle_ignore_submodules_arg(struct diff_options
*diffopt
,
447 DIFF_OPT_CLR(diffopt
, IGNORE_SUBMODULES
);
448 DIFF_OPT_CLR(diffopt
, IGNORE_UNTRACKED_IN_SUBMODULES
);
449 DIFF_OPT_CLR(diffopt
, IGNORE_DIRTY_SUBMODULES
);
451 if (!strcmp(arg
, "all"))
452 DIFF_OPT_SET(diffopt
, IGNORE_SUBMODULES
);
453 else if (!strcmp(arg
, "untracked"))
454 DIFF_OPT_SET(diffopt
, IGNORE_UNTRACKED_IN_SUBMODULES
);
455 else if (!strcmp(arg
, "dirty"))
456 DIFF_OPT_SET(diffopt
, IGNORE_DIRTY_SUBMODULES
);
457 else if (strcmp(arg
, "none"))
458 die("bad --ignore-submodules argument: %s", arg
);
461 static int prepare_submodule_summary(struct rev_info
*rev
, const char *path
,
462 struct commit
*left
, struct commit
*right
,
463 struct commit_list
*merge_bases
)
465 struct commit_list
*list
;
467 init_revisions(rev
, NULL
);
468 setup_revisions(0, NULL
, rev
, NULL
);
470 rev
->first_parent_only
= 1;
471 left
->object
.flags
|= SYMMETRIC_LEFT
;
472 add_pending_object(rev
, &left
->object
, path
);
473 add_pending_object(rev
, &right
->object
, path
);
474 for (list
= merge_bases
; list
; list
= list
->next
) {
475 list
->item
->object
.flags
|= UNINTERESTING
;
476 add_pending_object(rev
, &list
->item
->object
,
477 oid_to_hex(&list
->item
->object
.oid
));
479 return prepare_revision_walk(rev
);
482 static void print_submodule_summary(struct rev_info
*rev
, struct diff_options
*o
)
484 static const char format
[] = " %m %s";
485 struct strbuf sb
= STRBUF_INIT
;
486 struct commit
*commit
;
488 while ((commit
= get_revision(rev
))) {
489 struct pretty_print_context ctx
= {0};
490 ctx
.date_mode
= rev
->date_mode
;
491 ctx
.output_encoding
= get_log_output_encoding();
492 strbuf_setlen(&sb
, 0);
493 format_commit_message(commit
, format
, &sb
, &ctx
);
494 strbuf_addch(&sb
, '\n');
495 if (commit
->object
.flags
& SYMMETRIC_LEFT
)
496 diff_emit_submodule_del(o
, sb
.buf
);
498 diff_emit_submodule_add(o
, sb
.buf
);
503 static void prepare_submodule_repo_env_no_git_dir(struct argv_array
*out
)
505 const char * const *var
;
507 for (var
= local_repo_env
; *var
; var
++) {
508 if (strcmp(*var
, CONFIG_DATA_ENVIRONMENT
))
509 argv_array_push(out
, *var
);
513 void prepare_submodule_repo_env(struct argv_array
*out
)
515 prepare_submodule_repo_env_no_git_dir(out
);
516 argv_array_pushf(out
, "%s=%s", GIT_DIR_ENVIRONMENT
,
517 DEFAULT_GIT_DIR_ENVIRONMENT
);
520 /* Helper function to display the submodule header line prior to the full
521 * summary output. If it can locate the submodule objects directory it will
522 * attempt to lookup both the left and right commits and put them into the
523 * left and right pointers.
525 static void show_submodule_header(struct diff_options
*o
, const char *path
,
526 struct object_id
*one
, struct object_id
*two
,
527 unsigned dirty_submodule
,
528 struct commit
**left
, struct commit
**right
,
529 struct commit_list
**merge_bases
)
531 const char *message
= NULL
;
532 struct strbuf sb
= STRBUF_INIT
;
533 int fast_forward
= 0, fast_backward
= 0;
535 if (dirty_submodule
& DIRTY_SUBMODULE_UNTRACKED
)
536 diff_emit_submodule_untracked(o
, path
);
538 if (dirty_submodule
& DIRTY_SUBMODULE_MODIFIED
)
539 diff_emit_submodule_modified(o
, path
);
541 if (is_null_oid(one
))
542 message
= "(new submodule)";
543 else if (is_null_oid(two
))
544 message
= "(submodule deleted)";
546 if (add_submodule_odb(path
)) {
548 message
= "(not initialized)";
553 * Attempt to lookup the commit references, and determine if this is
554 * a fast forward or fast backwards update.
556 *left
= lookup_commit_reference(one
);
557 *right
= lookup_commit_reference(two
);
560 * Warn about missing commits in the submodule project, but only if
563 if ((!is_null_oid(one
) && !*left
) ||
564 (!is_null_oid(two
) && !*right
))
565 message
= "(commits not present)";
567 *merge_bases
= get_merge_bases(*left
, *right
);
569 if ((*merge_bases
)->item
== *left
)
571 else if ((*merge_bases
)->item
== *right
)
575 if (!oidcmp(one
, two
)) {
581 strbuf_addf(&sb
, "Submodule %s ", path
);
582 strbuf_add_unique_abbrev(&sb
, one
->hash
, DEFAULT_ABBREV
);
583 strbuf_addstr(&sb
, (fast_backward
|| fast_forward
) ? ".." : "...");
584 strbuf_add_unique_abbrev(&sb
, two
->hash
, DEFAULT_ABBREV
);
586 strbuf_addf(&sb
, " %s\n", message
);
588 strbuf_addf(&sb
, "%s:\n", fast_backward
? " (rewind)" : "");
589 diff_emit_submodule_header(o
, sb
.buf
);
594 void show_submodule_summary(struct diff_options
*o
, const char *path
,
595 struct object_id
*one
, struct object_id
*two
,
596 unsigned dirty_submodule
)
599 struct commit
*left
= NULL
, *right
= NULL
;
600 struct commit_list
*merge_bases
= NULL
;
602 show_submodule_header(o
, path
, one
, two
, dirty_submodule
,
603 &left
, &right
, &merge_bases
);
606 * If we don't have both a left and a right pointer, there is no
607 * reason to try and display a summary. The header line should contain
608 * all the information the user needs.
613 /* Treat revision walker failure the same as missing commits */
614 if (prepare_submodule_summary(&rev
, path
, left
, right
, merge_bases
)) {
615 diff_emit_submodule_error(o
, "(revision walker failed)\n");
619 print_submodule_summary(&rev
, o
);
623 free_commit_list(merge_bases
);
624 clear_commit_marks(left
, ~0);
625 clear_commit_marks(right
, ~0);
628 void show_submodule_inline_diff(struct diff_options
*o
, const char *path
,
629 struct object_id
*one
, struct object_id
*two
,
630 unsigned dirty_submodule
)
632 const struct object_id
*old
= &empty_tree_oid
, *new = &empty_tree_oid
;
633 struct commit
*left
= NULL
, *right
= NULL
;
634 struct commit_list
*merge_bases
= NULL
;
635 struct child_process cp
= CHILD_PROCESS_INIT
;
636 struct strbuf sb
= STRBUF_INIT
;
638 show_submodule_header(o
, path
, one
, two
, dirty_submodule
,
639 &left
, &right
, &merge_bases
);
641 /* We need a valid left and right commit to display a difference */
642 if (!(left
|| is_null_oid(one
)) ||
643 !(right
|| is_null_oid(two
)))
656 /* TODO: other options may need to be passed here. */
657 argv_array_pushl(&cp
.args
, "diff", "--submodule=diff", NULL
);
658 argv_array_pushf(&cp
.args
, "--color=%s", want_color(o
->use_color
) ?
661 if (DIFF_OPT_TST(o
, REVERSE_DIFF
)) {
662 argv_array_pushf(&cp
.args
, "--src-prefix=%s%s/",
664 argv_array_pushf(&cp
.args
, "--dst-prefix=%s%s/",
667 argv_array_pushf(&cp
.args
, "--src-prefix=%s%s/",
669 argv_array_pushf(&cp
.args
, "--dst-prefix=%s%s/",
672 argv_array_push(&cp
.args
, oid_to_hex(old
));
674 * If the submodule has modified content, we will diff against the
675 * work tree, under the assumption that the user has asked for the
676 * diff format and wishes to actually see all differences even if they
677 * haven't yet been committed to the submodule yet.
679 if (!(dirty_submodule
& DIRTY_SUBMODULE_MODIFIED
))
680 argv_array_push(&cp
.args
, oid_to_hex(new));
682 prepare_submodule_repo_env(&cp
.env_array
);
683 if (start_command(&cp
))
684 diff_emit_submodule_error(o
, "(diff failed)\n");
686 while (strbuf_getwholeline_fd(&sb
, cp
.out
, '\n') != EOF
)
687 diff_emit_submodule_pipethrough(o
, sb
.buf
, sb
.len
);
689 if (finish_command(&cp
))
690 diff_emit_submodule_error(o
, "(diff failed)\n");
695 free_commit_list(merge_bases
);
697 clear_commit_marks(left
, ~0);
699 clear_commit_marks(right
, ~0);
702 void set_config_fetch_recurse_submodules(int value
)
704 config_fetch_recurse_submodules
= value
;
707 int should_update_submodules(void)
709 return config_update_recurse_submodules
== RECURSE_SUBMODULES_ON
;
712 const struct submodule
*submodule_from_ce(const struct cache_entry
*ce
)
714 if (!S_ISGITLINK(ce
->ce_mode
))
717 if (!should_update_submodules())
720 return submodule_from_path(null_sha1
, ce
->name
);
723 static struct oid_array
*submodule_commits(struct string_list
*submodules
,
726 struct string_list_item
*item
;
728 item
= string_list_insert(submodules
, path
);
730 return (struct oid_array
*) item
->util
;
732 /* NEEDSWORK: should we have oid_array_init()? */
733 item
->util
= xcalloc(1, sizeof(struct oid_array
));
734 return (struct oid_array
*) item
->util
;
737 static void collect_changed_submodules_cb(struct diff_queue_struct
*q
,
738 struct diff_options
*options
,
742 struct string_list
*changed
= data
;
744 for (i
= 0; i
< q
->nr
; i
++) {
745 struct diff_filepair
*p
= q
->queue
[i
];
746 struct oid_array
*commits
;
747 if (!S_ISGITLINK(p
->two
->mode
))
750 if (S_ISGITLINK(p
->one
->mode
)) {
752 * NEEDSWORK: We should honor the name configured in
753 * the .gitmodules file of the commit we are examining
754 * here to be able to correctly follow submodules
755 * being moved around.
757 commits
= submodule_commits(changed
, p
->two
->path
);
758 oid_array_append(commits
, &p
->two
->oid
);
760 /* Submodule is new or was moved here */
762 * NEEDSWORK: When the .git directories of submodules
763 * live inside the superprojects .git directory some
764 * day we should fetch new submodules directly into
765 * that location too when config or options request
766 * that so they can be checked out from there.
774 * Collect the paths of submodules in 'changed' which have changed based on
775 * the revisions as specified in 'argv'. Each entry in 'changed' will also
776 * have a corresponding 'struct oid_array' (in the 'util' field) which lists
777 * what the submodule pointers were updated to during the change.
779 static void collect_changed_submodules(struct string_list
*changed
,
780 struct argv_array
*argv
)
783 const struct commit
*commit
;
785 init_revisions(&rev
, NULL
);
786 setup_revisions(argv
->argc
, argv
->argv
, &rev
, NULL
);
787 if (prepare_revision_walk(&rev
))
788 die("revision walk setup failed");
790 while ((commit
= get_revision(&rev
))) {
791 struct rev_info diff_rev
;
793 init_revisions(&diff_rev
, NULL
);
794 diff_rev
.diffopt
.output_format
|= DIFF_FORMAT_CALLBACK
;
795 diff_rev
.diffopt
.format_callback
= collect_changed_submodules_cb
;
796 diff_rev
.diffopt
.format_callback_data
= changed
;
797 diff_tree_combined_merge(commit
, 1, &diff_rev
);
800 reset_revision_walk();
803 static void free_submodules_oids(struct string_list
*submodules
)
805 struct string_list_item
*item
;
806 for_each_string_list_item(item
, submodules
)
807 oid_array_clear((struct oid_array
*) item
->util
);
808 string_list_clear(submodules
, 1);
811 static int has_remote(const char *refname
, const struct object_id
*oid
,
812 int flags
, void *cb_data
)
817 static int append_oid_to_argv(const struct object_id
*oid
, void *data
)
819 struct argv_array
*argv
= data
;
820 argv_array_push(argv
, oid_to_hex(oid
));
824 static int check_has_commit(const struct object_id
*oid
, void *data
)
826 int *has_commit
= data
;
828 if (!lookup_commit_reference(oid
))
834 static int submodule_has_commits(const char *path
, struct oid_array
*commits
)
839 * Perform a cheap, but incorrect check for the existance of 'commits'.
840 * This is done by adding the submodule's object store to the in-core
841 * object store, and then querying for each commit's existance. If we
842 * do not have the commit object anywhere, there is no chance we have
843 * it in the object store of the correct submodule and have it
844 * reachable from a ref, so we can fail early without spawning rev-list
845 * which is expensive.
847 if (add_submodule_odb(path
))
850 oid_array_for_each_unique(commits
, check_has_commit
, &has_commit
);
854 * Even if the submodule is checked out and the commit is
855 * present, make sure it exists in the submodule's object store
856 * and that it is reachable from a ref.
858 struct child_process cp
= CHILD_PROCESS_INIT
;
859 struct strbuf out
= STRBUF_INIT
;
861 argv_array_pushl(&cp
.args
, "rev-list", "-n", "1", NULL
);
862 oid_array_for_each_unique(commits
, append_oid_to_argv
, &cp
.args
);
863 argv_array_pushl(&cp
.args
, "--not", "--all", NULL
);
865 prepare_submodule_repo_env(&cp
.env_array
);
870 if (capture_command(&cp
, &out
, GIT_MAX_HEXSZ
+ 1) || out
.len
)
873 strbuf_release(&out
);
879 static int submodule_needs_pushing(const char *path
, struct oid_array
*commits
)
881 if (!submodule_has_commits(path
, commits
))
883 * NOTE: We do consider it safe to return "no" here. The
884 * correct answer would be "We do not know" instead of
885 * "No push needed", but it is quite hard to change
886 * the submodule pointer without having the submodule
887 * around. If a user did however change the submodules
888 * without having the submodule around, this indicates
889 * an expert who knows what they are doing or a
890 * maintainer integrating work from other people. In
891 * both cases it should be safe to skip this check.
895 if (for_each_remote_ref_submodule(path
, has_remote
, NULL
) > 0) {
896 struct child_process cp
= CHILD_PROCESS_INIT
;
897 struct strbuf buf
= STRBUF_INIT
;
898 int needs_pushing
= 0;
900 argv_array_push(&cp
.args
, "rev-list");
901 oid_array_for_each_unique(commits
, append_oid_to_argv
, &cp
.args
);
902 argv_array_pushl(&cp
.args
, "--not", "--remotes", "-n", "1" , NULL
);
904 prepare_submodule_repo_env(&cp
.env_array
);
909 if (start_command(&cp
))
910 die("Could not run 'git rev-list <commits> --not --remotes -n 1' command in submodule %s",
912 if (strbuf_read(&buf
, cp
.out
, 41))
916 strbuf_release(&buf
);
917 return needs_pushing
;
923 int find_unpushed_submodules(struct oid_array
*commits
,
924 const char *remotes_name
, struct string_list
*needs_pushing
)
926 struct string_list submodules
= STRING_LIST_INIT_DUP
;
927 struct string_list_item
*submodule
;
928 struct argv_array argv
= ARGV_ARRAY_INIT
;
930 /* argv.argv[0] will be ignored by setup_revisions */
931 argv_array_push(&argv
, "find_unpushed_submodules");
932 oid_array_for_each_unique(commits
, append_oid_to_argv
, &argv
);
933 argv_array_push(&argv
, "--not");
934 argv_array_pushf(&argv
, "--remotes=%s", remotes_name
);
936 collect_changed_submodules(&submodules
, &argv
);
938 for_each_string_list_item(submodule
, &submodules
) {
939 struct oid_array
*commits
= submodule
->util
;
940 const char *path
= submodule
->string
;
942 if (submodule_needs_pushing(path
, commits
))
943 string_list_insert(needs_pushing
, path
);
946 free_submodules_oids(&submodules
);
947 argv_array_clear(&argv
);
949 return needs_pushing
->nr
;
952 static int push_submodule(const char *path
,
953 const struct remote
*remote
,
954 const char **refspec
, int refspec_nr
,
955 const struct string_list
*push_options
,
958 if (add_submodule_odb(path
))
961 if (for_each_remote_ref_submodule(path
, has_remote
, NULL
) > 0) {
962 struct child_process cp
= CHILD_PROCESS_INIT
;
963 argv_array_push(&cp
.args
, "push");
965 argv_array_push(&cp
.args
, "--dry-run");
967 if (push_options
&& push_options
->nr
) {
968 const struct string_list_item
*item
;
969 for_each_string_list_item(item
, push_options
)
970 argv_array_pushf(&cp
.args
, "--push-option=%s",
974 if (remote
->origin
!= REMOTE_UNCONFIGURED
) {
976 argv_array_push(&cp
.args
, remote
->name
);
977 for (i
= 0; i
< refspec_nr
; i
++)
978 argv_array_push(&cp
.args
, refspec
[i
]);
981 prepare_submodule_repo_env(&cp
.env_array
);
985 if (run_command(&cp
))
994 * Perform a check in the submodule to see if the remote and refspec work.
995 * Die if the submodule can't be pushed.
997 static void submodule_push_check(const char *path
, const struct remote
*remote
,
998 const char **refspec
, int refspec_nr
)
1000 struct child_process cp
= CHILD_PROCESS_INIT
;
1003 argv_array_push(&cp
.args
, "submodule--helper");
1004 argv_array_push(&cp
.args
, "push-check");
1005 argv_array_push(&cp
.args
, remote
->name
);
1007 for (i
= 0; i
< refspec_nr
; i
++)
1008 argv_array_push(&cp
.args
, refspec
[i
]);
1010 prepare_submodule_repo_env(&cp
.env_array
);
1017 * Simply indicate if 'submodule--helper push-check' failed.
1018 * More detailed error information will be provided by the
1021 if (run_command(&cp
))
1022 die("process for submodule '%s' failed", path
);
1025 int push_unpushed_submodules(struct oid_array
*commits
,
1026 const struct remote
*remote
,
1027 const char **refspec
, int refspec_nr
,
1028 const struct string_list
*push_options
,
1032 struct string_list needs_pushing
= STRING_LIST_INIT_DUP
;
1034 if (!find_unpushed_submodules(commits
, remote
->name
, &needs_pushing
))
1038 * Verify that the remote and refspec can be propagated to all
1039 * submodules. This check can be skipped if the remote and refspec
1040 * won't be propagated due to the remote being unconfigured (e.g. a URL
1041 * instead of a remote name).
1043 if (remote
->origin
!= REMOTE_UNCONFIGURED
)
1044 for (i
= 0; i
< needs_pushing
.nr
; i
++)
1045 submodule_push_check(needs_pushing
.items
[i
].string
,
1046 remote
, refspec
, refspec_nr
);
1048 /* Actually push the submodules */
1049 for (i
= 0; i
< needs_pushing
.nr
; i
++) {
1050 const char *path
= needs_pushing
.items
[i
].string
;
1051 fprintf(stderr
, "Pushing submodule '%s'\n", path
);
1052 if (!push_submodule(path
, remote
, refspec
, refspec_nr
,
1053 push_options
, dry_run
)) {
1054 fprintf(stderr
, "Unable to push submodule '%s'\n", path
);
1059 string_list_clear(&needs_pushing
, 0);
1064 static int append_oid_to_array(const char *ref
, const struct object_id
*oid
,
1065 int flags
, void *data
)
1067 struct oid_array
*array
= data
;
1068 oid_array_append(array
, oid
);
1072 void check_for_new_submodule_commits(struct object_id
*oid
)
1074 if (!initialized_fetch_ref_tips
) {
1075 for_each_ref(append_oid_to_array
, &ref_tips_before_fetch
);
1076 initialized_fetch_ref_tips
= 1;
1079 oid_array_append(&ref_tips_after_fetch
, oid
);
1082 static void calculate_changed_submodule_paths(void)
1084 struct argv_array argv
= ARGV_ARRAY_INIT
;
1085 struct string_list changed_submodules
= STRING_LIST_INIT_DUP
;
1086 const struct string_list_item
*item
;
1088 /* No need to check if there are no submodules configured */
1089 if (!submodule_from_path(NULL
, NULL
))
1092 argv_array_push(&argv
, "--"); /* argv[0] program name */
1093 oid_array_for_each_unique(&ref_tips_after_fetch
,
1094 append_oid_to_argv
, &argv
);
1095 argv_array_push(&argv
, "--not");
1096 oid_array_for_each_unique(&ref_tips_before_fetch
,
1097 append_oid_to_argv
, &argv
);
1100 * Collect all submodules (whether checked out or not) for which new
1101 * commits have been recorded upstream in "changed_submodule_paths".
1103 collect_changed_submodules(&changed_submodules
, &argv
);
1105 for_each_string_list_item(item
, &changed_submodules
) {
1106 struct oid_array
*commits
= item
->util
;
1107 const char *path
= item
->string
;
1109 if (!submodule_has_commits(path
, commits
))
1110 string_list_append(&changed_submodule_paths
, path
);
1113 free_submodules_oids(&changed_submodules
);
1114 argv_array_clear(&argv
);
1115 oid_array_clear(&ref_tips_before_fetch
);
1116 oid_array_clear(&ref_tips_after_fetch
);
1117 initialized_fetch_ref_tips
= 0;
1120 struct submodule_parallel_fetch
{
1122 struct argv_array args
;
1123 const char *work_tree
;
1125 int command_line_option
;
1129 #define SPF_INIT {0, ARGV_ARRAY_INIT, NULL, NULL, 0, 0, 0}
1131 static int get_next_submodule(struct child_process
*cp
,
1132 struct strbuf
*err
, void *data
, void **task_cb
)
1135 struct submodule_parallel_fetch
*spf
= data
;
1137 for (; spf
->count
< active_nr
; spf
->count
++) {
1138 struct strbuf submodule_path
= STRBUF_INIT
;
1139 struct strbuf submodule_git_dir
= STRBUF_INIT
;
1140 struct strbuf submodule_prefix
= STRBUF_INIT
;
1141 const struct cache_entry
*ce
= active_cache
[spf
->count
];
1142 const char *git_dir
, *default_argv
;
1143 const struct submodule
*submodule
;
1145 if (!S_ISGITLINK(ce
->ce_mode
))
1148 submodule
= submodule_from_path(null_sha1
, ce
->name
);
1150 submodule
= submodule_from_name(null_sha1
, ce
->name
);
1152 default_argv
= "yes";
1153 if (spf
->command_line_option
== RECURSE_SUBMODULES_DEFAULT
) {
1155 submodule
->fetch_recurse
!=
1156 RECURSE_SUBMODULES_NONE
) {
1157 if (submodule
->fetch_recurse
==
1158 RECURSE_SUBMODULES_OFF
)
1160 if (submodule
->fetch_recurse
==
1161 RECURSE_SUBMODULES_ON_DEMAND
) {
1162 if (!unsorted_string_list_lookup(&changed_submodule_paths
, ce
->name
))
1164 default_argv
= "on-demand";
1167 if ((config_fetch_recurse_submodules
== RECURSE_SUBMODULES_OFF
) ||
1168 gitmodules_is_unmerged
)
1170 if (config_fetch_recurse_submodules
== RECURSE_SUBMODULES_ON_DEMAND
) {
1171 if (!unsorted_string_list_lookup(&changed_submodule_paths
, ce
->name
))
1173 default_argv
= "on-demand";
1176 } else if (spf
->command_line_option
== RECURSE_SUBMODULES_ON_DEMAND
) {
1177 if (!unsorted_string_list_lookup(&changed_submodule_paths
, ce
->name
))
1179 default_argv
= "on-demand";
1182 strbuf_addf(&submodule_path
, "%s/%s", spf
->work_tree
, ce
->name
);
1183 strbuf_addf(&submodule_git_dir
, "%s/.git", submodule_path
.buf
);
1184 strbuf_addf(&submodule_prefix
, "%s%s/", spf
->prefix
, ce
->name
);
1185 git_dir
= read_gitfile(submodule_git_dir
.buf
);
1187 git_dir
= submodule_git_dir
.buf
;
1188 if (is_directory(git_dir
)) {
1189 child_process_init(cp
);
1190 cp
->dir
= strbuf_detach(&submodule_path
, NULL
);
1191 prepare_submodule_repo_env(&cp
->env_array
);
1194 strbuf_addf(err
, "Fetching submodule %s%s\n",
1195 spf
->prefix
, ce
->name
);
1196 argv_array_init(&cp
->args
);
1197 argv_array_pushv(&cp
->args
, spf
->args
.argv
);
1198 argv_array_push(&cp
->args
, default_argv
);
1199 argv_array_push(&cp
->args
, "--submodule-prefix");
1200 argv_array_push(&cp
->args
, submodule_prefix
.buf
);
1203 strbuf_release(&submodule_path
);
1204 strbuf_release(&submodule_git_dir
);
1205 strbuf_release(&submodule_prefix
);
1214 static int fetch_start_failure(struct strbuf
*err
,
1215 void *cb
, void *task_cb
)
1217 struct submodule_parallel_fetch
*spf
= cb
;
1224 static int fetch_finish(int retvalue
, struct strbuf
*err
,
1225 void *cb
, void *task_cb
)
1227 struct submodule_parallel_fetch
*spf
= cb
;
1235 int fetch_populated_submodules(const struct argv_array
*options
,
1236 const char *prefix
, int command_line_option
,
1237 int quiet
, int max_parallel_jobs
)
1240 struct submodule_parallel_fetch spf
= SPF_INIT
;
1242 spf
.work_tree
= get_git_work_tree();
1243 spf
.command_line_option
= command_line_option
;
1245 spf
.prefix
= prefix
;
1250 if (read_cache() < 0)
1251 die("index file corrupt");
1253 argv_array_push(&spf
.args
, "fetch");
1254 for (i
= 0; i
< options
->argc
; i
++)
1255 argv_array_push(&spf
.args
, options
->argv
[i
]);
1256 argv_array_push(&spf
.args
, "--recurse-submodules-default");
1257 /* default value, "--submodule-prefix" and its value are added later */
1259 if (max_parallel_jobs
< 0)
1260 max_parallel_jobs
= parallel_jobs
;
1262 calculate_changed_submodule_paths();
1263 run_processes_parallel(max_parallel_jobs
,
1265 fetch_start_failure
,
1269 argv_array_clear(&spf
.args
);
1271 string_list_clear(&changed_submodule_paths
, 1);
1275 unsigned is_submodule_modified(const char *path
, int ignore_untracked
)
1277 struct child_process cp
= CHILD_PROCESS_INIT
;
1278 struct strbuf buf
= STRBUF_INIT
;
1280 unsigned dirty_submodule
= 0;
1281 const char *git_dir
;
1282 int ignore_cp_exit_code
= 0;
1284 strbuf_addf(&buf
, "%s/.git", path
);
1285 git_dir
= read_gitfile(buf
.buf
);
1288 if (!is_git_directory(git_dir
)) {
1289 if (is_directory(git_dir
))
1290 die(_("'%s' not recognized as a git repository"), git_dir
);
1291 strbuf_release(&buf
);
1292 /* The submodule is not checked out, so it is not modified */
1297 argv_array_pushl(&cp
.args
, "status", "--porcelain=2", NULL
);
1298 if (ignore_untracked
)
1299 argv_array_push(&cp
.args
, "-uno");
1301 prepare_submodule_repo_env(&cp
.env_array
);
1306 if (start_command(&cp
))
1307 die("Could not run 'git status --porcelain=2' in submodule %s", path
);
1309 fp
= xfdopen(cp
.out
, "r");
1310 while (strbuf_getwholeline(&buf
, fp
, '\n') != EOF
) {
1311 /* regular untracked files */
1312 if (buf
.buf
[0] == '?')
1313 dirty_submodule
|= DIRTY_SUBMODULE_UNTRACKED
;
1315 if (buf
.buf
[0] == 'u' ||
1316 buf
.buf
[0] == '1' ||
1317 buf
.buf
[0] == '2') {
1318 /* T = line type, XY = status, SSSS = submodule state */
1319 if (buf
.len
< strlen("T XY SSSS"))
1320 die("BUG: invalid status --porcelain=2 line %s",
1323 if (buf
.buf
[5] == 'S' && buf
.buf
[8] == 'U')
1324 /* nested untracked file */
1325 dirty_submodule
|= DIRTY_SUBMODULE_UNTRACKED
;
1327 if (buf
.buf
[0] == 'u' ||
1328 buf
.buf
[0] == '2' ||
1329 memcmp(buf
.buf
+ 5, "S..U", 4))
1331 dirty_submodule
|= DIRTY_SUBMODULE_MODIFIED
;
1334 if ((dirty_submodule
& DIRTY_SUBMODULE_MODIFIED
) &&
1335 ((dirty_submodule
& DIRTY_SUBMODULE_UNTRACKED
) ||
1336 ignore_untracked
)) {
1338 * We're not interested in any further information from
1339 * the child any more, neither output nor its exit code.
1341 ignore_cp_exit_code
= 1;
1347 if (finish_command(&cp
) && !ignore_cp_exit_code
)
1348 die("'git status --porcelain=2' failed in submodule %s", path
);
1350 strbuf_release(&buf
);
1351 return dirty_submodule
;
1354 int submodule_uses_gitfile(const char *path
)
1356 struct child_process cp
= CHILD_PROCESS_INIT
;
1357 const char *argv
[] = {
1365 struct strbuf buf
= STRBUF_INIT
;
1366 const char *git_dir
;
1368 strbuf_addf(&buf
, "%s/.git", path
);
1369 git_dir
= read_gitfile(buf
.buf
);
1371 strbuf_release(&buf
);
1374 strbuf_release(&buf
);
1376 /* Now test that all nested submodules use a gitfile too */
1378 prepare_submodule_repo_env(&cp
.env_array
);
1384 if (run_command(&cp
))
1391 * Check if it is a bad idea to remove a submodule, i.e. if we'd lose data
1394 * Return 1 if we'd lose data, return 0 if the removal is fine,
1395 * and negative values for errors.
1397 int bad_to_remove_submodule(const char *path
, unsigned flags
)
1400 struct child_process cp
= CHILD_PROCESS_INIT
;
1401 struct strbuf buf
= STRBUF_INIT
;
1404 if (!file_exists(path
) || is_empty_dir(path
))
1407 if (!submodule_uses_gitfile(path
))
1410 argv_array_pushl(&cp
.args
, "status", "--porcelain",
1411 "--ignore-submodules=none", NULL
);
1413 if (flags
& SUBMODULE_REMOVAL_IGNORE_UNTRACKED
)
1414 argv_array_push(&cp
.args
, "-uno");
1416 argv_array_push(&cp
.args
, "-uall");
1418 if (!(flags
& SUBMODULE_REMOVAL_IGNORE_IGNORED_UNTRACKED
))
1419 argv_array_push(&cp
.args
, "--ignored");
1421 prepare_submodule_repo_env(&cp
.env_array
);
1426 if (start_command(&cp
)) {
1427 if (flags
& SUBMODULE_REMOVAL_DIE_ON_ERROR
)
1428 die(_("could not start 'git status' in submodule '%s'"),
1434 len
= strbuf_read(&buf
, cp
.out
, 1024);
1439 if (finish_command(&cp
)) {
1440 if (flags
& SUBMODULE_REMOVAL_DIE_ON_ERROR
)
1441 die(_("could not run 'git status' in submodule '%s'"),
1446 strbuf_release(&buf
);
1450 static const char *get_super_prefix_or_empty(void)
1452 const char *s
= get_super_prefix();
1458 static int submodule_has_dirty_index(const struct submodule
*sub
)
1460 struct child_process cp
= CHILD_PROCESS_INIT
;
1462 prepare_submodule_repo_env(&cp
.env_array
);
1465 argv_array_pushl(&cp
.args
, "diff-index", "--quiet",
1466 "--cached", "HEAD", NULL
);
1470 if (start_command(&cp
))
1471 die("could not recurse into submodule '%s'", sub
->path
);
1473 return finish_command(&cp
);
1476 static void submodule_reset_index(const char *path
)
1478 struct child_process cp
= CHILD_PROCESS_INIT
;
1479 prepare_submodule_repo_env(&cp
.env_array
);
1485 argv_array_pushf(&cp
.args
, "--super-prefix=%s%s/",
1486 get_super_prefix_or_empty(), path
);
1487 argv_array_pushl(&cp
.args
, "read-tree", "-u", "--reset", NULL
);
1489 argv_array_push(&cp
.args
, EMPTY_TREE_SHA1_HEX
);
1491 if (run_command(&cp
))
1492 die("could not reset submodule index");
1496 * Moves a submodule at a given path from a given head to another new head.
1497 * For edge cases (a submodule coming into existence or removing a submodule)
1498 * pass NULL for old or new respectively.
1500 int submodule_move_head(const char *path
,
1506 struct child_process cp
= CHILD_PROCESS_INIT
;
1507 const struct submodule
*sub
;
1508 int *error_code_ptr
, error_code
;
1510 if (!is_submodule_initialized(path
))
1513 if (flags
& SUBMODULE_MOVE_HEAD_FORCE
)
1515 * Pass non NULL pointer to is_submodule_populated_gently
1516 * to prevent die()-ing. We'll use connect_work_tree_and_git_dir
1517 * to fixup the submodule in the force case later.
1519 error_code_ptr
= &error_code
;
1521 error_code_ptr
= NULL
;
1523 if (old
&& !is_submodule_populated_gently(path
, error_code_ptr
))
1526 sub
= submodule_from_path(null_sha1
, path
);
1529 die("BUG: could not get submodule information for '%s'", path
);
1531 if (old
&& !(flags
& SUBMODULE_MOVE_HEAD_FORCE
)) {
1532 /* Check if the submodule has a dirty index. */
1533 if (submodule_has_dirty_index(sub
))
1534 return error(_("submodule '%s' has dirty index"), path
);
1537 if (!(flags
& SUBMODULE_MOVE_HEAD_DRY_RUN
)) {
1539 if (!submodule_uses_gitfile(path
))
1540 absorb_git_dir_into_superproject("", path
,
1541 ABSORB_GITDIR_RECURSE_SUBMODULES
);
1543 char *gitdir
= xstrfmt("%s/modules/%s",
1544 get_git_common_dir(), sub
->name
);
1545 connect_work_tree_and_git_dir(path
, gitdir
);
1548 /* make sure the index is clean as well */
1549 submodule_reset_index(path
);
1552 if (old
&& (flags
& SUBMODULE_MOVE_HEAD_FORCE
)) {
1553 char *gitdir
= xstrfmt("%s/modules/%s",
1554 get_git_common_dir(), sub
->name
);
1555 connect_work_tree_and_git_dir(path
, gitdir
);
1560 prepare_submodule_repo_env(&cp
.env_array
);
1566 argv_array_pushf(&cp
.args
, "--super-prefix=%s%s/",
1567 get_super_prefix_or_empty(), path
);
1568 argv_array_pushl(&cp
.args
, "read-tree", "--recurse-submodules", NULL
);
1570 if (flags
& SUBMODULE_MOVE_HEAD_DRY_RUN
)
1571 argv_array_push(&cp
.args
, "-n");
1573 argv_array_push(&cp
.args
, "-u");
1575 if (flags
& SUBMODULE_MOVE_HEAD_FORCE
)
1576 argv_array_push(&cp
.args
, "--reset");
1578 argv_array_push(&cp
.args
, "-m");
1580 argv_array_push(&cp
.args
, old
? old
: EMPTY_TREE_SHA1_HEX
);
1581 argv_array_push(&cp
.args
, new ? new : EMPTY_TREE_SHA1_HEX
);
1583 if (run_command(&cp
)) {
1588 if (!(flags
& SUBMODULE_MOVE_HEAD_DRY_RUN
)) {
1590 child_process_init(&cp
);
1591 /* also set the HEAD accordingly */
1596 prepare_submodule_repo_env(&cp
.env_array
);
1597 argv_array_pushl(&cp
.args
, "update-ref", "HEAD", new, NULL
);
1599 if (run_command(&cp
)) {
1604 struct strbuf sb
= STRBUF_INIT
;
1606 strbuf_addf(&sb
, "%s/.git", path
);
1607 unlink_or_warn(sb
.buf
);
1608 strbuf_release(&sb
);
1610 if (is_empty_dir(path
))
1611 rmdir_or_warn(path
);
1618 static int find_first_merges(struct object_array
*result
, const char *path
,
1619 struct commit
*a
, struct commit
*b
)
1622 struct object_array merges
= OBJECT_ARRAY_INIT
;
1623 struct commit
*commit
;
1624 int contains_another
;
1626 char merged_revision
[42];
1627 const char *rev_args
[] = { "rev-list", "--merges", "--ancestry-path",
1628 "--all", merged_revision
, NULL
};
1629 struct rev_info revs
;
1630 struct setup_revision_opt rev_opts
;
1632 memset(result
, 0, sizeof(struct object_array
));
1633 memset(&rev_opts
, 0, sizeof(rev_opts
));
1635 /* get all revisions that merge commit a */
1636 xsnprintf(merged_revision
, sizeof(merged_revision
), "^%s",
1637 oid_to_hex(&a
->object
.oid
));
1638 init_revisions(&revs
, NULL
);
1639 rev_opts
.submodule
= path
;
1640 setup_revisions(ARRAY_SIZE(rev_args
)-1, rev_args
, &revs
, &rev_opts
);
1642 /* save all revisions from the above list that contain b */
1643 if (prepare_revision_walk(&revs
))
1644 die("revision walk setup failed");
1645 while ((commit
= get_revision(&revs
)) != NULL
) {
1646 struct object
*o
= &(commit
->object
);
1647 if (in_merge_bases(b
, commit
))
1648 add_object_array(o
, NULL
, &merges
);
1650 reset_revision_walk();
1652 /* Now we've got all merges that contain a and b. Prune all
1653 * merges that contain another found merge and save them in
1656 for (i
= 0; i
< merges
.nr
; i
++) {
1657 struct commit
*m1
= (struct commit
*) merges
.objects
[i
].item
;
1659 contains_another
= 0;
1660 for (j
= 0; j
< merges
.nr
; j
++) {
1661 struct commit
*m2
= (struct commit
*) merges
.objects
[j
].item
;
1662 if (i
!= j
&& in_merge_bases(m2
, m1
)) {
1663 contains_another
= 1;
1668 if (!contains_another
)
1669 add_object_array(merges
.objects
[i
].item
, NULL
, result
);
1672 free(merges
.objects
);
1676 static void print_commit(struct commit
*commit
)
1678 struct strbuf sb
= STRBUF_INIT
;
1679 struct pretty_print_context ctx
= {0};
1680 ctx
.date_mode
.type
= DATE_NORMAL
;
1681 format_commit_message(commit
, " %h: %m %s", &sb
, &ctx
);
1682 fprintf(stderr
, "%s\n", sb
.buf
);
1683 strbuf_release(&sb
);
1686 #define MERGE_WARNING(path, msg) \
1687 warning("Failed to merge submodule %s (%s)", path, msg);
1689 int merge_submodule(struct object_id
*result
, const char *path
,
1690 const struct object_id
*base
, const struct object_id
*a
,
1691 const struct object_id
*b
, int search
)
1693 struct commit
*commit_base
, *commit_a
, *commit_b
;
1695 struct object_array merges
;
1699 /* store a in result in case we fail */
1702 /* we can not handle deletion conflicts */
1703 if (is_null_oid(base
))
1710 if (add_submodule_odb(path
)) {
1711 MERGE_WARNING(path
, "not checked out");
1715 if (!(commit_base
= lookup_commit_reference(base
)) ||
1716 !(commit_a
= lookup_commit_reference(a
)) ||
1717 !(commit_b
= lookup_commit_reference(b
))) {
1718 MERGE_WARNING(path
, "commits not present");
1722 /* check whether both changes are forward */
1723 if (!in_merge_bases(commit_base
, commit_a
) ||
1724 !in_merge_bases(commit_base
, commit_b
)) {
1725 MERGE_WARNING(path
, "commits don't follow merge-base");
1729 /* Case #1: a is contained in b or vice versa */
1730 if (in_merge_bases(commit_a
, commit_b
)) {
1734 if (in_merge_bases(commit_b
, commit_a
)) {
1740 * Case #2: There are one or more merges that contain a and b in
1741 * the submodule. If there is only one, then present it as a
1742 * suggestion to the user, but leave it marked unmerged so the
1743 * user needs to confirm the resolution.
1746 /* Skip the search if makes no sense to the calling context. */
1750 /* find commit which merges them */
1751 parent_count
= find_first_merges(&merges
, path
, commit_a
, commit_b
);
1752 switch (parent_count
) {
1754 MERGE_WARNING(path
, "merge following commits not found");
1758 MERGE_WARNING(path
, "not fast-forward");
1759 fprintf(stderr
, "Found a possible merge resolution "
1760 "for the submodule:\n");
1761 print_commit((struct commit
*) merges
.objects
[0].item
);
1763 "If this is correct simply add it to the index "
1766 " git update-index --cacheinfo 160000 %s \"%s\"\n\n"
1767 "which will accept this suggestion.\n",
1768 oid_to_hex(&merges
.objects
[0].item
->oid
), path
);
1772 MERGE_WARNING(path
, "multiple merges found");
1773 for (i
= 0; i
< merges
.nr
; i
++)
1774 print_commit((struct commit
*) merges
.objects
[i
].item
);
1777 free(merges
.objects
);
1781 int parallel_submodules(void)
1783 return parallel_jobs
;
1787 * Embeds a single submodules git directory into the superprojects git dir,
1790 static void relocate_single_git_dir_into_superproject(const char *prefix
,
1793 char *old_git_dir
= NULL
, *real_old_git_dir
= NULL
, *real_new_git_dir
= NULL
;
1794 const char *new_git_dir
;
1795 const struct submodule
*sub
;
1797 if (submodule_uses_worktrees(path
))
1798 die(_("relocate_gitdir for submodule '%s' with "
1799 "more than one worktree not supported"), path
);
1801 old_git_dir
= xstrfmt("%s/.git", path
);
1802 if (read_gitfile(old_git_dir
))
1803 /* If it is an actual gitfile, it doesn't need migration. */
1806 real_old_git_dir
= real_pathdup(old_git_dir
, 1);
1808 sub
= submodule_from_path(null_sha1
, path
);
1810 die(_("could not lookup name for submodule '%s'"), path
);
1812 new_git_dir
= git_path("modules/%s", sub
->name
);
1813 if (safe_create_leading_directories_const(new_git_dir
) < 0)
1814 die(_("could not create directory '%s'"), new_git_dir
);
1815 real_new_git_dir
= real_pathdup(new_git_dir
, 1);
1817 fprintf(stderr
, _("Migrating git directory of '%s%s' from\n'%s' to\n'%s'\n"),
1818 get_super_prefix_or_empty(), path
,
1819 real_old_git_dir
, real_new_git_dir
);
1821 relocate_gitdir(path
, real_old_git_dir
, real_new_git_dir
);
1824 free(real_old_git_dir
);
1825 free(real_new_git_dir
);
1829 * Migrate the git directory of the submodule given by path from
1830 * having its git directory within the working tree to the git dir nested
1831 * in its superprojects git dir under modules/.
1833 void absorb_git_dir_into_superproject(const char *prefix
,
1838 const char *sub_git_dir
;
1839 struct strbuf gitdir
= STRBUF_INIT
;
1840 strbuf_addf(&gitdir
, "%s/.git", path
);
1841 sub_git_dir
= resolve_gitdir_gently(gitdir
.buf
, &err_code
);
1843 /* Not populated? */
1845 const struct submodule
*sub
;
1847 if (err_code
== READ_GITFILE_ERR_STAT_FAILED
) {
1848 /* unpopulated as expected */
1849 strbuf_release(&gitdir
);
1853 if (err_code
!= READ_GITFILE_ERR_NOT_A_REPO
)
1854 /* We don't know what broke here. */
1855 read_gitfile_error_die(err_code
, path
, NULL
);
1858 * Maybe populated, but no git directory was found?
1859 * This can happen if the superproject is a submodule
1860 * itself and was just absorbed. The absorption of the
1861 * superproject did not rewrite the git file links yet,
1864 sub
= submodule_from_path(null_sha1
, path
);
1866 die(_("could not lookup name for submodule '%s'"), path
);
1867 connect_work_tree_and_git_dir(path
,
1868 git_path("modules/%s", sub
->name
));
1870 /* Is it already absorbed into the superprojects git dir? */
1871 char *real_sub_git_dir
= real_pathdup(sub_git_dir
, 1);
1872 char *real_common_git_dir
= real_pathdup(get_git_common_dir(), 1);
1874 if (!starts_with(real_sub_git_dir
, real_common_git_dir
))
1875 relocate_single_git_dir_into_superproject(prefix
, path
);
1877 free(real_sub_git_dir
);
1878 free(real_common_git_dir
);
1880 strbuf_release(&gitdir
);
1882 if (flags
& ABSORB_GITDIR_RECURSE_SUBMODULES
) {
1883 struct child_process cp
= CHILD_PROCESS_INIT
;
1884 struct strbuf sb
= STRBUF_INIT
;
1886 if (flags
& ~ABSORB_GITDIR_RECURSE_SUBMODULES
)
1887 die("BUG: we don't know how to pass the flags down?");
1889 strbuf_addstr(&sb
, get_super_prefix_or_empty());
1890 strbuf_addstr(&sb
, path
);
1891 strbuf_addch(&sb
, '/');
1896 argv_array_pushl(&cp
.args
, "--super-prefix", sb
.buf
,
1897 "submodule--helper",
1898 "absorb-git-dirs", NULL
);
1899 prepare_submodule_repo_env(&cp
.env_array
);
1900 if (run_command(&cp
))
1901 die(_("could not recurse into submodule '%s'"), path
);
1903 strbuf_release(&sb
);
1907 const char *get_superproject_working_tree(void)
1909 struct child_process cp
= CHILD_PROCESS_INIT
;
1910 struct strbuf sb
= STRBUF_INIT
;
1911 const char *one_up
= real_path_if_valid("../");
1912 const char *cwd
= xgetcwd();
1913 const char *ret
= NULL
;
1914 const char *subpath
;
1918 if (!is_inside_work_tree())
1921 * We might have a superproject, but it is harder
1929 subpath
= relative_path(cwd
, one_up
, &sb
);
1931 prepare_submodule_repo_env(&cp
.env_array
);
1932 argv_array_pop(&cp
.env_array
);
1934 argv_array_pushl(&cp
.args
, "--literal-pathspecs", "-C", "..",
1935 "ls-files", "-z", "--stage", "--full-name", "--",
1944 if (start_command(&cp
))
1945 die(_("could not start ls-files in .."));
1947 len
= strbuf_read(&sb
, cp
.out
, PATH_MAX
);
1950 if (starts_with(sb
.buf
, "160000")) {
1952 int cwd_len
= strlen(cwd
);
1953 char *super_sub
, *super_wt
;
1956 * There is a superproject having this repo as a submodule.
1957 * The format is <mode> SP <hash> SP <stage> TAB <full name> \0,
1958 * We're only interested in the name after the tab.
1960 super_sub
= strchr(sb
.buf
, '\t') + 1;
1961 super_sub_len
= sb
.buf
+ sb
.len
- super_sub
- 1;
1963 if (super_sub_len
> cwd_len
||
1964 strcmp(&cwd
[cwd_len
- super_sub_len
], super_sub
))
1965 die (_("BUG: returned path string doesn't match cwd?"));
1967 super_wt
= xstrdup(cwd
);
1968 super_wt
[cwd_len
- super_sub_len
] = '\0';
1970 ret
= real_path(super_wt
);
1973 strbuf_release(&sb
);
1975 code
= finish_command(&cp
);
1978 /* '../' is not a git repository */
1980 if (code
== 0 && len
== 0)
1981 /* There is an unrelated git repository at '../' */
1984 die(_("ls-tree returned unexpected return code %d"), code
);
1989 int submodule_to_gitdir(struct strbuf
*buf
, const char *submodule
)
1991 const struct submodule
*sub
;
1992 const char *git_dir
;
1996 strbuf_addstr(buf
, submodule
);
1997 strbuf_complete(buf
, '/');
1998 strbuf_addstr(buf
, ".git");
2000 git_dir
= read_gitfile(buf
->buf
);
2003 strbuf_addstr(buf
, git_dir
);
2005 if (!is_git_directory(buf
->buf
)) {
2006 gitmodules_config();
2007 sub
= submodule_from_path(null_sha1
, submodule
);
2013 strbuf_git_path(buf
, "%s/%s", "modules", sub
->name
);