| * GIT - The information manager from hell |
| * Copyright (C) Linus Torvalds, 2005 |
| int main(int argc, char **argv) |
| if (argc != 3 || get_sha1(argv[2], sha1)) |
| usage("git-cat-file [-t | -s | tagname] <sha1>"); |
| if (!strcmp("-t", argv[1]) || !strcmp("-s", argv[1])) { |
| if (!sha1_object_info(sha1, type, |
| argv[1][1] == 's' ? &size : NULL)) { |
| buf = read_object_with_reference(sha1, argv[1], &size, NULL); |
| die("git-cat-file %s: bad file", argv[2]); |
| long ret = write(1, buf, size); |
| die("git-cat-file: %s", strerror(errno)); |
| die("git-cat-file: disk full?"); |