Steal -t option to git-ls-files from Cogito fork.
[git.git] / export.c
index 78bfe9f..b648717 100644 (file)
--- a/export.c
+++ b/export.c
@@ -12,7 +12,7 @@ void show_commit(struct commit *commit)
        strcpy(hex, sha1_to_hex(commit->object.sha1));
        printf("Id: %s\n", hex);
        fflush(NULL);
-       sprintf(cmdline, "cat-file commit %s", hex);
+       sprintf(cmdline, "git-cat-file commit %s", hex);
        system(cmdline);
        if (commit->parents) {
                char *against = sha1_to_hex(commit->parents->item->object.sha1);