7 static const char *fmt_merge_msg_usage
=
8 "git-fmt-merge-msg [--summary] [--no-summary] [--file <file>]";
10 static int merge_summary
= 0;
12 static int fmt_merge_msg_config(const char *key
, const char *value
)
14 if (!strcmp("merge.summary", key
))
15 merge_summary
= git_config_bool(key
, value
);
25 static void append_to_list(struct list
*list
, char *value
, void *payload
)
27 if (list
->nr
== list
->alloc
) {
29 list
->list
= realloc(list
->list
, sizeof(char *) * list
->alloc
);
30 list
->payload
= realloc(list
->payload
,
31 sizeof(char *) * list
->alloc
);
33 list
->payload
[list
->nr
] = payload
;
34 list
->list
[list
->nr
++] = value
;
37 static int find_in_list(struct list
*list
, char *value
)
41 for (i
= 0; i
< list
->nr
; i
++)
42 if (!strcmp(list
->list
[i
], value
))
48 static void free_list(struct list
*list
)
55 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
;
80 if (len
< 43 || line
[40] != '\t')
83 if (!strncmp(line
+ 41, "not-for-merge", 13))
91 i
= get_sha1(line
, sha1
);
96 if (line
[len
- 1] == '\n')
100 src
= strstr(line
, " of ");
107 i
= find_in_list(&srcs
, src
);
110 append_to_list(&srcs
, strdup(src
),
111 xcalloc(1, sizeof(struct src_data
)));
113 src_data
= srcs
.payload
[i
];
115 if (!strncmp(line
, "branch ", 7)) {
116 origin
= strdup(line
+ 7);
117 append_to_list(&src_data
->branch
, origin
, NULL
);
118 src_data
->head_status
|= 2;
119 } else if (!strncmp(line
, "tag ", 4)) {
121 append_to_list(&src_data
->tag
, strdup(origin
+ 4), NULL
);
122 src_data
->head_status
|= 2;
123 } else if (!strncmp(line
, "remote branch ", 14)) {
124 origin
= strdup(line
+ 14);
125 append_to_list(&src_data
->r_branch
, origin
, NULL
);
126 src_data
->head_status
|= 2;
127 } else if (!strcmp(line
, "HEAD")) {
128 origin
= strdup(src
);
129 src_data
->head_status
|= 1;
131 origin
= strdup(src
);
132 append_to_list(&src_data
->generic
, strdup(line
), NULL
);
133 src_data
->head_status
|= 2;
136 if (!strcmp(".", src
) || !strcmp(src
, origin
)) {
137 int len
= strlen(origin
);
138 if (origin
[0] == '\'' && origin
[len
- 1] == '\'') {
139 char *new_origin
= malloc(len
- 1);
140 memcpy(new_origin
, origin
+ 1, len
- 2);
141 new_origin
[len
- 1] = 0;
144 origin
= strdup(origin
);
146 char *new_origin
= malloc(strlen(origin
) + strlen(src
) + 5);
147 sprintf(new_origin
, "%s of %s", origin
, src
);
150 append_to_list(&origins
, origin
, sha1
);
154 static void print_joined(const char *singular
, const char *plural
,
160 printf("%s%s", singular
, list
->list
[0]);
163 printf("%s", plural
);
164 for (i
= 0; i
< list
->nr
- 1; i
++)
165 printf("%s%s", i
> 0 ? ", " : "", list
->list
[i
]);
166 printf(" and %s", list
->list
[list
->nr
- 1]);
170 static void shortlog(const char *name
, unsigned char *sha1
,
171 struct commit
*head
, struct rev_info
*rev
, int limit
)
174 struct commit
*commit
;
175 struct object
*branch
;
176 struct list subjects
= { NULL
, NULL
, 0, 0 };
177 int flags
= UNINTERESTING
| TREECHANGE
| SEEN
| SHOWN
| ADDED
;
179 branch
= deref_tag(parse_object(sha1
), sha1_to_hex(sha1
), 40);
180 if (!branch
|| branch
->type
!= TYPE_COMMIT
)
183 setup_revisions(0, NULL
, rev
, NULL
);
184 rev
->ignore_merges
= 1;
185 add_pending_object(rev
, branch
, name
);
186 add_pending_object(rev
, &head
->object
, "^HEAD");
187 head
->object
.flags
|= UNINTERESTING
;
188 prepare_revision_walk(rev
);
189 while ((commit
= get_revision(rev
)) != NULL
) {
190 char *oneline
, *bol
, *eol
;
193 if (commit
->parents
&& commit
->parents
->next
)
197 if (subjects
.nr
> limit
)
200 bol
= strstr(commit
->buffer
, "\n\n");
202 append_to_list(&subjects
, strdup(sha1_to_hex(
203 commit
->object
.sha1
)),
209 eol
= strchr(bol
, '\n');
213 oneline
= malloc(len
+ 1);
214 memcpy(oneline
, bol
, len
);
217 oneline
= strdup(bol
);
218 append_to_list(&subjects
, oneline
, NULL
);
222 printf("\n* %s: (%d commits)\n", name
, count
);
224 printf("\n* %s:\n", name
);
226 for (i
= 0; i
< subjects
.nr
; i
++)
230 printf(" %s\n", subjects
.list
[i
]);
232 clear_commit_marks((struct commit
*)branch
, flags
);
233 clear_commit_marks(head
, flags
);
234 free_commit_list(rev
->commits
);
238 free_list(&subjects
);
241 int cmd_fmt_merge_msg(int argc
, char **argv
, char **envp
)
243 int limit
= 20, i
= 0;
246 const char *sep
= "";
247 unsigned char head_sha1
[20];
248 const char *head
, *current_branch
;
250 git_config(fmt_merge_msg_config
);
253 if (!strcmp(argv
[1], "--summary"))
255 else if (!strcmp(argv
[1], "--no-summary"))
257 else if (!strcmp(argv
[1], "-F") || !strcmp(argv
[1], "--file")) {
260 if (!strcmp(argv
[2], "-"))
264 in
= fopen(argv
[2], "r");
273 usage(fmt_merge_msg_usage
);
275 /* get current branch */
276 head
= strdup(git_path("HEAD"));
277 current_branch
= resolve_ref(head
, head_sha1
, 1);
278 current_branch
+= strlen(head
) - 4;
280 if (!strncmp(current_branch
, "refs/heads/", 11))
281 current_branch
+= 11;
283 while (fgets(line
, sizeof(line
), in
)) {
287 if (handle_line(line
))
288 die ("Error in line %d: %s", i
, line
);
292 for (i
= 0; i
< srcs
.nr
; i
++) {
293 struct src_data
*src_data
= srcs
.payload
[i
];
294 const char *subsep
= "";
299 if (src_data
->head_status
== 1) {
300 printf(srcs
.list
[i
]);
303 if (src_data
->head_status
== 3) {
307 if (src_data
->branch
.nr
) {
310 print_joined("branch ", "branches ", &src_data
->branch
);
312 if (src_data
->r_branch
.nr
) {
315 print_joined("remote branch ", "remote branches ",
316 &src_data
->r_branch
);
318 if (src_data
->tag
.nr
) {
321 print_joined("tag ", "tags ", &src_data
->tag
);
323 if (src_data
->generic
.nr
) {
325 print_joined("commit ", "commits ", &src_data
->generic
);
327 if (strcmp(".", srcs
.list
[i
]))
328 printf(" of %s", srcs
.list
[i
]);
331 if (!strcmp("master", current_branch
))
334 printf(" into %s\n", current_branch
);
340 head
= lookup_commit(head_sha1
);
341 init_revisions(&rev
);
342 rev
.commit_format
= CMIT_FMT_ONELINE
;
343 rev
.ignore_merges
= 1;
346 for (i
= 0; i
< origins
.nr
; i
++)
347 shortlog(origins
.list
[i
], origins
.payload
[i
],
351 /* No cleanup yet; is standalone anyway */