2006-08-02 23:52:00 +02:00
|
|
|
#include "builtin.h"
|
2006-07-03 17:18:43 +02:00
|
|
|
#include "cache.h"
|
|
|
|
#include "commit.h"
|
|
|
|
#include "diff.h"
|
|
|
|
#include "revision.h"
|
|
|
|
#include "tag.h"
|
|
|
|
|
2008-10-02 14:59:18 +02:00
|
|
|
static const char * const fmt_merge_msg_usage[] = {
|
|
|
|
"git fmt-merge-msg [--log|--no-log] [--file <file>]",
|
|
|
|
NULL
|
|
|
|
};
|
2006-07-03 17:18:43 +02:00
|
|
|
|
2006-08-15 19:23:48 +02:00
|
|
|
static int merge_summary;
|
2006-07-03 17:18:43 +02:00
|
|
|
|
2008-05-14 19:46:53 +02:00
|
|
|
static int fmt_merge_msg_config(const char *key, const char *value, void *cb)
|
2006-07-03 17:18:43 +02:00
|
|
|
{
|
2008-04-06 03:23:45 +02:00
|
|
|
static int found_merge_log = 0;
|
|
|
|
if (!strcmp("merge.log", key)) {
|
|
|
|
found_merge_log = 1;
|
|
|
|
merge_summary = git_config_bool(key, value);
|
|
|
|
}
|
|
|
|
if (!found_merge_log && !strcmp("merge.summary", key))
|
2006-07-03 17:18:43 +02:00
|
|
|
merge_summary = git_config_bool(key, value);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct list {
|
|
|
|
char **list;
|
|
|
|
void **payload;
|
|
|
|
unsigned nr, alloc;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void append_to_list(struct list *list, char *value, void *payload)
|
|
|
|
{
|
|
|
|
if (list->nr == list->alloc) {
|
|
|
|
list->alloc += 32;
|
2006-08-26 16:16:18 +02:00
|
|
|
list->list = xrealloc(list->list, sizeof(char *) * list->alloc);
|
|
|
|
list->payload = xrealloc(list->payload,
|
2006-07-03 17:18:43 +02:00
|
|
|
sizeof(char *) * list->alloc);
|
|
|
|
}
|
|
|
|
list->payload[list->nr] = payload;
|
|
|
|
list->list[list->nr++] = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int find_in_list(struct list *list, char *value)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < list->nr; i++)
|
|
|
|
if (!strcmp(list->list[i], value))
|
|
|
|
return i;
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void free_list(struct list *list)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (list->alloc == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (i = 0; i < list->nr; i++) {
|
|
|
|
free(list->list[i]);
|
2006-08-28 06:19:39 +02:00
|
|
|
free(list->payload[i]);
|
2006-07-03 17:18:43 +02:00
|
|
|
}
|
|
|
|
free(list->list);
|
|
|
|
free(list->payload);
|
|
|
|
list->nr = list->alloc = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct src_data {
|
|
|
|
struct list branch, tag, r_branch, generic;
|
|
|
|
int head_status;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct list srcs = { NULL, NULL, 0, 0};
|
|
|
|
static struct list origins = { NULL, NULL, 0, 0};
|
|
|
|
|
|
|
|
static int handle_line(char *line)
|
|
|
|
{
|
|
|
|
int i, len = strlen(line);
|
|
|
|
unsigned char *sha1;
|
|
|
|
char *src, *origin;
|
|
|
|
struct src_data *src_data;
|
2006-07-13 07:21:05 +02:00
|
|
|
int pulling_head = 0;
|
2006-07-03 17:18:43 +02:00
|
|
|
|
|
|
|
if (len < 43 || line[40] != '\t')
|
|
|
|
return 1;
|
|
|
|
|
Mechanical conversion to use prefixcmp()
This mechanically converts strncmp() to use prefixcmp(), but only when
the parameters match specific patterns, so that they can be verified
easily. Leftover from this will be fixed in a separate step, including
idiotic conversions like
if (!strncmp("foo", arg, 3))
=>
if (!(-prefixcmp(arg, "foo")))
This was done by using this script in px.perl
#!/usr/bin/perl -i.bak -p
if (/strncmp\(([^,]+), "([^\\"]*)", (\d+)\)/ && (length($2) == $3)) {
s|strncmp\(([^,]+), "([^\\"]*)", (\d+)\)|prefixcmp($1, "$2")|;
}
if (/strncmp\("([^\\"]*)", ([^,]+), (\d+)\)/ && (length($1) == $3)) {
s|strncmp\("([^\\"]*)", ([^,]+), (\d+)\)|(-prefixcmp($2, "$1"))|;
}
and running:
$ git grep -l strncmp -- '*.c' | xargs perl px.perl
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-20 10:53:29 +01:00
|
|
|
if (!prefixcmp(line + 41, "not-for-merge"))
|
2006-07-03 17:18:43 +02:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (line[41] != '\t')
|
|
|
|
return 2;
|
|
|
|
|
|
|
|
line[40] = 0;
|
|
|
|
sha1 = xmalloc(20);
|
|
|
|
i = get_sha1(line, sha1);
|
|
|
|
line[40] = '\t';
|
|
|
|
if (i)
|
|
|
|
return 3;
|
|
|
|
|
|
|
|
if (line[len - 1] == '\n')
|
|
|
|
line[len - 1] = 0;
|
|
|
|
line += 42;
|
|
|
|
|
|
|
|
src = strstr(line, " of ");
|
|
|
|
if (src) {
|
|
|
|
*src = 0;
|
|
|
|
src += 4;
|
2006-07-13 07:21:05 +02:00
|
|
|
pulling_head = 0;
|
|
|
|
} else {
|
|
|
|
src = line;
|
|
|
|
pulling_head = 1;
|
|
|
|
}
|
2006-07-03 17:18:43 +02:00
|
|
|
|
|
|
|
i = find_in_list(&srcs, src);
|
|
|
|
if (i < 0) {
|
|
|
|
i = srcs.nr;
|
2006-09-02 06:16:31 +02:00
|
|
|
append_to_list(&srcs, xstrdup(src),
|
2006-07-03 17:18:43 +02:00
|
|
|
xcalloc(1, sizeof(struct src_data)));
|
|
|
|
}
|
|
|
|
src_data = srcs.payload[i];
|
|
|
|
|
2006-07-13 07:21:05 +02:00
|
|
|
if (pulling_head) {
|
2006-09-02 06:16:31 +02:00
|
|
|
origin = xstrdup(src);
|
2006-07-13 07:21:05 +02:00
|
|
|
src_data->head_status |= 1;
|
Mechanical conversion to use prefixcmp()
This mechanically converts strncmp() to use prefixcmp(), but only when
the parameters match specific patterns, so that they can be verified
easily. Leftover from this will be fixed in a separate step, including
idiotic conversions like
if (!strncmp("foo", arg, 3))
=>
if (!(-prefixcmp(arg, "foo")))
This was done by using this script in px.perl
#!/usr/bin/perl -i.bak -p
if (/strncmp\(([^,]+), "([^\\"]*)", (\d+)\)/ && (length($2) == $3)) {
s|strncmp\(([^,]+), "([^\\"]*)", (\d+)\)|prefixcmp($1, "$2")|;
}
if (/strncmp\("([^\\"]*)", ([^,]+), (\d+)\)/ && (length($1) == $3)) {
s|strncmp\("([^\\"]*)", ([^,]+), (\d+)\)|(-prefixcmp($2, "$1"))|;
}
and running:
$ git grep -l strncmp -- '*.c' | xargs perl px.perl
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-20 10:53:29 +01:00
|
|
|
} else if (!prefixcmp(line, "branch ")) {
|
2006-09-02 06:16:31 +02:00
|
|
|
origin = xstrdup(line + 7);
|
2006-07-03 17:18:43 +02:00
|
|
|
append_to_list(&src_data->branch, origin, NULL);
|
|
|
|
src_data->head_status |= 2;
|
Mechanical conversion to use prefixcmp()
This mechanically converts strncmp() to use prefixcmp(), but only when
the parameters match specific patterns, so that they can be verified
easily. Leftover from this will be fixed in a separate step, including
idiotic conversions like
if (!strncmp("foo", arg, 3))
=>
if (!(-prefixcmp(arg, "foo")))
This was done by using this script in px.perl
#!/usr/bin/perl -i.bak -p
if (/strncmp\(([^,]+), "([^\\"]*)", (\d+)\)/ && (length($2) == $3)) {
s|strncmp\(([^,]+), "([^\\"]*)", (\d+)\)|prefixcmp($1, "$2")|;
}
if (/strncmp\("([^\\"]*)", ([^,]+), (\d+)\)/ && (length($1) == $3)) {
s|strncmp\("([^\\"]*)", ([^,]+), (\d+)\)|(-prefixcmp($2, "$1"))|;
}
and running:
$ git grep -l strncmp -- '*.c' | xargs perl px.perl
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-20 10:53:29 +01:00
|
|
|
} else if (!prefixcmp(line, "tag ")) {
|
2006-07-03 17:18:43 +02:00
|
|
|
origin = line;
|
2006-09-02 06:16:31 +02:00
|
|
|
append_to_list(&src_data->tag, xstrdup(origin + 4), NULL);
|
2006-07-03 17:18:43 +02:00
|
|
|
src_data->head_status |= 2;
|
Mechanical conversion to use prefixcmp()
This mechanically converts strncmp() to use prefixcmp(), but only when
the parameters match specific patterns, so that they can be verified
easily. Leftover from this will be fixed in a separate step, including
idiotic conversions like
if (!strncmp("foo", arg, 3))
=>
if (!(-prefixcmp(arg, "foo")))
This was done by using this script in px.perl
#!/usr/bin/perl -i.bak -p
if (/strncmp\(([^,]+), "([^\\"]*)", (\d+)\)/ && (length($2) == $3)) {
s|strncmp\(([^,]+), "([^\\"]*)", (\d+)\)|prefixcmp($1, "$2")|;
}
if (/strncmp\("([^\\"]*)", ([^,]+), (\d+)\)/ && (length($1) == $3)) {
s|strncmp\("([^\\"]*)", ([^,]+), (\d+)\)|(-prefixcmp($2, "$1"))|;
}
and running:
$ git grep -l strncmp -- '*.c' | xargs perl px.perl
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-20 10:53:29 +01:00
|
|
|
} else if (!prefixcmp(line, "remote branch ")) {
|
2006-09-02 06:16:31 +02:00
|
|
|
origin = xstrdup(line + 14);
|
2006-07-03 17:18:43 +02:00
|
|
|
append_to_list(&src_data->r_branch, origin, NULL);
|
|
|
|
src_data->head_status |= 2;
|
|
|
|
} else {
|
2006-09-02 06:16:31 +02:00
|
|
|
origin = xstrdup(src);
|
|
|
|
append_to_list(&src_data->generic, xstrdup(line), NULL);
|
2006-07-03 17:18:43 +02:00
|
|
|
src_data->head_status |= 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!strcmp(".", src) || !strcmp(src, origin)) {
|
|
|
|
int len = strlen(origin);
|
|
|
|
if (origin[0] == '\'' && origin[len - 1] == '\'') {
|
2007-09-16 00:32:36 +02:00
|
|
|
origin = xmemdupz(origin + 1, len - 2);
|
|
|
|
} else {
|
2006-09-02 06:16:31 +02:00
|
|
|
origin = xstrdup(origin);
|
2007-09-16 00:32:36 +02:00
|
|
|
}
|
2006-07-03 17:18:43 +02:00
|
|
|
} else {
|
2006-09-01 00:32:39 +02:00
|
|
|
char *new_origin = xmalloc(strlen(origin) + strlen(src) + 5);
|
2006-07-03 17:18:43 +02:00
|
|
|
sprintf(new_origin, "%s of %s", origin, src);
|
|
|
|
origin = new_origin;
|
|
|
|
}
|
|
|
|
append_to_list(&origins, origin, sha1);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void print_joined(const char *singular, const char *plural,
|
2008-06-27 18:21:59 +02:00
|
|
|
struct list *list, struct strbuf *out)
|
2006-07-03 17:18:43 +02:00
|
|
|
{
|
|
|
|
if (list->nr == 0)
|
|
|
|
return;
|
|
|
|
if (list->nr == 1) {
|
2008-06-27 18:21:59 +02:00
|
|
|
strbuf_addf(out, "%s%s", singular, list->list[0]);
|
2006-07-03 17:18:43 +02:00
|
|
|
} else {
|
|
|
|
int i;
|
2008-06-27 18:21:59 +02:00
|
|
|
strbuf_addstr(out, plural);
|
2006-07-03 17:18:43 +02:00
|
|
|
for (i = 0; i < list->nr - 1; i++)
|
2008-06-27 18:21:59 +02:00
|
|
|
strbuf_addf(out, "%s%s", i > 0 ? ", " : "", list->list[i]);
|
|
|
|
strbuf_addf(out, " and %s", list->list[list->nr - 1]);
|
2006-07-03 17:18:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void shortlog(const char *name, unsigned char *sha1,
|
2008-06-27 18:21:59 +02:00
|
|
|
struct commit *head, struct rev_info *rev, int limit,
|
|
|
|
struct strbuf *out)
|
2006-07-03 17:18:43 +02:00
|
|
|
{
|
|
|
|
int i, count = 0;
|
|
|
|
struct commit *commit;
|
|
|
|
struct object *branch;
|
|
|
|
struct list subjects = { NULL, NULL, 0, 0 };
|
2007-11-13 08:16:08 +01:00
|
|
|
int flags = UNINTERESTING | TREESAME | SEEN | SHOWN | ADDED;
|
2006-07-03 17:18:43 +02:00
|
|
|
|
|
|
|
branch = deref_tag(parse_object(sha1), sha1_to_hex(sha1), 40);
|
2006-07-12 05:45:31 +02:00
|
|
|
if (!branch || branch->type != OBJ_COMMIT)
|
2006-07-03 17:18:43 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
setup_revisions(0, NULL, rev, NULL);
|
|
|
|
rev->ignore_merges = 1;
|
|
|
|
add_pending_object(rev, branch, name);
|
|
|
|
add_pending_object(rev, &head->object, "^HEAD");
|
|
|
|
head->object.flags |= UNINTERESTING;
|
2008-02-18 08:31:56 +01:00
|
|
|
if (prepare_revision_walk(rev))
|
|
|
|
die("revision walk setup failed");
|
2006-07-03 17:18:43 +02:00
|
|
|
while ((commit = get_revision(rev)) != NULL) {
|
|
|
|
char *oneline, *bol, *eol;
|
|
|
|
|
|
|
|
/* ignore merges */
|
|
|
|
if (commit->parents && commit->parents->next)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
count++;
|
|
|
|
if (subjects.nr > limit)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
bol = strstr(commit->buffer, "\n\n");
|
2008-04-15 20:01:36 +02:00
|
|
|
if (bol) {
|
|
|
|
unsigned char c;
|
|
|
|
do {
|
|
|
|
c = *++bol;
|
|
|
|
} while (isspace(c));
|
|
|
|
if (!c)
|
|
|
|
bol = NULL;
|
|
|
|
}
|
|
|
|
|
2006-07-03 17:18:43 +02:00
|
|
|
if (!bol) {
|
2006-09-02 06:16:31 +02:00
|
|
|
append_to_list(&subjects, xstrdup(sha1_to_hex(
|
2006-07-03 17:18:43 +02:00
|
|
|
commit->object.sha1)),
|
|
|
|
NULL);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
eol = strchr(bol, '\n');
|
|
|
|
if (eol) {
|
2007-09-16 00:32:36 +02:00
|
|
|
oneline = xmemdupz(bol, eol - bol);
|
|
|
|
} else {
|
2006-09-02 06:16:31 +02:00
|
|
|
oneline = xstrdup(bol);
|
2007-09-16 00:32:36 +02:00
|
|
|
}
|
2006-07-03 17:18:43 +02:00
|
|
|
append_to_list(&subjects, oneline, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count > limit)
|
2008-06-27 18:21:59 +02:00
|
|
|
strbuf_addf(out, "\n* %s: (%d commits)\n", name, count);
|
2006-07-03 17:18:43 +02:00
|
|
|
else
|
2008-06-27 18:21:59 +02:00
|
|
|
strbuf_addf(out, "\n* %s:\n", name);
|
2006-07-03 17:18:43 +02:00
|
|
|
|
|
|
|
for (i = 0; i < subjects.nr; i++)
|
|
|
|
if (i >= limit)
|
2008-06-27 18:21:59 +02:00
|
|
|
strbuf_addf(out, " ...\n");
|
2006-07-03 17:18:43 +02:00
|
|
|
else
|
2008-06-27 18:21:59 +02:00
|
|
|
strbuf_addf(out, " %s\n", subjects.list[i]);
|
2006-07-03 17:18:43 +02:00
|
|
|
|
|
|
|
clear_commit_marks((struct commit *)branch, flags);
|
|
|
|
clear_commit_marks(head, flags);
|
|
|
|
free_commit_list(rev->commits);
|
|
|
|
rev->commits = NULL;
|
|
|
|
rev->pending.nr = 0;
|
|
|
|
|
|
|
|
free_list(&subjects);
|
|
|
|
}
|
|
|
|
|
2008-06-27 18:21:59 +02:00
|
|
|
int fmt_merge_msg(int merge_summary, struct strbuf *in, struct strbuf *out) {
|
|
|
|
int limit = 20, i = 0, pos = 0;
|
2009-03-07 21:02:26 +01:00
|
|
|
char *sep = "";
|
2006-07-03 17:18:43 +02:00
|
|
|
unsigned char head_sha1[20];
|
2006-09-12 05:17:35 +02:00
|
|
|
const char *current_branch;
|
2006-07-03 17:18:43 +02:00
|
|
|
|
|
|
|
/* get current branch */
|
2006-09-21 07:02:01 +02:00
|
|
|
current_branch = resolve_ref("HEAD", head_sha1, 1, NULL);
|
2006-11-17 07:57:20 +01:00
|
|
|
if (!current_branch)
|
|
|
|
die("No current branch");
|
Mechanical conversion to use prefixcmp()
This mechanically converts strncmp() to use prefixcmp(), but only when
the parameters match specific patterns, so that they can be verified
easily. Leftover from this will be fixed in a separate step, including
idiotic conversions like
if (!strncmp("foo", arg, 3))
=>
if (!(-prefixcmp(arg, "foo")))
This was done by using this script in px.perl
#!/usr/bin/perl -i.bak -p
if (/strncmp\(([^,]+), "([^\\"]*)", (\d+)\)/ && (length($2) == $3)) {
s|strncmp\(([^,]+), "([^\\"]*)", (\d+)\)|prefixcmp($1, "$2")|;
}
if (/strncmp\("([^\\"]*)", ([^,]+), (\d+)\)/ && (length($1) == $3)) {
s|strncmp\("([^\\"]*)", ([^,]+), (\d+)\)|(-prefixcmp($2, "$1"))|;
}
and running:
$ git grep -l strncmp -- '*.c' | xargs perl px.perl
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-20 10:53:29 +01:00
|
|
|
if (!prefixcmp(current_branch, "refs/heads/"))
|
2006-07-03 17:18:43 +02:00
|
|
|
current_branch += 11;
|
|
|
|
|
2008-06-27 18:21:59 +02:00
|
|
|
/* get a line */
|
|
|
|
while (pos < in->len) {
|
|
|
|
int len;
|
2009-03-07 21:02:26 +01:00
|
|
|
char *newline, *p = in->buf + pos;
|
2008-06-27 18:21:59 +02:00
|
|
|
|
|
|
|
newline = strchr(p, '\n');
|
|
|
|
len = newline ? newline - p : strlen(p);
|
|
|
|
pos += len + !!newline;
|
2006-07-03 17:18:43 +02:00
|
|
|
i++;
|
2008-06-27 18:21:59 +02:00
|
|
|
p[len] = 0;
|
|
|
|
if (handle_line(p))
|
|
|
|
die ("Error in line %d: %.*s", i, len, p);
|
2006-07-03 17:18:43 +02:00
|
|
|
}
|
|
|
|
|
2008-06-27 18:21:59 +02:00
|
|
|
strbuf_addstr(out, "Merge ");
|
2006-07-03 17:18:43 +02:00
|
|
|
for (i = 0; i < srcs.nr; i++) {
|
|
|
|
struct src_data *src_data = srcs.payload[i];
|
|
|
|
const char *subsep = "";
|
|
|
|
|
2008-06-27 18:21:59 +02:00
|
|
|
strbuf_addstr(out, sep);
|
2006-07-03 17:18:43 +02:00
|
|
|
sep = "; ";
|
|
|
|
|
|
|
|
if (src_data->head_status == 1) {
|
2008-06-27 18:21:59 +02:00
|
|
|
strbuf_addstr(out, srcs.list[i]);
|
2006-07-03 17:18:43 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (src_data->head_status == 3) {
|
|
|
|
subsep = ", ";
|
2008-06-27 18:21:59 +02:00
|
|
|
strbuf_addstr(out, "HEAD");
|
2006-07-03 17:18:43 +02:00
|
|
|
}
|
|
|
|
if (src_data->branch.nr) {
|
2008-06-27 18:21:59 +02:00
|
|
|
strbuf_addstr(out, subsep);
|
2006-07-03 17:18:43 +02:00
|
|
|
subsep = ", ";
|
2008-06-27 18:21:59 +02:00
|
|
|
print_joined("branch ", "branches ", &src_data->branch,
|
|
|
|
out);
|
2006-07-03 17:18:43 +02:00
|
|
|
}
|
|
|
|
if (src_data->r_branch.nr) {
|
2008-06-27 18:21:59 +02:00
|
|
|
strbuf_addstr(out, subsep);
|
2006-07-03 17:18:43 +02:00
|
|
|
subsep = ", ";
|
|
|
|
print_joined("remote branch ", "remote branches ",
|
2008-06-27 18:21:59 +02:00
|
|
|
&src_data->r_branch, out);
|
2006-07-03 17:18:43 +02:00
|
|
|
}
|
|
|
|
if (src_data->tag.nr) {
|
2008-06-27 18:21:59 +02:00
|
|
|
strbuf_addstr(out, subsep);
|
2006-07-03 17:18:43 +02:00
|
|
|
subsep = ", ";
|
2008-06-27 18:21:59 +02:00
|
|
|
print_joined("tag ", "tags ", &src_data->tag, out);
|
2006-07-03 17:18:43 +02:00
|
|
|
}
|
|
|
|
if (src_data->generic.nr) {
|
2008-06-27 18:21:59 +02:00
|
|
|
strbuf_addstr(out, subsep);
|
|
|
|
print_joined("commit ", "commits ", &src_data->generic,
|
|
|
|
out);
|
2006-07-03 17:18:43 +02:00
|
|
|
}
|
|
|
|
if (strcmp(".", srcs.list[i]))
|
2008-06-27 18:21:59 +02:00
|
|
|
strbuf_addf(out, " of %s", srcs.list[i]);
|
2006-07-03 17:18:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!strcmp("master", current_branch))
|
2008-06-27 18:21:59 +02:00
|
|
|
strbuf_addch(out, '\n');
|
2006-07-03 17:18:43 +02:00
|
|
|
else
|
2008-06-27 18:21:59 +02:00
|
|
|
strbuf_addf(out, " into %s\n", current_branch);
|
2006-07-03 17:18:43 +02:00
|
|
|
|
|
|
|
if (merge_summary) {
|
|
|
|
struct commit *head;
|
|
|
|
struct rev_info rev;
|
|
|
|
|
|
|
|
head = lookup_commit(head_sha1);
|
2008-06-27 18:21:59 +02:00
|
|
|
init_revisions(&rev, NULL);
|
2006-07-03 17:18:43 +02:00
|
|
|
rev.commit_format = CMIT_FMT_ONELINE;
|
|
|
|
rev.ignore_merges = 1;
|
|
|
|
rev.limited = 1;
|
|
|
|
|
|
|
|
for (i = 0; i < origins.nr; i++)
|
|
|
|
shortlog(origins.list[i], origins.payload[i],
|
2008-06-27 18:21:59 +02:00
|
|
|
head, &rev, limit, out);
|
2006-07-03 17:18:43 +02:00
|
|
|
}
|
2008-06-27 18:21:59 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int cmd_fmt_merge_msg(int argc, const char **argv, const char *prefix)
|
|
|
|
{
|
2008-10-02 14:59:18 +02:00
|
|
|
const char *inpath = NULL;
|
|
|
|
struct option options[] = {
|
|
|
|
OPT_BOOLEAN(0, "log", &merge_summary, "populate log with the shortlog"),
|
|
|
|
OPT_BOOLEAN(0, "summary", &merge_summary, "alias for --log"),
|
2009-05-23 20:53:13 +02:00
|
|
|
OPT_FILENAME('F', "file", &inpath, "file to read from"),
|
2008-10-02 14:59:18 +02:00
|
|
|
OPT_END()
|
|
|
|
};
|
|
|
|
|
2008-06-27 18:21:59 +02:00
|
|
|
FILE *in = stdin;
|
2008-10-09 21:12:12 +02:00
|
|
|
struct strbuf input = STRBUF_INIT, output = STRBUF_INIT;
|
2008-06-27 18:21:59 +02:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
git_config(fmt_merge_msg_config, NULL);
|
2009-05-23 20:53:12 +02:00
|
|
|
argc = parse_options(argc, argv, prefix, options, fmt_merge_msg_usage,
|
|
|
|
0);
|
2008-10-02 14:59:18 +02:00
|
|
|
if (argc > 0)
|
|
|
|
usage_with_options(fmt_merge_msg_usage, options);
|
|
|
|
|
|
|
|
if (inpath && strcmp(inpath, "-")) {
|
|
|
|
in = fopen(inpath, "r");
|
|
|
|
if (!in)
|
2009-06-27 17:58:47 +02:00
|
|
|
die_errno("cannot open '%s'", inpath);
|
2008-06-27 18:21:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (strbuf_read(&input, fileno(in), 0) < 0)
|
2009-06-27 17:58:46 +02:00
|
|
|
die_errno("could not read input file");
|
2008-06-27 18:21:59 +02:00
|
|
|
ret = fmt_merge_msg(merge_summary, &input, &output);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2008-10-02 14:59:18 +02:00
|
|
|
write_in_full(STDOUT_FILENO, output.buf, output.len);
|
2006-07-03 17:18:43 +02:00
|
|
|
return 0;
|
|
|
|
}
|