8 static const char *fmt_merge_msg_usage
=
9 "git-fmt-merge-msg [--log] [--no-log] [--file <file>]";
11 static int merge_summary
;
13 static int fmt_merge_msg_config(const char *key
, const char *value
)
15 static int found_merge_log
= 0;
16 if (!strcmp("merge.log", key
)) {
18 merge_summary
= git_config_bool(key
, value
);
20 if (!found_merge_log
&& !strcmp("merge.summary", key
))
21 merge_summary
= git_config_bool(key
, value
);
31 static void append_to_list(struct list
*list
, char *value
, void *payload
)
33 if (list
->nr
== list
->alloc
) {
35 list
->list
= xrealloc(list
->list
, sizeof(char *) * list
->alloc
);
36 list
->payload
= xrealloc(list
->payload
,
37 sizeof(char *) * list
->alloc
);
39 list
->payload
[list
->nr
] = payload
;
40 list
->list
[list
->nr
++] = value
;
43 static int find_in_list(struct list
*list
, char *value
)
47 for (i
= 0; i
< list
->nr
; i
++)
48 if (!strcmp(list
->list
[i
], value
))
54 static void free_list(struct list
*list
)
61 for (i
= 0; i
< list
->nr
; i
++) {
63 free(list
->payload
[i
]);
67 list
->nr
= list
->alloc
= 0;
71 struct list branch
, tag
, r_branch
, generic
;
75 static struct list srcs
= { NULL
, NULL
, 0, 0};
76 static struct list origins
= { NULL
, NULL
, 0, 0};
78 static int handle_line(char *line
)
80 int i
, len
= strlen(line
);
83 struct src_data
*src_data
;
86 if (len
< 43 || line
[40] != '\t')
89 if (!prefixcmp(line
+ 41, "not-for-merge"))
97 i
= get_sha1(line
, sha1
);
102 if (line
[len
- 1] == '\n')
106 src
= strstr(line
, " of ");
116 i
= find_in_list(&srcs
, src
);
119 append_to_list(&srcs
, xstrdup(src
),
120 xcalloc(1, sizeof(struct src_data
)));
122 src_data
= srcs
.payload
[i
];
125 origin
= xstrdup(src
);
126 src_data
->head_status
|= 1;
127 } else if (!prefixcmp(line
, "branch ")) {
128 origin
= xstrdup(line
+ 7);
129 append_to_list(&src_data
->branch
, origin
, NULL
);
130 src_data
->head_status
|= 2;
131 } else if (!prefixcmp(line
, "tag ")) {
133 append_to_list(&src_data
->tag
, xstrdup(origin
+ 4), NULL
);
134 src_data
->head_status
|= 2;
135 } else if (!prefixcmp(line
, "remote branch ")) {
136 origin
= xstrdup(line
+ 14);
137 append_to_list(&src_data
->r_branch
, origin
, NULL
);
138 src_data
->head_status
|= 2;
140 origin
= xstrdup(src
);
141 append_to_list(&src_data
->generic
, xstrdup(line
), NULL
);
142 src_data
->head_status
|= 2;
145 if (!strcmp(".", src
) || !strcmp(src
, origin
)) {
146 int len
= strlen(origin
);
147 if (origin
[0] == '\'' && origin
[len
- 1] == '\'') {
148 origin
= xmemdupz(origin
+ 1, len
- 2);
150 origin
= xstrdup(origin
);
153 char *new_origin
= xmalloc(strlen(origin
) + strlen(src
) + 5);
154 sprintf(new_origin
, "%s of %s", origin
, src
);
157 append_to_list(&origins
, origin
, sha1
);
161 static void print_joined(const char *singular
, const char *plural
,
167 printf("%s%s", singular
, list
->list
[0]);
170 printf("%s", plural
);
171 for (i
= 0; i
< list
->nr
- 1; i
++)
172 printf("%s%s", i
> 0 ? ", " : "", list
->list
[i
]);
173 printf(" and %s", list
->list
[list
->nr
- 1]);
177 static void shortlog(const char *name
, unsigned char *sha1
,
178 struct commit
*head
, struct rev_info
*rev
, int limit
)
181 struct commit
*commit
;
182 struct object
*branch
;
183 struct list subjects
= { NULL
, NULL
, 0, 0 };
184 int flags
= UNINTERESTING
| TREESAME
| SEEN
| SHOWN
| ADDED
;
186 branch
= deref_tag(parse_object(sha1
), sha1_to_hex(sha1
), 40);
187 if (!branch
|| branch
->type
!= OBJ_COMMIT
)
190 setup_revisions(0, NULL
, rev
, NULL
);
191 rev
->ignore_merges
= 1;
192 add_pending_object(rev
, branch
, name
);
193 add_pending_object(rev
, &head
->object
, "^HEAD");
194 head
->object
.flags
|= UNINTERESTING
;
195 if (prepare_revision_walk(rev
))
196 die("revision walk setup failed");
197 while ((commit
= get_revision(rev
)) != NULL
) {
198 char *oneline
, *bol
, *eol
;
201 if (commit
->parents
&& commit
->parents
->next
)
205 if (subjects
.nr
> limit
)
208 bol
= strstr(commit
->buffer
, "\n\n");
210 append_to_list(&subjects
, xstrdup(sha1_to_hex(
211 commit
->object
.sha1
)),
217 eol
= strchr(bol
, '\n');
219 oneline
= xmemdupz(bol
, eol
- bol
);
221 oneline
= xstrdup(bol
);
223 append_to_list(&subjects
, oneline
, NULL
);
227 printf("\n* %s: (%d commits)\n", name
, count
);
229 printf("\n* %s:\n", name
);
231 for (i
= 0; i
< subjects
.nr
; i
++)
235 printf(" %s\n", subjects
.list
[i
]);
237 clear_commit_marks((struct commit
*)branch
, flags
);
238 clear_commit_marks(head
, flags
);
239 free_commit_list(rev
->commits
);
243 free_list(&subjects
);
246 int cmd_fmt_merge_msg(int argc
, const char **argv
, const char *prefix
)
248 int limit
= 20, i
= 0;
251 const char *sep
= "";
252 unsigned char head_sha1
[20];
253 const char *current_branch
;
255 git_config(fmt_merge_msg_config
);
258 if (!strcmp(argv
[1], "--log") || !strcmp(argv
[1], "--summary"))
260 else if (!strcmp(argv
[1], "--no-log")
261 || !strcmp(argv
[1], "--no-summary"))
263 else if (!strcmp(argv
[1], "-F") || !strcmp(argv
[1], "--file")) {
266 if (!strcmp(argv
[2], "-"))
270 in
= fopen(argv
[2], "r");
272 die("cannot open %s", argv
[2]);
281 usage(fmt_merge_msg_usage
);
283 /* get current branch */
284 current_branch
= resolve_ref("HEAD", head_sha1
, 1, NULL
);
286 die("No current branch");
287 if (!prefixcmp(current_branch
, "refs/heads/"))
288 current_branch
+= 11;
290 while (fgets(line
, sizeof(line
), in
)) {
294 if (handle_line(line
))
295 die ("Error in line %d: %s", i
, line
);
299 for (i
= 0; i
< srcs
.nr
; i
++) {
300 struct src_data
*src_data
= srcs
.payload
[i
];
301 const char *subsep
= "";
306 if (src_data
->head_status
== 1) {
307 printf(srcs
.list
[i
]);
310 if (src_data
->head_status
== 3) {
314 if (src_data
->branch
.nr
) {
317 print_joined("branch ", "branches ", &src_data
->branch
);
319 if (src_data
->r_branch
.nr
) {
322 print_joined("remote branch ", "remote branches ",
323 &src_data
->r_branch
);
325 if (src_data
->tag
.nr
) {
328 print_joined("tag ", "tags ", &src_data
->tag
);
330 if (src_data
->generic
.nr
) {
332 print_joined("commit ", "commits ", &src_data
->generic
);
334 if (strcmp(".", srcs
.list
[i
]))
335 printf(" of %s", srcs
.list
[i
]);
338 if (!strcmp("master", current_branch
))
341 printf(" into %s\n", current_branch
);
347 head
= lookup_commit(head_sha1
);
348 init_revisions(&rev
, prefix
);
349 rev
.commit_format
= CMIT_FMT_ONELINE
;
350 rev
.ignore_merges
= 1;
353 for (i
= 0; i
< origins
.nr
; i
++)
354 shortlog(origins
.list
[i
], origins
.payload
[i
],
358 /* No cleanup yet; is standalone anyway */