[PATCH] Use diff-tree -p -r instead of "git diff" in git-export.
authorJunio C Hamano <junkio@cox.net>
Wed, 27 Apr 2005 22:36:01 +0000 (15:36 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Wed, 27 Apr 2005 22:36:01 +0000 (15:36 -0700)
Now diff-tree can produce patch itself, there is no reason to
depend on Cogito to show diff in the git-export output anymore.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
git-export.c

index 6b5db93..9c867a2 100644 (file)
@@ -18,7 +18,7 @@ void show_commit(struct commit *commit)
                char *against = sha1_to_hex(commit->parents->item->object.sha1);
                printf("\n\n======== diff against %s ========\n", against);
                fflush(NULL);
-               sprintf(cmdline, "git diff -r %s:%s", against, hex);
+               sprintf(cmdline, "diff-tree -p -r %s %s", against, hex);
                system(cmdline);
        }
        printf("======== end ========\n\n");