From 0cc087e3044a7ce19d276f736d983ad8344162f6 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Thu, 28 Apr 2005 12:22:11 -0700 Subject: [PATCH] [PATCH] diff-tree does not need -r in git-export.c No need to pass -r anymore, since diff-tree -p implies recursive behaviour these days. Signed-off-by: Junio C Hamano Signed-off-by: Linus Torvalds --- git-export.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-export.c b/git-export.c index 9c867a285b..77f5198b7f 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, "diff-tree -p -r %s %s", against, hex); + sprintf(cmdline, "diff-tree -p %s %s", against, hex); system(cmdline); } printf("======== end ========\n\n"); -- 2.11.4.GIT