2005-04-18 23:11:01 +02:00
|
|
|
#include "cache.h"
|
2006-04-02 14:44:09 +02:00
|
|
|
#include "blob.h"
|
2005-04-18 23:11:01 +02:00
|
|
|
|
|
|
|
static char *create_temp_file(unsigned char *sha1)
|
|
|
|
{
|
|
|
|
static char path[50];
|
|
|
|
void *buf;
|
2007-02-26 20:55:59 +01:00
|
|
|
enum object_type type;
|
2005-04-18 23:11:01 +02:00
|
|
|
unsigned long size;
|
|
|
|
int fd;
|
|
|
|
|
2007-02-26 20:55:59 +01:00
|
|
|
buf = read_sha1_file(sha1, &type, &size);
|
|
|
|
if (!buf || type != OBJ_BLOB)
|
2005-04-18 23:11:01 +02:00
|
|
|
die("unable to read blob object %s", sha1_to_hex(sha1));
|
|
|
|
|
|
|
|
strcpy(path, ".merge_file_XXXXXX");
|
|
|
|
fd = mkstemp(path);
|
|
|
|
if (fd < 0)
|
|
|
|
die("unable to create temp-file");
|
2007-01-08 16:58:23 +01:00
|
|
|
if (write_in_full(fd, buf, size) != size)
|
2005-04-18 23:11:01 +02:00
|
|
|
die("unable to write temp-file");
|
|
|
|
close(fd);
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
unsigned char sha1[20];
|
|
|
|
|
2006-05-08 23:43:38 +02:00
|
|
|
if (argc != 2)
|
2005-05-19 13:17:16 +02:00
|
|
|
usage("git-unpack-file <sha1>");
|
2006-05-08 23:43:38 +02:00
|
|
|
if (get_sha1(argv[1], sha1))
|
|
|
|
die("Not a valid object name %s", argv[1]);
|
2005-04-18 23:11:01 +02:00
|
|
|
|
2005-11-26 09:50:02 +01:00
|
|
|
setup_git_directory();
|
2006-03-24 08:41:18 +01:00
|
|
|
git_config(git_default_config);
|
2005-11-26 09:50:02 +01:00
|
|
|
|
2005-04-18 23:11:01 +02:00
|
|
|
puts(create_temp_file(sha1));
|
|
|
|
return 0;
|
|
|
|
}
|