summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-09-07 08:33:45 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-09-07 08:33:45 (GMT)
commit8895cbcda15bec1cfe62bc7fb91cef044fceac20 (patch)
tree28945b8e8cd71831525763cfb16af21694f1390a
parent0ea2582d1cbbacd91eb0f040c4994ecd2bb6cdb9 (diff)
parentcb2b9f5ee15547e878c668504140c66f3a42d81c (diff)
downloadgit-8895cbcda15bec1cfe62bc7fb91cef044fceac20.zip
git-8895cbcda15bec1cfe62bc7fb91cef044fceac20.tar.gz
git-8895cbcda15bec1cfe62bc7fb91cef044fceac20.tar.bz2
Merge branch 'pm/diff'
* pm/diff: diff-index --cc shows a 3-way diff between HEAD, index and working tree.
-rw-r--r--diff-lib.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/diff-lib.c b/diff-lib.c
index 9edfa92..fc69fb9 100644
--- a/diff-lib.c
+++ b/diff-lib.c
@@ -213,6 +213,31 @@ static int show_modified(struct rev_info *revs,
return -1;
}
+ if (revs->combine_merges && !cached &&
+ (hashcmp(sha1, old->sha1) || hashcmp(old->sha1, new->sha1))) {
+ struct combine_diff_path *p;
+ int pathlen = ce_namelen(new);
+
+ p = xmalloc(combine_diff_path_size(2, pathlen));
+ p->path = (char *) &p->parent[2];
+ p->next = NULL;
+ p->len = pathlen;
+ memcpy(p->path, new->name, pathlen);
+ p->path[pathlen] = 0;
+ p->mode = ntohl(mode);
+ hashclr(p->sha1);
+ memset(p->parent, 0, 2 * sizeof(struct combine_diff_parent));
+ p->parent[0].status = DIFF_STATUS_MODIFIED;
+ p->parent[0].mode = ntohl(new->ce_mode);
+ hashcpy(p->parent[0].sha1, new->sha1);
+ p->parent[1].status = DIFF_STATUS_MODIFIED;
+ p->parent[1].mode = ntohl(old->ce_mode);
+ hashcpy(p->parent[1].sha1, old->sha1);
+ show_combined_diff(p, 2, revs->dense_combined_merges, revs);
+ free(p);
+ return 0;
+ }
+
oldmode = old->ce_mode;
if (mode == oldmode && !hashcmp(sha1, old->sha1) &&
!revs->diffopt.find_copies_harder)