summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <junkio@cox.net>2005-04-27 15:36:01 -0700
committerLibravatar Linus Torvalds <torvalds@ppc970.osdl.org>2005-04-27 15:36:01 -0700
commitce9be4e4e8f397413ff5d87cda458c7e466897b1 (patch)
treebc86bd4d32f883865c632fccc6acc76ce5806a9e
parent[PATCH] Make -s flag to show-diff a no-op. (diff)
downloadtgif-ce9be4e4e8f397413ff5d87cda458c7e466897b1.tar.xz
[PATCH] Use diff-tree -p -r instead of "git diff" in git-export.
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>
-rw-r--r--git-export.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-export.c b/git-export.c
index 6b5db93dbe..9c867a285b 100644
--- a/git-export.c
+++ b/git-export.c
@@ -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");