2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
8 int main(int argc
, char **argv
)
10 unsigned char sha1
[20];
15 if (argc
!= 3 || get_sha1(argv
[2], sha1
))
16 usage("git-cat-file [-t | tagname] <sha1>");
18 if (!strcmp("-t", argv
[1])) {
19 buf
= read_sha1_file(sha1
, type
, &size
);
27 buf
= read_object_with_reference(sha1
, argv
[1], &size
, NULL
);
31 die("git-cat-file %s: bad file", argv
[2]);
34 long ret
= write(1, buf
, size
);
41 die("git-cat-file: %s", strerror(errno
));
43 die("git-cat-file: disk full?");