mirror of
https://github.com/git-for-windows/git.git
synced 2026-05-01 12:45:02 -05:00
Duh, just make git-export.c use the proper syntax, everything is fine.
This commit is contained in:
@@ -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 -r -z %s %s | xargs -0 gitdiff-do %s %s", against, hex, against, hex);
|
||||
sprintf(cmdline, "git diff -r %s:%s", against, hex);
|
||||
system(cmdline);
|
||||
}
|
||||
printf("======== end ========\n\n");
|
||||
|
||||
Reference in New Issue
Block a user