2 * Builtin "git log" and related commands (show, whatchanged)
4 * (C) Copyright 2006 Linus Torvalds
14 /* this is in builtin-diff.c */
15 void add_head(struct rev_info
*revs
);
17 static int cmd_log_wc(int argc
, const char **argv
, char **envp
,
20 struct commit
*commit
;
22 rev
->abbrev
= DEFAULT_ABBREV
;
23 rev
->commit_format
= CMIT_FMT_DEFAULT
;
24 rev
->verbose_header
= 1;
25 argc
= setup_revisions(argc
, argv
, rev
, "HEAD");
26 if (rev
->always_show_header
) {
27 if (rev
->diffopt
.pickaxe
|| rev
->diffopt
.filter
) {
28 rev
->always_show_header
= 0;
29 if (rev
->diffopt
.output_format
== DIFF_FORMAT_RAW
)
30 rev
->diffopt
.output_format
= DIFF_FORMAT_NO_OUTPUT
;
35 die("unrecognized argument: %s", argv
[1]);
37 prepare_revision_walk(rev
);
39 while ((commit
= get_revision(rev
)) != NULL
) {
40 log_tree_commit(rev
, commit
);
42 commit
->buffer
= NULL
;
43 free_commit_list(commit
->parents
);
44 commit
->parents
= NULL
;
49 int cmd_whatchanged(int argc
, const char **argv
, char **envp
)
55 rev
.diffopt
.recursive
= 1;
56 rev
.simplify_history
= 0;
57 return cmd_log_wc(argc
, argv
, envp
, &rev
);
60 int cmd_show(int argc
, const char **argv
, char **envp
)
66 rev
.diffopt
.recursive
= 1;
67 rev
.combine_merges
= 1;
68 rev
.dense_combined_merges
= 1;
69 rev
.always_show_header
= 1;
70 rev
.ignore_merges
= 0;
72 return cmd_log_wc(argc
, argv
, envp
, &rev
);
75 int cmd_log(int argc
, const char **argv
, char **envp
)
80 rev
.always_show_header
= 1;
81 rev
.diffopt
.recursive
= 1;
82 return cmd_log_wc(argc
, argv
, envp
, &rev
);
85 static int istitlechar(char c
)
87 return (c
>= 'a' && c
<= 'z') || (c
>= 'A' && c
<= 'Z') ||
88 (c
>= '0' && c
<= '9') || c
== '.' || c
== '_';
91 static char *extra_headers
= NULL
;
92 static int extra_headers_size
= 0;
94 static int git_format_config(const char *var
, const char *value
)
96 if (!strcmp(var
, "format.headers")) {
97 int len
= strlen(value
);
98 extra_headers_size
+= len
+ 1;
99 extra_headers
= realloc(extra_headers
, extra_headers_size
);
100 extra_headers
[extra_headers_size
- len
- 1] = 0;
101 strcat(extra_headers
, value
);
104 return git_default_config(var
, value
);
108 static FILE *realstdout
= NULL
;
109 static const char *output_directory
= NULL
;
111 static void reopen_stdout(struct commit
*commit
, int nr
, int keep_subject
)
117 if (output_directory
) {
118 strlcpy(filename
, output_directory
, 1010);
119 len
= strlen(filename
);
120 if (filename
[len
- 1] != '/')
121 filename
[len
++] = '/';
124 sprintf(filename
+ len
, "%04d", nr
);
125 len
= strlen(filename
);
127 sol
= strstr(commit
->buffer
, "\n\n");
132 /* strip [PATCH] or [PATCH blabla] */
133 if (!keep_subject
&& !strncmp(sol
, "[PATCH", 6)) {
134 char *eos
= strchr(sol
+ 6, ']');
136 while (isspace(*eos
))
142 for (j
= 0; len
< 1024 - 6 && sol
[j
] && sol
[j
] != '\n'; j
++) {
143 if (istitlechar(sol
[j
])) {
145 filename
[len
++] = '-';
148 filename
[len
++] = sol
[j
];
150 while (sol
[j
+ 1] == '.')
155 while (filename
[len
- 1] == '.' || filename
[len
- 1] == '-')
158 strcpy(filename
+ len
, ".txt");
159 fprintf(realstdout
, "%s\n", filename
);
160 freopen(filename
, "w", stdout
);
163 int cmd_format_patch(int argc
, const char **argv
, char **envp
)
165 struct commit
*commit
;
166 struct commit
**list
= NULL
;
168 int nr
= 0, total
, i
, j
;
171 int start_number
= -1;
172 int keep_subject
= 0;
173 char *add_signoff
= NULL
;
175 init_revisions(&rev
);
176 rev
.commit_format
= CMIT_FMT_EMAIL
;
177 rev
.verbose_header
= 1;
179 rev
.diffopt
.with_raw
= 0;
180 rev
.diffopt
.with_stat
= 1;
181 rev
.combine_merges
= 0;
182 rev
.ignore_merges
= 1;
183 rev
.diffopt
.output_format
= DIFF_FORMAT_PATCH
;
185 git_config(git_format_config
);
186 rev
.extra_headers
= extra_headers
;
189 * Parse the arguments before setup_revisions(), or something
190 * like "git fmt-patch -o a123 HEAD^.." may fail; a123 is
191 * possibly a valid SHA1.
193 for (i
= 1, j
= 1; i
< argc
; i
++) {
194 if (!strcmp(argv
[i
], "--stdout"))
196 else if (!strcmp(argv
[i
], "-n") ||
197 !strcmp(argv
[i
], "--numbered"))
199 else if (!strncmp(argv
[i
], "--start-number=", 15))
200 start_number
= strtol(argv
[i
] + 15, NULL
, 10);
201 else if (!strcmp(argv
[i
], "--start-number")) {
204 die("Need a number for --start-number");
205 start_number
= strtol(argv
[i
], NULL
, 10);
207 else if (!strcmp(argv
[i
], "-k") ||
208 !strcmp(argv
[i
], "--keep-subject")) {
212 else if (!strcmp(argv
[i
], "--output-directory") ||
213 !strcmp(argv
[i
], "-o")) {
216 die("Which directory?");
217 if (output_directory
)
218 die("Two output directories?");
219 output_directory
= argv
[i
];
221 else if (!strcmp(argv
[i
], "--signoff") ||
222 !strcmp(argv
[i
], "-s")) {
223 const char *committer
;
226 committer
= git_committer_info(1);
227 endpos
= strchr(committer
, '>');
229 die("bogos committer info %s\n", committer
);
230 add_signoff
= xmalloc(endpos
- committer
+ 2);
231 memcpy(add_signoff
, committer
, endpos
- committer
+ 1);
232 add_signoff
[endpos
- committer
+ 1] = 0;
234 else if (!strcmp(argv
[i
], "--attach"))
235 rev
.mime_boundary
= git_version_string
;
236 else if (!strncmp(argv
[i
], "--attach=", 9))
237 rev
.mime_boundary
= argv
[i
] + 9;
243 if (start_number
< 0)
245 if (numbered
&& keep_subject
)
246 die ("-n and -k are mutually exclusive.");
248 argc
= setup_revisions(argc
, argv
, &rev
, "HEAD");
250 die ("unrecognized argument: %s", argv
[1]);
252 if (output_directory
) {
254 die("standard output, or directory, which one?");
255 if (mkdir(output_directory
, 0777) < 0 && errno
!= EEXIST
)
256 die("Could not create directory %s",
260 if (rev
.pending
.nr
== 1) {
261 rev
.pending
.objects
[0].item
->flags
|= UNINTERESTING
;
266 realstdout
= fdopen(dup(1), "w");
268 prepare_revision_walk(&rev
);
269 while ((commit
= get_revision(&rev
)) != NULL
) {
271 if (commit
->parents
&& commit
->parents
->next
)
274 list
= realloc(list
, nr
* sizeof(list
[0]));
275 list
[nr
- 1] = commit
;
279 rev
.total
= total
+ start_number
- 1;
280 rev
.add_signoff
= add_signoff
;
284 rev
.nr
= total
- nr
+ (start_number
- 1);
286 reopen_stdout(commit
, rev
.nr
, keep_subject
);
287 shown
= log_tree_commit(&rev
, commit
);
288 free(commit
->buffer
);
289 commit
->buffer
= NULL
;
291 /* We put one extra blank line between formatted
292 * patches and this flag is used by log-tree code
293 * to see if it needs to emit a LF before showing
294 * the log; when using one file per patch, we do
295 * not want the extra blank line.
300 if (rev
.mime_boundary
)
301 printf("\n--%s%s--\n\n\n",
302 mime_boundary_leader
,
305 printf("-- \n%s\n\n", git_version_string
);