2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
18 static int update
= 0;
19 static int index_only
= 0;
20 static int nontrivial_merge
= 0;
21 static int trivial_merges_only
= 0;
22 static int aggressive
= 0;
23 static int verbose_update
= 0;
24 static volatile int progress_update
= 0;
26 static int head_idx
= -1;
27 static int merge_size
= 0;
29 static struct object_list
*trees
= NULL
;
31 static struct cache_entry df_conflict_entry
= {
34 static struct tree_entry_list df_conflict_list
= {
36 .next
= &df_conflict_list
39 typedef int (*merge_fn_t
)(struct cache_entry
**src
);
41 static int entcmp(char *name1
, int dir1
, char *name2
, int dir2
)
43 int len1
= strlen(name1
);
44 int len2
= strlen(name2
);
45 int len
= len1
< len2
? len1
: len2
;
46 int ret
= memcmp(name1
, name2
, len
);
56 ret
= (c1
< c2
) ? -1 : (c1
> c2
) ? 1 : 0;
62 static int unpack_trees_rec(struct tree_entry_list
**posns
, int len
,
63 const char *base
, merge_fn_t fn
, int *indpos
)
65 int baselen
= strlen(base
);
66 int src_size
= len
+ 1;
73 struct tree_entry_list
**subposns
;
74 struct cache_entry
**src
;
80 /* Find the first name in the input. */
86 if (merge
&& *indpos
< active_nr
) {
87 /* This is a bit tricky: */
88 /* If the index has a subdirectory (with
89 * contents) as the first name, it'll get a
90 * filename like "foo/bar". But that's after
91 * "foo", so the entry in trees will get
92 * handled first, at which point we'll go into
93 * "foo", and deal with "bar" from the index,
94 * because the base will be "foo/". The only
95 * way we can actually have "foo/bar" first of
96 * all the things is if the trees don't
97 * contain "foo" at all, in which case we'll
98 * handle "foo/bar" without going into the
99 * directory, but that's fine (and will return
100 * an error anyway, with the added unknown
104 cache_name
= active_cache
[*indpos
]->name
;
105 if (strlen(cache_name
) > baselen
&&
106 !memcmp(cache_name
, base
, baselen
)) {
107 cache_name
+= baselen
;
116 printf("index %s\n", first
);
118 for (i
= 0; i
< len
; i
++) {
119 if (!posns
[i
] || posns
[i
] == &df_conflict_list
)
122 printf("%d %s\n", i
+ 1, posns
[i
]->name
);
124 if (!first
|| entcmp(first
, firstdir
,
126 posns
[i
]->directory
) > 0) {
127 first
= posns
[i
]->name
;
128 firstdir
= posns
[i
]->directory
;
131 /* No name means we're done */
135 pathlen
= strlen(first
);
136 ce_size
= cache_entry_size(baselen
+ pathlen
);
138 src
= xcalloc(src_size
, sizeof(struct cache_entry
*));
140 subposns
= xcalloc(len
, sizeof(struct tree_list_entry
*));
142 if (cache_name
&& !strcmp(cache_name
, first
)) {
144 src
[0] = active_cache
[*indpos
];
145 remove_cache_entry_at(*indpos
);
148 for (i
= 0; i
< len
; i
++) {
149 struct cache_entry
*ce
;
152 (posns
[i
] != &df_conflict_list
&&
153 strcmp(first
, posns
[i
]->name
))) {
157 if (posns
[i
] == &df_conflict_list
) {
158 src
[i
+ merge
] = &df_conflict_entry
;
162 if (posns
[i
]->directory
) {
164 parse_tree(posns
[i
]->item
.tree
);
165 subposns
[i
] = posns
[i
]->item
.tree
->entries
;
166 posns
[i
] = posns
[i
]->next
;
167 src
[i
+ merge
] = &df_conflict_entry
;
173 else if (i
+ 1 < head_idx
)
175 else if (i
+ 1 > head_idx
)
180 ce
= xcalloc(1, ce_size
);
181 ce
->ce_mode
= create_ce_mode(posns
[i
]->mode
);
182 ce
->ce_flags
= create_ce_flags(baselen
+ pathlen
,
184 memcpy(ce
->name
, base
, baselen
);
185 memcpy(ce
->name
+ baselen
, first
, pathlen
+ 1);
189 memcpy(ce
->sha1
, posns
[i
]->item
.any
->sha1
, 20);
191 subposns
[i
] = &df_conflict_list
;
192 posns
[i
] = posns
[i
]->next
;
199 printf("%s:\n", first
);
200 for (i
= 0; i
< src_size
; i
++) {
203 printf("%s\n", sha1_to_hex(src
[i
]->sha1
));
211 printf("Added %d entries\n", ret
);
215 for (i
= 0; i
< src_size
; i
++) {
217 add_cache_entry(src
[i
], ADD_CACHE_OK_TO_ADD
|ADD_CACHE_SKIP_DFCHECK
);
223 char *newbase
= xmalloc(baselen
+ 2 + pathlen
);
224 memcpy(newbase
, base
, baselen
);
225 memcpy(newbase
+ baselen
, first
, pathlen
);
226 newbase
[baselen
+ pathlen
] = '/';
227 newbase
[baselen
+ pathlen
+ 1] = '\0';
228 if (unpack_trees_rec(subposns
, len
, newbase
, fn
,
238 static void reject_merge(struct cache_entry
*ce
)
240 die("Entry '%s' would be overwritten by merge. Cannot merge.",
244 /* Unlink the last component and attempt to remove leading
245 * directories, in case this unlink is the removal of the
246 * last entry in the directory -- empty directories are removed.
248 static void unlink_entry(char *name
)
257 cp
= strrchr(name
, '/');
264 status
= rmdir(name
);
273 static void progress_interval(int signum
)
278 static void setup_progress_signal(void)
283 memset(&sa
, 0, sizeof(sa
));
284 sa
.sa_handler
= progress_interval
;
285 sigemptyset(&sa
.sa_mask
);
286 sa
.sa_flags
= SA_RESTART
;
287 sigaction(SIGALRM
, &sa
, NULL
);
289 v
.it_interval
.tv_sec
= 1;
290 v
.it_interval
.tv_usec
= 0;
291 v
.it_value
= v
.it_interval
;
292 setitimer(ITIMER_REAL
, &v
, NULL
);
295 static void check_updates(struct cache_entry
**src
, int nr
)
297 static struct checkout state
= {
303 unsigned short mask
= htons(CE_UPDATE
);
304 unsigned last_percent
= 200, cnt
= 0, total
= 0;
306 if (update
&& verbose_update
) {
307 for (total
= cnt
= 0; cnt
< nr
; cnt
++) {
308 struct cache_entry
*ce
= src
[cnt
];
309 if (!ce
->ce_mode
|| ce
->ce_flags
& mask
)
313 /* Don't bother doing this for very small updates */
318 fprintf(stderr
, "Checking files out...\n");
319 setup_progress_signal();
326 struct cache_entry
*ce
= *src
++;
329 if (!ce
->ce_mode
|| ce
->ce_flags
& mask
) {
332 percent
= (cnt
* 100) / total
;
333 if (percent
!= last_percent
||
335 fprintf(stderr
, "%4u%% (%u/%u) done\r",
336 percent
, cnt
, total
);
337 last_percent
= percent
;
343 unlink_entry(ce
->name
);
346 if (ce
->ce_flags
& mask
) {
347 ce
->ce_flags
&= ~mask
;
349 checkout_entry(ce
, &state
, NULL
);
353 signal(SIGALRM
, SIG_IGN
);
358 static int unpack_trees(merge_fn_t fn
)
361 unsigned len
= object_list_length(trees
);
362 struct tree_entry_list
**posns
;
364 struct object_list
*posn
= trees
;
368 posns
= xmalloc(len
* sizeof(struct tree_entry_list
*));
369 for (i
= 0; i
< len
; i
++) {
370 posns
[i
] = ((struct tree
*) posn
->item
)->entries
;
373 if (unpack_trees_rec(posns
, len
, "", fn
, &indpos
))
377 if (trivial_merges_only
&& nontrivial_merge
)
378 die("Merge requires file-level merging");
380 check_updates(active_cache
, active_nr
);
384 static int list_tree(unsigned char *sha1
)
386 struct tree
*tree
= parse_tree_indirect(sha1
);
389 object_list_append(&tree
->object
, &trees
);
393 static int same(struct cache_entry
*a
, struct cache_entry
*b
)
399 return a
->ce_mode
== b
->ce_mode
&&
400 !memcmp(a
->sha1
, b
->sha1
, 20);
405 * When a CE gets turned into an unmerged entry, we
406 * want it to be up-to-date
408 static void verify_uptodate(struct cache_entry
*ce
)
412 if (index_only
|| reset
)
415 if (!lstat(ce
->name
, &st
)) {
416 unsigned changed
= ce_match_stat(ce
, &st
, 1);
422 ce
->ce_flags
|= htons(CE_UPDATE
);
427 die("Entry '%s' not uptodate. Cannot merge.", ce
->name
);
431 * We do not want to remove or overwrite a working tree file that
434 static void verify_absent(const char *path
, const char *action
)
438 if (index_only
|| reset
|| !update
)
440 if (!lstat(path
, &st
))
441 die("Untracked working tree file '%s' "
442 "would be %s by merge.", path
, action
);
445 static int merged_entry(struct cache_entry
*merge
, struct cache_entry
*old
)
447 merge
->ce_flags
|= htons(CE_UPDATE
);
450 * See if we can re-use the old CE directly?
451 * That way we get the uptodate stat info.
453 * This also removes the UPDATE flag on
456 if (same(old
, merge
)) {
459 verify_uptodate(old
);
463 verify_absent(merge
->name
, "overwritten");
465 merge
->ce_flags
&= ~htons(CE_STAGEMASK
);
466 add_cache_entry(merge
, ADD_CACHE_OK_TO_ADD
);
470 static int deleted_entry(struct cache_entry
*ce
, struct cache_entry
*old
)
473 verify_uptodate(old
);
475 verify_absent(ce
->name
, "removed");
477 add_cache_entry(ce
, ADD_CACHE_OK_TO_ADD
);
481 static int keep_entry(struct cache_entry
*ce
)
483 add_cache_entry(ce
, ADD_CACHE_OK_TO_ADD
);
488 static void show_stage_entry(FILE *o
,
489 const char *label
, const struct cache_entry
*ce
)
492 fprintf(o
, "%s (missing)\n", label
);
494 fprintf(o
, "%s%06o %s %d\t%s\n",
497 sha1_to_hex(ce
->sha1
),
503 static int threeway_merge(struct cache_entry
**stages
)
505 struct cache_entry
*index
;
506 struct cache_entry
*head
;
507 struct cache_entry
*remote
= stages
[head_idx
+ 1];
510 int remote_match
= 0;
511 const char *path
= NULL
;
513 int df_conflict_head
= 0;
514 int df_conflict_remote
= 0;
516 int any_anc_missing
= 0;
517 int no_anc_exists
= 1;
520 for (i
= 1; i
< head_idx
; i
++) {
525 path
= stages
[i
]->name
;
531 head
= stages
[head_idx
];
533 if (head
== &df_conflict_entry
) {
534 df_conflict_head
= 1;
538 if (remote
== &df_conflict_entry
) {
539 df_conflict_remote
= 1;
550 /* First, if there's a #16 situation, note that to prevent #13
553 if (!same(remote
, head
)) {
554 for (i
= 1; i
< head_idx
; i
++) {
555 if (same(stages
[i
], head
)) {
558 if (same(stages
[i
], remote
)) {
564 /* We start with cases where the index is allowed to match
565 * something other than the head: #14(ALT) and #2ALT, where it
566 * is permitted to match the result instead.
568 /* #14, #14ALT, #2ALT */
569 if (remote
&& !df_conflict_head
&& head_match
&& !remote_match
) {
570 if (index
&& !same(index
, remote
) && !same(index
, head
))
572 return merged_entry(remote
, index
);
575 * If we have an entry in the index cache, then we want to
576 * make sure that it matches head.
578 if (index
&& !same(index
, head
)) {
584 if (same(head
, remote
))
585 return merged_entry(head
, index
);
587 if (!df_conflict_remote
&& remote_match
&& !head_match
)
588 return merged_entry(head
, index
);
592 if (!head
&& !remote
&& any_anc_missing
)
595 /* Under the new "aggressive" rule, we resolve mostly trivial
596 * cases that we historically had git-merge-one-file resolve.
599 int head_deleted
= !head
&& !df_conflict_head
;
600 int remote_deleted
= !remote
&& !df_conflict_remote
;
603 * Deleted in one and unchanged in the other.
605 if ((head_deleted
&& remote_deleted
) ||
606 (head_deleted
&& remote
&& remote_match
) ||
607 (remote_deleted
&& head
&& head_match
)) {
609 return deleted_entry(index
, index
);
611 verify_absent(path
, "removed");
615 * Added in both, identically.
617 if (no_anc_exists
&& head
&& remote
&& same(head
, remote
))
618 return merged_entry(head
, index
);
622 /* Below are "no merge" cases, which require that the index be
623 * up-to-date to avoid the files getting overwritten with
624 * conflict resolution files.
627 verify_uptodate(index
);
630 verify_absent(path
, "overwritten");
632 nontrivial_merge
= 1;
634 /* #2, #3, #4, #6, #7, #9, #11. */
636 if (!head_match
|| !remote_match
) {
637 for (i
= 1; i
< head_idx
; i
++) {
639 keep_entry(stages
[i
]);
647 fprintf(stderr
, "read-tree: warning #16 detected\n");
648 show_stage_entry(stderr
, "head ", stages
[head_match
]);
649 show_stage_entry(stderr
, "remote ", stages
[remote_match
]);
652 if (head
) { count
+= keep_entry(head
); }
653 if (remote
) { count
+= keep_entry(remote
); }
660 * The rule is to "carry forward" what is in the index without losing
661 * information across a "fast forward", favoring a successful merge
662 * over a merge failure when it makes sense. For details of the
663 * "carry forward" rule, please see <Documentation/git-read-tree.txt>.
666 static int twoway_merge(struct cache_entry
**src
)
668 struct cache_entry
*current
= src
[0];
669 struct cache_entry
*oldtree
= src
[1], *newtree
= src
[2];
672 return error("Cannot do a twoway merge of %d trees",
676 if ((!oldtree
&& !newtree
) || /* 4 and 5 */
677 (!oldtree
&& newtree
&&
678 same(current
, newtree
)) || /* 6 and 7 */
679 (oldtree
&& newtree
&&
680 same(oldtree
, newtree
)) || /* 14 and 15 */
681 (oldtree
&& newtree
&&
682 !same(oldtree
, newtree
) && /* 18 and 19*/
683 same(current
, newtree
))) {
684 return keep_entry(current
);
686 else if (oldtree
&& !newtree
&& same(current
, oldtree
)) {
688 return deleted_entry(oldtree
, current
);
690 else if (oldtree
&& newtree
&&
691 same(current
, oldtree
) && !same(current
, newtree
)) {
693 return merged_entry(newtree
, current
);
696 /* all other failures */
698 reject_merge(oldtree
);
700 reject_merge(current
);
702 reject_merge(newtree
);
707 return merged_entry(newtree
, current
);
709 return deleted_entry(oldtree
, current
);
716 * - take the stat information from stage0, take the data from stage1
718 static int oneway_merge(struct cache_entry
**src
)
720 struct cache_entry
*old
= src
[0];
721 struct cache_entry
*a
= src
[1];
724 return error("Cannot do a oneway merge of %d trees",
728 return deleted_entry(old
, old
);
729 if (old
&& same(old
, a
)) {
732 if (lstat(old
->name
, &st
) ||
733 ce_match_stat(old
, &st
, 1))
734 old
->ce_flags
|= htons(CE_UPDATE
);
736 return keep_entry(old
);
738 return merged_entry(a
, old
);
741 static int read_cache_unmerged(void)
744 struct cache_entry
**dst
;
749 for (i
= 0; i
< active_nr
; i
++) {
750 struct cache_entry
*ce
= active_cache
[i
];
759 active_nr
-= deleted
;
763 static const char read_tree_usage
[] = "git-read-tree (<sha> | -m [--aggressive] [-u | -i] <sha1> [<sha2> [<sha3>]])";
765 static struct cache_file cache_file
;
767 int cmd_read_tree(int argc
, const char **argv
, char **envp
)
769 int i
, newfd
, stage
= 0;
770 unsigned char sha1
[20];
771 merge_fn_t fn
= NULL
;
773 setup_git_directory();
774 git_config(git_default_config
);
776 newfd
= hold_index_file_for_update(&cache_file
, get_index_file());
778 die("unable to create new cachefile");
780 git_config(git_default_config
);
784 for (i
= 1; i
< argc
; i
++) {
785 const char *arg
= argv
[i
];
787 /* "-u" means "update", meaning that a merge will update
790 if (!strcmp(arg
, "-u")) {
795 if (!strcmp(arg
, "-v")) {
800 /* "-i" means "index only", meaning that a merge will
801 * not even look at the working tree.
803 if (!strcmp(arg
, "-i")) {
808 /* This differs from "-m" in that we'll silently ignore unmerged entries */
809 if (!strcmp(arg
, "--reset")) {
811 usage(read_tree_usage
);
815 read_cache_unmerged();
819 if (!strcmp(arg
, "--trivial")) {
820 trivial_merges_only
= 1;
824 if (!strcmp(arg
, "--aggressive")) {
829 /* "-m" stands for "merge", meaning we start in stage 1 */
830 if (!strcmp(arg
, "-m")) {
832 usage(read_tree_usage
);
833 if (read_cache_unmerged())
834 die("you need to resolve your current index first");
840 /* using -u and -i at the same time makes no sense */
841 if (1 < index_only
+ update
)
842 usage(read_tree_usage
);
844 if (get_sha1(arg
, sha1
))
845 die("Not a valid object name %s", arg
);
846 if (list_tree(sha1
) < 0)
847 die("failed to unpack tree object %s", arg
);
850 if ((update
||index_only
) && !merge
)
851 usage(read_tree_usage
);
855 die("just how do you expect me to merge %d trees?", stage
-1);
872 head_idx
= stage
- 2;
878 if (write_cache(newfd
, active_cache
, active_nr
) ||
879 commit_index_file(&cache_file
))
880 die("unable to write new index file");