2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
12 #define BLOCKING (1ul << 14)
15 * FIXME! Share the code with "write-tree.c"
17 static void init_buffer(char **bufp
, unsigned int *sizep
)
19 char *buf
= xmalloc(BLOCKING
);
24 static void add_buffer(char **bufp
, unsigned int *sizep
, const char *fmt
, ...)
29 unsigned long alloc
, size
, newsize
;
33 len
= vsnprintf(one_line
, sizeof(one_line
), fmt
, args
);
37 alloc
= (size
+ 32767) & ~32767;
39 if (newsize
> alloc
) {
40 alloc
= (newsize
+ 32767) & ~32767;
41 buf
= xrealloc(buf
, alloc
);
45 memcpy(buf
+ size
, one_line
, len
);
48 static void check_valid(unsigned char *sha1
, const char *expect
)
54 buf
= read_sha1_file(sha1
, type
, &size
);
55 if (!buf
|| strcmp(type
, expect
))
56 die("%s is not a valid '%s' object", sha1_to_hex(sha1
), expect
);
61 * Having more than two parents is not strange at all, and this is
62 * how multi-way merges are represented.
64 #define MAXPARENT (16)
65 static unsigned char parent_sha1
[MAXPARENT
][20];
67 static char *commit_tree_usage
= "git-commit-tree <sha1> [-p <sha1>]* < changelog";
69 static int new_parent(int idx
)
72 unsigned char *sha1
= parent_sha1
[idx
];
73 for (i
= 0; i
< idx
; i
++) {
74 if (!memcmp(parent_sha1
[i
], sha1
, 20)) {
75 error("duplicate parent %s ignored", sha1_to_hex(sha1
));
82 static char *git_author_info(void)
84 return get_ident(gitenv("GIT_AUTHOR_NAME"), gitenv("GIT_AUTHOR_EMAIL"), gitenv("GIT_AUTHOR_DATE"));
87 static char *git_committer_info(void)
89 return get_ident(gitenv("GIT_COMMITTER_NAME"), gitenv("GIT_COMMITTER_EMAIL"), gitenv("GIT_COMMITTER_DATE"));
92 int main(int argc
, char **argv
)
96 unsigned char tree_sha1
[20];
97 unsigned char commit_sha1
[20];
102 if (argc
< 2 || get_sha1_hex(argv
[1], tree_sha1
) < 0)
103 usage(commit_tree_usage
);
105 check_valid(tree_sha1
, "tree");
106 for (i
= 2; i
< argc
; i
+= 2) {
108 a
= argv
[i
]; b
= argv
[i
+1];
109 if (!b
|| strcmp(a
, "-p") || get_sha1(b
, parent_sha1
[parents
]))
110 usage(commit_tree_usage
);
111 check_valid(parent_sha1
[parents
], "commit");
112 if (new_parent(parents
))
116 fprintf(stderr
, "Committing initial tree %s\n", argv
[1]);
119 init_buffer(&buffer
, &size
);
120 add_buffer(&buffer
, &size
, "tree %s\n", sha1_to_hex(tree_sha1
));
123 * NOTE! This ordering means that the same exact tree merged with a
124 * different order of parents will be a _different_ changeset even
125 * if everything else stays the same.
127 for (i
= 0; i
< parents
; i
++)
128 add_buffer(&buffer
, &size
, "parent %s\n", sha1_to_hex(parent_sha1
[i
]));
130 /* Person/date information */
131 add_buffer(&buffer
, &size
, "author %s\n", git_author_info());
132 add_buffer(&buffer
, &size
, "committer %s\n\n", git_committer_info());
134 /* And add the comment */
135 while (fgets(comment
, sizeof(comment
), stdin
) != NULL
)
136 add_buffer(&buffer
, &size
, "%s", comment
);
138 write_sha1_file(buffer
, size
, "commit", commit_sha1
);
139 printf("%s\n", sha1_to_hex(commit_sha1
));