2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
5 * Copyright (C) Junio C Hamano, 2005
10 static void hash_object(const char *path, const char *type, int write_object)
14 unsigned char sha1[20];
15 fd = open(path, O_RDONLY);
18 index_fd(sha1, fd, &st, write_object, type))
20 ? "Unable to add %s to database"
21 : "Unable to hash %s", path);
22 printf("%s\n", sha1_to_hex(sha1));
25 static void hash_stdin(const char *type, int write_object)
27 unsigned char sha1[20];
28 if (index_pipe(sha1, 0, type, write_object))
29 die("Unable to add stdin to database");
30 printf("%s\n", sha1_to_hex(sha1));
33 static const char hash_object_usage[] =
34 "git-hash-object [-t <type>] [-w] [--stdin] <file>...";
36 int main(int argc, char **argv)
39 const char *type = blob_type;
41 const char *prefix = NULL;
42 int prefix_length = -1;
43 int no_more_flags = 0;
45 for (i = 1 ; i < argc; i++) {
46 if (!no_more_flags && argv[i][0] == '-') {
47 if (!strcmp(argv[i], "-t")) {
49 die(hash_object_usage);
52 else if (!strcmp(argv[i], "-w")) {
53 if (prefix_length < 0) {
54 prefix = setup_git_directory();
56 prefix ? strlen(prefix) : 0;
60 else if (!strcmp(argv[i], "--")) {
63 else if (!strcmp(argv[i], "--help"))
64 usage(hash_object_usage);
65 else if (!strcmp(argv[i], "--stdin")) {
66 hash_stdin(type, write_object);
69 die(hash_object_usage);
72 const char *arg = argv[i];
73 if (0 <= prefix_length)
74 arg = prefix_filename(prefix, prefix_length,
76 hash_object(arg, type, write_object);