diff options
author | Junio C Hamano <junkio@cox.net> | 2005-04-29 14:54:50 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-29 14:54:50 -0700 |
commit | aed7a5a9dab96d1a17be4fadf7685086047178cc (patch) | |
tree | 6e55355081da2744c6bbad68d11281ca1807cd73 /export.c | |
parent | Rename git core commands to be "git-xxxx" to avoid name clashes. (diff) | |
download | tgif-aed7a5a9dab96d1a17be4fadf7685086047178cc.tar.xz |
[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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"); |