2005-04-08 00:16:10 +02:00
|
|
|
/*
|
|
|
|
* GIT - The information manager from hell
|
|
|
|
*
|
|
|
|
* Copyright (C) Linus Torvalds, 2005
|
|
|
|
*/
|
2005-04-08 00:13:13 +02:00
|
|
|
#include "cache.h"
|
2006-04-02 14:44:09 +02:00
|
|
|
#include "commit.h"
|
|
|
|
#include "tree.h"
|
2006-05-23 14:15:33 +02:00
|
|
|
#include "builtin.h"
|
2006-12-22 22:06:08 +01:00
|
|
|
#include "utf8.h"
|
2005-04-08 00:13:13 +02:00
|
|
|
|
|
|
|
#define BLOCKING (1ul << 14)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* FIXME! Share the code with "write-tree.c"
|
|
|
|
*/
|
2007-02-27 16:00:33 +01:00
|
|
|
static void check_valid(unsigned char *sha1, enum object_type expect)
|
2005-04-18 00:26:13 +02:00
|
|
|
{
|
2007-02-26 20:55:59 +01:00
|
|
|
enum object_type type = sha1_object_info(sha1, NULL);
|
|
|
|
if (type < 0)
|
2006-04-27 01:55:25 +02:00
|
|
|
die("%s is not a valid object", sha1_to_hex(sha1));
|
2007-02-27 16:00:33 +01:00
|
|
|
if (type != expect)
|
2006-04-27 01:55:25 +02:00
|
|
|
die("%s is not a valid '%s' object", sha1_to_hex(sha1),
|
2007-02-27 16:00:33 +01:00
|
|
|
typename(expect));
|
2005-04-18 00:26:13 +02:00
|
|
|
}
|
|
|
|
|
2005-04-08 00:13:13 +02:00
|
|
|
/*
|
2005-04-21 04:49:16 +02:00
|
|
|
* Having more than two parents is not strange at all, and this is
|
|
|
|
* how multi-way merges are represented.
|
2005-04-08 00:13:13 +02:00
|
|
|
*/
|
|
|
|
#define MAXPARENT (16)
|
2005-06-19 19:40:10 +02:00
|
|
|
static unsigned char parent_sha1[MAXPARENT][20];
|
2005-04-08 00:13:13 +02:00
|
|
|
|
2005-07-29 11:01:26 +02:00
|
|
|
static const char commit_tree_usage[] = "git-commit-tree <sha1> [-p <sha1>]* < changelog";
|
2005-04-21 04:49:16 +02:00
|
|
|
|
2005-06-19 19:40:10 +02:00
|
|
|
static int new_parent(int idx)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
unsigned char *sha1 = parent_sha1[idx];
|
|
|
|
for (i = 0; i < idx; i++) {
|
2006-08-17 20:54:57 +02:00
|
|
|
if (!hashcmp(parent_sha1[i], sha1)) {
|
2005-06-19 19:40:10 +02:00
|
|
|
error("duplicate parent %s ignored", sha1_to_hex(sha1));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2006-12-22 22:06:08 +01:00
|
|
|
static const char commit_utf8_warn[] =
|
|
|
|
"Warning: commit message does not conform to UTF-8.\n"
|
|
|
|
"You may want to amend it after fixing the message, or set the config\n"
|
|
|
|
"variable i18n.commitencoding to the encoding your project uses.\n";
|
|
|
|
|
2006-07-29 07:44:25 +02:00
|
|
|
int cmd_commit_tree(int argc, const char **argv, const char *prefix)
|
2005-04-08 00:13:13 +02:00
|
|
|
{
|
2005-07-12 20:49:27 +02:00
|
|
|
int i;
|
2005-04-08 00:13:13 +02:00
|
|
|
int parents = 0;
|
|
|
|
unsigned char tree_sha1[20];
|
2005-04-10 02:09:34 +02:00
|
|
|
unsigned char commit_sha1[20];
|
2007-09-06 13:20:09 +02:00
|
|
|
struct strbuf buffer;
|
2006-12-24 08:53:02 +01:00
|
|
|
int encoding_is_utf8;
|
2005-04-08 00:13:13 +02:00
|
|
|
|
2005-10-12 03:47:34 +02:00
|
|
|
git_config(git_default_config);
|
|
|
|
|
2006-05-08 23:43:38 +02:00
|
|
|
if (argc < 2)
|
2005-04-21 04:49:16 +02:00
|
|
|
usage(commit_tree_usage);
|
2006-05-08 23:43:38 +02:00
|
|
|
if (get_sha1(argv[1], tree_sha1))
|
|
|
|
die("Not a valid object name %s", argv[1]);
|
2005-04-08 00:13:13 +02:00
|
|
|
|
2007-02-27 16:00:33 +01:00
|
|
|
check_valid(tree_sha1, OBJ_TREE);
|
2005-04-08 00:13:13 +02:00
|
|
|
for (i = 2; i < argc; i += 2) {
|
2006-05-23 14:15:33 +02:00
|
|
|
const char *a, *b;
|
2005-04-08 00:13:13 +02:00
|
|
|
a = argv[i]; b = argv[i+1];
|
2006-05-08 23:43:38 +02:00
|
|
|
if (!b || strcmp(a, "-p"))
|
2005-04-21 04:49:16 +02:00
|
|
|
usage(commit_tree_usage);
|
2006-12-22 08:49:13 +01:00
|
|
|
|
|
|
|
if (parents >= MAXPARENT)
|
|
|
|
die("Too many parents (%d max)", MAXPARENT);
|
2006-05-08 23:43:38 +02:00
|
|
|
if (get_sha1(b, parent_sha1[parents]))
|
|
|
|
die("Not a valid object name %s", b);
|
2007-02-27 16:00:33 +01:00
|
|
|
check_valid(parent_sha1[parents], OBJ_COMMIT);
|
2005-06-19 19:40:10 +02:00
|
|
|
if (new_parent(parents))
|
|
|
|
parents++;
|
2005-04-08 00:13:13 +02:00
|
|
|
}
|
|
|
|
|
2006-12-28 01:41:33 +01:00
|
|
|
/* Not having i18n.commitencoding is the same as having utf-8 */
|
2006-12-30 21:20:43 +01:00
|
|
|
encoding_is_utf8 = is_encoding_utf8(git_commit_encoding);
|
2006-12-24 08:53:02 +01:00
|
|
|
|
2007-09-10 12:35:04 +02:00
|
|
|
strbuf_init(&buffer, 8192); /* should avoid reallocs for the headers */
|
2007-09-06 13:20:09 +02:00
|
|
|
strbuf_addf(&buffer, "tree %s\n", sha1_to_hex(tree_sha1));
|
2005-04-08 00:13:13 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* NOTE! This ordering means that the same exact tree merged with a
|
|
|
|
* different order of parents will be a _different_ changeset even
|
|
|
|
* if everything else stays the same.
|
|
|
|
*/
|
|
|
|
for (i = 0; i < parents; i++)
|
2007-09-06 13:20:09 +02:00
|
|
|
strbuf_addf(&buffer, "parent %s\n", sha1_to_hex(parent_sha1[i]));
|
2005-04-08 00:13:13 +02:00
|
|
|
|
|
|
|
/* Person/date information */
|
2007-09-06 13:20:09 +02:00
|
|
|
strbuf_addf(&buffer, "author %s\n", git_author_info(1));
|
|
|
|
strbuf_addf(&buffer, "committer %s\n", git_committer_info(1));
|
2006-12-24 08:53:02 +01:00
|
|
|
if (!encoding_is_utf8)
|
2007-09-06 13:20:09 +02:00
|
|
|
strbuf_addf(&buffer, "encoding %s\n", git_commit_encoding);
|
|
|
|
strbuf_addch(&buffer, '\n');
|
2005-04-08 00:13:13 +02:00
|
|
|
|
|
|
|
/* And add the comment */
|
2007-09-10 12:35:04 +02:00
|
|
|
if (strbuf_read(&buffer, 0, 0) < 0)
|
2007-09-06 13:20:09 +02:00
|
|
|
die("git-commit-tree: read returned %s", strerror(errno));
|
2005-04-08 00:13:13 +02:00
|
|
|
|
2006-12-22 22:06:08 +01:00
|
|
|
/* And check the encoding */
|
2007-09-06 13:20:09 +02:00
|
|
|
if (encoding_is_utf8 && !is_utf8(buffer.buf))
|
2006-12-22 22:06:08 +01:00
|
|
|
fprintf(stderr, commit_utf8_warn);
|
|
|
|
|
2007-09-06 13:20:09 +02:00
|
|
|
if (!write_sha1_file(buffer.buf, buffer.len, commit_type, commit_sha1)) {
|
2006-03-25 07:23:25 +01:00
|
|
|
printf("%s\n", sha1_to_hex(commit_sha1));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return 1;
|
2005-04-08 00:13:13 +02:00
|
|
|
}
|