summaryrefslogtreecommitdiff
path: root/export.c
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-04-29 21:54:50 (GMT)
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-29 21:54:50 (GMT)
commitaed7a5a9dab96d1a17be4fadf7685086047178cc (patch)
tree6e55355081da2744c6bbad68d11281ca1807cd73 /export.c
parenta3df180138b85a603656582bde6df757095618cf (diff)
downloadgit-aed7a5a9dab96d1a17be4fadf7685086047178cc.zip
git-aed7a5a9dab96d1a17be4fadf7685086047178cc.tar.gz
git-aed7a5a9dab96d1a17be4fadf7685086047178cc.tar.bz2
[PATCH] The big git command renaming fallout fix.
This fixes the git-export which calls diff-tree. Signed-off-by: Junio C Hamano <junkio@cox.net> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'export.c')
-rw-r--r--export.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/export.c b/export.c
index 77f5198..885f4e8 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");