2005-04-18 21:11:01 +00:00
|
|
|
#include "cache.h"
|
2006-04-02 12:44:09 +00:00
|
|
|
#include "blob.h"
|
2009-01-18 12:00:12 +00:00
|
|
|
#include "exec_cmd.h"
|
2005-04-18 21:11:01 +00:00
|
|
|
|
|
|
|
static char *create_temp_file(unsigned char *sha1)
|
|
|
|
{
|
|
|
|
static char path[50];
|
|
|
|
void *buf;
|
2007-02-26 19:55:59 +00:00
|
|
|
enum object_type type;
|
2005-04-18 21:11:01 +00:00
|
|
|
unsigned long size;
|
|
|
|
int fd;
|
|
|
|
|
2007-02-26 19:55:59 +00:00
|
|
|
buf = read_sha1_file(sha1, &type, &size);
|
|
|
|
if (!buf || type != OBJ_BLOB)
|
2005-04-18 21:11:01 +00:00
|
|
|
die("unable to read blob object %s", sha1_to_hex(sha1));
|
|
|
|
|
|
|
|
strcpy(path, ".merge_file_XXXXXX");
|
2007-08-14 19:45:58 +00:00
|
|
|
fd = xmkstemp(path);
|
2007-01-08 15:58:23 +00:00
|
|
|
if (write_in_full(fd, buf, size) != size)
|
2009-06-27 15:58:47 +00:00
|
|
|
die_errno("unable to write temp-file");
|
2005-04-18 21:11:01 +00:00
|
|
|
close(fd);
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
2010-01-22 15:38:03 +00:00
|
|
|
int cmd_unpack_file(int argc, const char **argv, const char *prefix)
|
2005-04-18 21:11:01 +00:00
|
|
|
{
|
|
|
|
unsigned char sha1[20];
|
|
|
|
|
2009-11-09 15:04:56 +00:00
|
|
|
if (argc != 2 || !strcmp(argv[1], "-h"))
|
2009-01-04 18:39:27 +00:00
|
|
|
usage("git unpack-file <sha1>");
|
2006-05-08 21:43:38 +00:00
|
|
|
if (get_sha1(argv[1], sha1))
|
|
|
|
die("Not a valid object name %s", argv[1]);
|
2005-04-18 21:11:01 +00:00
|
|
|
|
2008-05-14 17:46:53 +00:00
|
|
|
git_config(git_default_config, NULL);
|
2005-11-26 08:50:02 +00:00
|
|
|
|
2005-04-18 21:11:01 +00:00
|
|
|
puts(create_temp_file(sha1));
|
|
|
|
return 0;
|
|
|
|
}
|