Skip to content

Commit

Permalink
[PATCH] The big git command renaming fallout fix.
Browse files Browse the repository at this point in the history
This fixes the git-export which calls diff-tree.

Signed-off-by: Junio C Hamano <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Junio C Hamano authored and Linus Torvalds committed Apr 29, 2005
1 parent a3df180 commit aed7a5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion export.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit aed7a5a

Please sign in to comment.