Browse Source

Duh, just make git-export.c use the proper syntax, everything is fine.

maint
Linus Torvalds 20 years ago
parent
commit
80913d4364
  1. 2
      git-export.c

2
git-export.c

@ -18,7 +18,7 @@ void show_commit(struct commit *commit) @@ -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");

Loading…
Cancel
Save