]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/unpack-file.c
Git 2.14.4
[thirdparty/git.git] / builtin / unpack-file.c
CommitLineData
c2e86add 1#include "builtin.h"
b2141fc1 2#include "config.h"
3407bb49
LT
3
4static char *create_temp_file(unsigned char *sha1)
5{
6 static char path[50];
7 void *buf;
21666f1a 8 enum object_type type;
3407bb49
LT
9 unsigned long size;
10 int fd;
11
21666f1a
NP
12 buf = read_sha1_file(sha1, &type, &size);
13 if (!buf || type != OBJ_BLOB)
3407bb49
LT
14 die("unable to read blob object %s", sha1_to_hex(sha1));
15
5096d490 16 xsnprintf(path, sizeof(path), ".merge_file_XXXXXX");
7647b17f 17 fd = xmkstemp(path);
06f46f23 18 if (write_in_full(fd, buf, size) < 0)
0721c314 19 die_errno("unable to write temp-file");
3407bb49
LT
20 close(fd);
21 return path;
22}
23
b5325818 24int cmd_unpack_file(int argc, const char **argv, const char *prefix)
3407bb49
LT
25{
26 unsigned char sha1[20];
27
15073012 28 if (argc != 2 || !strcmp(argv[1], "-h"))
34263de0 29 usage("git unpack-file <sha1>");
31fff305
DL
30 if (get_sha1(argv[1], sha1))
31 die("Not a valid object name %s", argv[1]);
3407bb49 32
ef90d6d4 33 git_config(git_default_config, NULL);
53228a5f 34
3407bb49
LT
35 puts(create_temp_file(sha1));
36 return 0;
37}