Be verbose when !initial commit
[git.git] / unpack-file.c
blob07303f8bb3ef2b93f3e7c9bbe116aef9660584d5
1 #include "cache.h"
3 static char *create_temp_file(unsigned char *sha1)
5 static char path[50];
6 void *buf;
7 char type[100];
8 unsigned long size;
9 int fd;
11 buf = read_sha1_file(sha1, type, &size);
12 if (!buf || strcmp(type, "blob"))
13 die("unable to read blob object %s", sha1_to_hex(sha1));
15 strcpy(path, ".merge_file_XXXXXX");
16 fd = mkstemp(path);
17 if (fd < 0)
18 die("unable to create temp-file");
19 if (write(fd, buf, size) != size)
20 die("unable to write temp-file");
21 close(fd);
22 return path;
25 int main(int argc, char **argv)
27 unsigned char sha1[20];
29 if (argc != 2 || get_sha1(argv[1], sha1))
30 usage("git-unpack-file <sha1>");
32 setup_git_directory();
34 puts(create_temp_file(sha1));
35 return 0;