8 static const char *fmt_merge_msg_usage
=
9 "git-fmt-merge-msg [--summary] [--no-summary] [--file <file>]";
11 static int merge_summary
;
13 static int fmt_merge_msg_config(const char *key
, const char *value
)
15 if (!strcmp("merge.summary", key
))
16 merge_summary
= git_config_bool(key
, value
);
26 static void append_to_list(struct list
*list
, char *value
, void *payload
)
28 if (list
->nr
== list
->alloc
) {
30 list
->list
= xrealloc(list
->list
, sizeof(char *) * list
->alloc
);
31 list
->payload
= xrealloc(list
->payload
,
32 sizeof(char *) * list
->alloc
);
34 list
->payload
[list
->nr
] = payload
;
35 list
->list
[list
->nr
++] = value
;
38 static int find_in_list(struct list
*list
, char *value
)
42 for (i
= 0; i
< list
->nr
; i
++)
43 if (!strcmp(list
->list
[i
], value
))
49 static void free_list(struct list
*list
)
56 for (i
= 0; i
< list
->nr
; i
++) {
58 free(list
->payload
[i
]);
62 list
->nr
= list
->alloc
= 0;
66 struct list branch
, tag
, r_branch
, generic
;
70 static struct list srcs
= { NULL
, NULL
, 0, 0};
71 static struct list origins
= { NULL
, NULL
, 0, 0};
73 static int handle_line(char *line
)
75 int i
, len
= strlen(line
);
78 struct src_data
*src_data
;
81 if (len
< 43 || line
[40] != '\t')
84 if (!prefixcmp(line
+ 41, "not-for-merge"))
92 i
= get_sha1(line
, sha1
);
97 if (line
[len
- 1] == '\n')
98 line
[len
- 1] = 0, --len
;
99 if (line
[len
- 1] == '\r')
103 src
= strstr(line
, " of ");
113 i
= find_in_list(&srcs
, src
);
116 append_to_list(&srcs
, xstrdup(src
),
117 xcalloc(1, sizeof(struct src_data
)));
119 src_data
= srcs
.payload
[i
];
122 origin
= xstrdup(src
);
123 src_data
->head_status
|= 1;
124 } else if (!prefixcmp(line
, "branch ")) {
125 origin
= xstrdup(line
+ 7);
126 append_to_list(&src_data
->branch
, origin
, NULL
);
127 src_data
->head_status
|= 2;
128 } else if (!prefixcmp(line
, "tag ")) {
130 append_to_list(&src_data
->tag
, xstrdup(origin
+ 4), NULL
);
131 src_data
->head_status
|= 2;
132 } else if (!prefixcmp(line
, "remote branch ")) {
133 origin
= xstrdup(line
+ 14);
134 append_to_list(&src_data
->r_branch
, origin
, NULL
);
135 src_data
->head_status
|= 2;
137 origin
= xstrdup(src
);
138 append_to_list(&src_data
->generic
, xstrdup(line
), NULL
);
139 src_data
->head_status
|= 2;
142 if (!strcmp(".", src
) || !strcmp(src
, origin
)) {
143 int len
= strlen(origin
);
144 if (origin
[0] == '\'' && origin
[len
- 1] == '\'') {
145 char *new_origin
= xmalloc(len
- 1);
146 memcpy(new_origin
, origin
+ 1, len
- 2);
147 new_origin
[len
- 2] = 0;
150 origin
= xstrdup(origin
);
152 char *new_origin
= xmalloc(strlen(origin
) + strlen(src
) + 5);
153 sprintf(new_origin
, "%s of %s", origin
, src
);
156 append_to_list(&origins
, origin
, sha1
);
160 static void print_joined(const char *singular
, const char *plural
,
166 printf("%s%s", singular
, list
->list
[0]);
169 printf("%s", plural
);
170 for (i
= 0; i
< list
->nr
- 1; i
++)
171 printf("%s%s", i
> 0 ? ", " : "", list
->list
[i
]);
172 printf(" and %s", list
->list
[list
->nr
- 1]);
176 static void shortlog(const char *name
, unsigned char *sha1
,
177 struct commit
*head
, struct rev_info
*rev
, int limit
)
180 struct commit
*commit
;
181 struct object
*branch
;
182 struct list subjects
= { NULL
, NULL
, 0, 0 };
183 int flags
= UNINTERESTING
| TREECHANGE
| SEEN
| SHOWN
| ADDED
;
185 branch
= deref_tag(parse_object(sha1
), sha1_to_hex(sha1
), 40);
186 if (!branch
|| branch
->type
!= OBJ_COMMIT
)
189 setup_revisions(0, NULL
, rev
, NULL
);
190 rev
->ignore_merges
= 1;
191 add_pending_object(rev
, branch
, name
);
192 add_pending_object(rev
, &head
->object
, "^HEAD");
193 head
->object
.flags
|= UNINTERESTING
;
194 prepare_revision_walk(rev
);
195 while ((commit
= get_revision(rev
)) != NULL
) {
196 char *oneline
, *bol
, *eol
;
199 if (commit
->parents
&& commit
->parents
->next
)
203 if (subjects
.nr
> limit
)
206 bol
= strstr(commit
->buffer
, "\n\n");
208 append_to_list(&subjects
, xstrdup(sha1_to_hex(
209 commit
->object
.sha1
)),
215 eol
= strchr(bol
, '\n');
219 oneline
= xmalloc(len
+ 1);
220 memcpy(oneline
, bol
, len
);
223 oneline
= xstrdup(bol
);
224 append_to_list(&subjects
, oneline
, NULL
);
228 printf("\n* %s: (%d commits)\n", name
, count
);
230 printf("\n* %s:\n", name
);
232 for (i
= 0; i
< subjects
.nr
; i
++)
236 printf(" %s\n", subjects
.list
[i
]);
238 clear_commit_marks((struct commit
*)branch
, flags
);
239 clear_commit_marks(head
, flags
);
240 free_commit_list(rev
->commits
);
244 free_list(&subjects
);
247 int cmd_fmt_merge_msg(int argc
, const char **argv
, const char *prefix
)
249 int limit
= 20, i
= 0;
252 const char *sep
= "";
253 unsigned char head_sha1
[20];
254 const char *current_branch
;
256 git_config(fmt_merge_msg_config
);
259 if (!strcmp(argv
[1], "--summary"))
261 else if (!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 */