From aed7a5a9dab96d1a17be4fadf7685086047178cc Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Fri, 29 Apr 2005 14:54:50 -0700 Subject: [PATCH] [PATCH] The big git command renaming fallout fix. This fixes the git-export which calls diff-tree. Signed-off-by: Junio C Hamano Signed-off-by: Linus Torvalds --- export.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/export.c b/export.c index 77f5198b7f..885f4e88fc 100644 --- a/export.c +++ b/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 %s %s", against, hex); + sprintf(cmdline, "git-diff-tree -p %s %s", against, hex); system(cmdline); } printf("======== end ========\n\n"); -- 2.11.4.GIT