From: Junio C Hamano Date: Fri, 29 Apr 2005 21:54:50 +0000 (-0700) Subject: [PATCH] The big git command renaming fallout fix. X-Git-Tag: v0.99~701 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/aed7a5a9dab96d1a17be4fadf7685086047178cc [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 --- 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");