4 #include "object-name.h"
5 #include "object-store-ll.h"
7 static char *create_temp_file(struct object_id
*oid
)
11 enum object_type type
;
15 buf
= repo_read_object_file(the_repository
, oid
, &type
, &size
);
16 if (!buf
|| type
!= OBJ_BLOB
)
17 die("unable to read blob object %s", oid_to_hex(oid
));
19 xsnprintf(path
, sizeof(path
), ".merge_file_XXXXXX");
21 if (write_in_full(fd
, buf
, size
) < 0)
22 die_errno("unable to write temp-file");
28 int cmd_unpack_file(int argc
, const char **argv
, const char *prefix UNUSED
)
32 if (argc
!= 2 || !strcmp(argv
[1], "-h"))
33 usage("git unpack-file <blob>");
34 if (repo_get_oid(the_repository
, argv
[1], &oid
))
35 die("Not a valid object name %s", argv
[1]);
37 git_config(git_default_config
, NULL
);
39 puts(create_temp_file(&oid
));