]> git.ipfire.org Git - thirdparty/git.git/commit - cache.h
Show original and resulting blob object info in diff output.
authorJunio C Hamano <junkio@cox.net>
Fri, 7 Oct 2005 10:42:00 +0000 (03:42 -0700)
committerJunio C Hamano <junkio@cox.net>
Fri, 7 Oct 2005 10:42:00 +0000 (03:42 -0700)
commitec1fcc16af94810dd822c6da533f58fa2750f14a
tree9ae8cf918f53631f4c80516861803a58a67e7a2a
parent8b73edf498adf2895af7ff9c750283cf9325a632
Show original and resulting blob object info in diff output.

This adds more cruft to diff --git header to record the blob SHA1 and
the mode the patch/diff is intended to be applied against, to help the
receiving end fall back on a three-way merge.  The new header looks
like this:

    diff --git a/apply.c b/apply.c
    index 7be5041..8366082 100644
    --- a/apply.c
    +++ b/apply.c
    @@ -14,6 +14,7 @@
     //    files that are being modified, but doesn't apply the patch
     //  --stat does just a diffstat, and doesn't actually apply
    +//  --show-index-info shows the old and new index info for...
    ...

Upon receiving such a patch, if the patch did not apply cleanly to the
target tree, the recipient can try to find the matching old objects in
her object database and create a temporary tree, apply the patch to
that temporary tree, and attempt a 3-way merge between the patched
temporary tree and the target tree using the original temporary tree
as the common ancestor.

The patch lifts the code to compute the hash for an on-filesystem
object from update-index.c and makes it available to the diff output
routine.

Signed-off-by: Junio C Hamano <junkio@cox.net>
cache.h
diff.c
sha1_file.c
t/diff-lib.sh
t/t4000-diff-format.sh
t/t4001-diff-rename.sh
t/t4004-diff-rename-symlink.sh
update-index.c