4 static char *create_temp_file(unsigned char *sha1
)
12 buf
= read_sha1_file(sha1
, type
, &size
);
13 if (!buf
|| strcmp(type
, blob_type
))
14 die("unable to read blob object %s", sha1_to_hex(sha1
));
16 strcpy(path
, ".merge_file_XXXXXX");
19 die("unable to create temp-file");
20 if (write(fd
, buf
, size
) != size
)
21 die("unable to write temp-file");
26 int main(int argc
, char **argv
)
28 unsigned char sha1
[20];
30 if (argc
!= 2 || get_sha1(argv
[1], sha1
))
31 usage("git-unpack-file <sha1>");
33 setup_git_directory();
34 git_config(git_default_config
);
36 puts(create_temp_file(sha1
));