Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Builtin "git log" and related commands (show, whatchanged) |
| 3 | * |
| 4 | * (C) Copyright 2006 Linus Torvalds |
| 5 | * 2006 Junio Hamano |
| 6 | */ |
| 7 | #include "cache.h" |
Matthias Kestenholz | 6b2f2d9 | 2008-02-18 08:26:03 +0100 | [diff] [blame] | 8 | #include "color.h" |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 9 | #include "commit.h" |
| 10 | #include "diff.h" |
| 11 | #include "revision.h" |
| 12 | #include "log-tree.h" |
Junio C Hamano | 91efcf6 | 2006-04-21 13:19:58 -0700 | [diff] [blame] | 13 | #include "builtin.h" |
Johannes Schindelin | 5d7eeee | 2006-12-14 11:31:05 +0100 | [diff] [blame] | 14 | #include "tag.h" |
Linus Torvalds | cf39f54 | 2007-02-08 09:51:56 -0800 | [diff] [blame] | 15 | #include "reflog-walk.h" |
Junio C Hamano | 5d23e13 | 2007-04-09 17:01:27 -0700 | [diff] [blame] | 16 | #include "patch-ids.h" |
Daniel Barkalow | a5a27c7 | 2008-02-18 22:56:13 -0500 | [diff] [blame] | 17 | #include "run-command.h" |
Daniel Barkalow | 2bda2cf | 2008-02-25 18:24:17 -0500 | [diff] [blame] | 18 | #include "shortlog.h" |
Markus Heidelberg | f296802 | 2008-12-29 18:45:20 +0100 | [diff] [blame] | 19 | #include "remote.h" |
Thomas Rast | b079c50 | 2009-02-19 22:26:31 +0100 | [diff] [blame] | 20 | #include "string-list.h" |
Stephen Boyd | fff02ee | 2009-05-16 02:24:46 -0700 | [diff] [blame] | 21 | #include "parse-options.h" |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 22 | |
Heikki Orsila | dd0ffd5 | 2008-05-22 18:24:07 +0300 | [diff] [blame] | 23 | /* Set a default date-time format for git log ("log.date" config variable) */ |
| 24 | static const char *default_date_mode = NULL; |
| 25 | |
Jay Soffian | 0c47695 | 2011-05-18 13:56:04 -0400 | [diff] [blame] | 26 | static int default_abbrev_commit; |
Peter Baumann | 0f03ca9 | 2006-11-23 10:36:33 +0100 | [diff] [blame] | 27 | static int default_show_root = 1; |
Junio C Hamano | 8a3d203 | 2010-02-17 10:20:49 -0800 | [diff] [blame] | 28 | static int decoration_style; |
Carlos Martín Nieto | 1c40c36 | 2011-04-14 16:28:30 +0200 | [diff] [blame] | 29 | static int decoration_given; |
Alex Riesen | d54276f | 2007-07-04 12:37:27 +0200 | [diff] [blame] | 30 | static const char *fmt_patch_subject_prefix = "PATCH"; |
Denis Cheng | 94c22a5 | 2008-03-02 17:05:53 +0800 | [diff] [blame] | 31 | static const char *fmt_pretty; |
Peter Baumann | 0f03ca9 | 2006-11-23 10:36:33 +0100 | [diff] [blame] | 32 | |
Carlos Martín Nieto | 1c40c36 | 2011-04-14 16:28:30 +0200 | [diff] [blame] | 33 | static const char * const builtin_log_usage[] = { |
Matthieu Moy | 1c370ea | 2009-08-06 12:47:21 +0200 | [diff] [blame] | 34 | "git log [<options>] [<since>..<until>] [[--] <path>...]\n" |
Carlos Martín Nieto | 1c40c36 | 2011-04-14 16:28:30 +0200 | [diff] [blame] | 35 | " or: git show [options] <object>...", |
| 36 | NULL |
| 37 | }; |
Matthieu Moy | 1c370ea | 2009-08-06 12:47:21 +0200 | [diff] [blame] | 38 | |
Junio C Hamano | 8a3d203 | 2010-02-17 10:20:49 -0800 | [diff] [blame] | 39 | static int parse_decoration_style(const char *var, const char *value) |
| 40 | { |
| 41 | switch (git_config_maybe_bool(var, value)) { |
| 42 | case 1: |
| 43 | return DECORATE_SHORT_REFS; |
| 44 | case 0: |
| 45 | return 0; |
| 46 | default: |
| 47 | break; |
| 48 | } |
| 49 | if (!strcmp(value, "full")) |
| 50 | return DECORATE_FULL_REFS; |
| 51 | else if (!strcmp(value, "short")) |
| 52 | return DECORATE_SHORT_REFS; |
| 53 | return -1; |
| 54 | } |
| 55 | |
Carlos Martín Nieto | 1c40c36 | 2011-04-14 16:28:30 +0200 | [diff] [blame] | 56 | static int decorate_callback(const struct option *opt, const char *arg, int unset) |
| 57 | { |
| 58 | if (unset) |
| 59 | decoration_style = 0; |
| 60 | else if (arg) |
| 61 | decoration_style = parse_decoration_style("command line", arg); |
| 62 | else |
| 63 | decoration_style = DECORATE_SHORT_REFS; |
| 64 | |
| 65 | if (decoration_style < 0) |
| 66 | die("invalid --decorate option: %s", arg); |
| 67 | |
| 68 | decoration_given = 1; |
| 69 | |
| 70 | return 0; |
| 71 | } |
| 72 | |
Michael J Gruber | ef803fd | 2011-04-01 11:20:31 +0200 | [diff] [blame] | 73 | static void cmd_log_init_defaults(struct rev_info *rev) |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 74 | { |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 75 | rev->abbrev = DEFAULT_ABBREV; |
| 76 | rev->commit_format = CMIT_FMT_DEFAULT; |
Denis Cheng | 94c22a5 | 2008-03-02 17:05:53 +0800 | [diff] [blame] | 77 | if (fmt_pretty) |
Junio C Hamano | 4da45be | 2008-04-07 17:11:34 -0700 | [diff] [blame] | 78 | get_commit_format(fmt_pretty, rev); |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 79 | rev->verbose_header = 1; |
Pierre Habouzit | 8f67f8a | 2007-11-10 20:05:14 +0100 | [diff] [blame] | 80 | DIFF_OPT_SET(&rev->diffopt, RECURSIVE); |
Jay Soffian | 0c47695 | 2011-05-18 13:56:04 -0400 | [diff] [blame] | 81 | rev->abbrev_commit = default_abbrev_commit; |
Peter Baumann | 0f03ca9 | 2006-11-23 10:36:33 +0100 | [diff] [blame] | 82 | rev->show_root_diff = default_show_root; |
Alex Riesen | d54276f | 2007-07-04 12:37:27 +0200 | [diff] [blame] | 83 | rev->subject_prefix = fmt_patch_subject_prefix; |
Jeff King | 5ec11af | 2008-12-07 21:54:17 -0500 | [diff] [blame] | 84 | DIFF_OPT_SET(&rev->diffopt, ALLOW_TEXTCONV); |
Heikki Orsila | dd0ffd5 | 2008-05-22 18:24:07 +0300 | [diff] [blame] | 85 | |
| 86 | if (default_date_mode) |
| 87 | rev->date_mode = parse_date_format(default_date_mode); |
Michael J Gruber | ef803fd | 2011-04-01 11:20:31 +0200 | [diff] [blame] | 88 | } |
Heikki Orsila | dd0ffd5 | 2008-05-22 18:24:07 +0300 | [diff] [blame] | 89 | |
Michael J Gruber | ef803fd | 2011-04-01 11:20:31 +0200 | [diff] [blame] | 90 | static void cmd_log_init_finish(int argc, const char **argv, const char *prefix, |
| 91 | struct rev_info *rev, struct setup_revision_opt *opt) |
| 92 | { |
Michael J Gruber | ef803fd | 2011-04-01 11:20:31 +0200 | [diff] [blame] | 93 | struct userformat_want w; |
Carlos Martín Nieto | 1c40c36 | 2011-04-14 16:28:30 +0200 | [diff] [blame] | 94 | int quiet = 0, source = 0; |
| 95 | |
| 96 | const struct option builtin_log_options[] = { |
Jay Soffian | f0f90e3 | 2011-05-18 13:56:04 -0400 | [diff] [blame] | 97 | OPT_BOOLEAN(0, "quiet", &quiet, "suppress diff output"), |
Carlos Martín Nieto | 1c40c36 | 2011-04-14 16:28:30 +0200 | [diff] [blame] | 98 | OPT_BOOLEAN(0, "source", &source, "show source"), |
| 99 | { OPTION_CALLBACK, 0, "decorate", NULL, NULL, "decorate options", |
| 100 | PARSE_OPT_OPTARG, decorate_callback}, |
| 101 | OPT_END() |
| 102 | }; |
| 103 | |
| 104 | argc = parse_options(argc, argv, prefix, |
| 105 | builtin_log_options, builtin_log_usage, |
| 106 | PARSE_OPT_KEEP_ARGV0 | PARSE_OPT_KEEP_UNKNOWN | |
| 107 | PARSE_OPT_KEEP_DASHDASH); |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 108 | |
Junio C Hamano | 32962c9 | 2010-03-08 22:58:09 -0800 | [diff] [blame] | 109 | argc = setup_revisions(argc, argv, rev, opt); |
Junio C Hamano | 01771a8 | 2011-05-28 12:25:24 -0700 | [diff] [blame] | 110 | if (quiet) |
| 111 | rev->diffopt.output_format |= DIFF_FORMAT_NO_OUTPUT; |
Heikki Orsila | dd0ffd5 | 2008-05-22 18:24:07 +0300 | [diff] [blame] | 112 | |
Carlos Martín Nieto | 1c40c36 | 2011-04-14 16:28:30 +0200 | [diff] [blame] | 113 | /* Any arguments at this point are not recognized */ |
| 114 | if (argc > 1) |
| 115 | die("unrecognized argument: %s", argv[1]); |
| 116 | |
Johannes Gilger | 5b16360 | 2010-04-13 22:31:12 +0200 | [diff] [blame] | 117 | memset(&w, 0, sizeof(w)); |
| 118 | userformat_find_requirements(NULL, &w); |
| 119 | |
| 120 | if (!rev->show_notes_given && (!rev->pretty_given || w.notes)) |
Junio C Hamano | 66b2ed0 | 2010-01-20 13:59:36 -0800 | [diff] [blame] | 121 | rev->show_notes = 1; |
Thomas Rast | 894a9d3 | 2010-03-12 18:04:26 +0100 | [diff] [blame] | 122 | if (rev->show_notes) |
| 123 | init_display_notes(&rev->notes_opt); |
Junio C Hamano | 66b2ed0 | 2010-01-20 13:59:36 -0800 | [diff] [blame] | 124 | |
Timo Hirvonen | 9dafea2 | 2006-06-25 15:39:35 +0300 | [diff] [blame] | 125 | if (rev->diffopt.pickaxe || rev->diffopt.filter) |
| 126 | rev->always_show_header = 0; |
Pierre Habouzit | 8f67f8a | 2007-11-10 20:05:14 +0100 | [diff] [blame] | 127 | if (DIFF_OPT_TST(&rev->diffopt, FOLLOW_RENAMES)) { |
Linus Torvalds | 750f7b6 | 2007-06-19 14:22:46 -0700 | [diff] [blame] | 128 | rev->always_show_header = 0; |
Nguyễn Thái Ngọc Duy | 66f1362 | 2010-12-15 22:02:38 +0700 | [diff] [blame] | 129 | if (rev->diffopt.pathspec.nr != 1) |
Linus Torvalds | 750f7b6 | 2007-06-19 14:22:46 -0700 | [diff] [blame] | 130 | usage("git logs can only follow renames on one pathname at a time"); |
| 131 | } |
Carlos Martín Nieto | 1c40c36 | 2011-04-14 16:28:30 +0200 | [diff] [blame] | 132 | |
| 133 | if (source) |
| 134 | rev->show_source = 1; |
Junio C Hamano | 635530a | 2010-04-06 14:48:55 -0700 | [diff] [blame] | 135 | |
Jay Soffian | 0c47695 | 2011-05-18 13:56:04 -0400 | [diff] [blame] | 136 | if (rev->pretty_given && rev->commit_format == CMIT_FMT_RAW) { |
| 137 | /* |
| 138 | * "log --pretty=raw" is special; ignore UI oriented |
| 139 | * configuration variables such as decoration. |
| 140 | */ |
| 141 | if (!decoration_given) |
| 142 | decoration_style = 0; |
| 143 | if (!rev->abbrev_commit_given) |
| 144 | rev->abbrev_commit = 0; |
| 145 | } |
Junio C Hamano | 635530a | 2010-04-06 14:48:55 -0700 | [diff] [blame] | 146 | |
Lars Hjemli | 33e7018 | 2009-08-15 16:23:12 +0200 | [diff] [blame] | 147 | if (decoration_style) { |
| 148 | rev->show_decorations = 1; |
| 149 | load_ref_decorations(decoration_style); |
| 150 | } |
Linus Torvalds | 1fda91b | 2010-08-24 10:33:59 -0700 | [diff] [blame] | 151 | setup_pager(); |
Timo Hirvonen | 9dafea2 | 2006-06-25 15:39:35 +0300 | [diff] [blame] | 152 | } |
| 153 | |
Michael J Gruber | ef803fd | 2011-04-01 11:20:31 +0200 | [diff] [blame] | 154 | static void cmd_log_init(int argc, const char **argv, const char *prefix, |
| 155 | struct rev_info *rev, struct setup_revision_opt *opt) |
| 156 | { |
| 157 | cmd_log_init_defaults(rev); |
| 158 | cmd_log_init_finish(argc, argv, prefix, rev, opt); |
| 159 | } |
| 160 | |
Linus Torvalds | 252a7c0 | 2007-11-04 12:12:05 -0800 | [diff] [blame] | 161 | /* |
| 162 | * This gives a rough estimate for how many commits we |
| 163 | * will print out in the list. |
| 164 | */ |
| 165 | static int estimate_commit_count(struct rev_info *rev, struct commit_list *list) |
| 166 | { |
| 167 | int n = 0; |
| 168 | |
| 169 | while (list) { |
| 170 | struct commit *commit = list->item; |
| 171 | unsigned int flags = commit->object.flags; |
Linus Torvalds | 252a7c0 | 2007-11-04 12:12:05 -0800 | [diff] [blame] | 172 | list = list->next; |
Linus Torvalds | 7dc0fe3 | 2007-11-12 23:16:08 -0800 | [diff] [blame] | 173 | if (!(flags & (TREESAME | UNINTERESTING))) |
Linus Torvalds | 53b2c82 | 2007-11-05 13:22:34 -0800 | [diff] [blame] | 174 | n++; |
Linus Torvalds | 252a7c0 | 2007-11-04 12:12:05 -0800 | [diff] [blame] | 175 | } |
| 176 | return n; |
| 177 | } |
| 178 | |
| 179 | static void show_early_header(struct rev_info *rev, const char *stage, int nr) |
| 180 | { |
| 181 | if (rev->shown_one) { |
| 182 | rev->shown_one = 0; |
| 183 | if (rev->commit_format != CMIT_FMT_ONELINE) |
| 184 | putchar(rev->diffopt.line_termination); |
| 185 | } |
Ævar Arnfjörð Bjarmason | 5c5f1d7 | 2011-02-22 23:41:57 +0000 | [diff] [blame] | 186 | printf(_("Final output: %d %s\n"), nr, stage); |
Linus Torvalds | 252a7c0 | 2007-11-04 12:12:05 -0800 | [diff] [blame] | 187 | } |
| 188 | |
Linus Torvalds | 2af202b | 2009-06-18 10:28:43 -0700 | [diff] [blame] | 189 | static struct itimerval early_output_timer; |
Linus Torvalds | 252a7c0 | 2007-11-04 12:12:05 -0800 | [diff] [blame] | 190 | |
Linus Torvalds | cdcefbc | 2007-11-03 11:11:10 -0700 | [diff] [blame] | 191 | static void log_show_early(struct rev_info *revs, struct commit_list *list) |
| 192 | { |
| 193 | int i = revs->early_output; |
Linus Torvalds | 252a7c0 | 2007-11-04 12:12:05 -0800 | [diff] [blame] | 194 | int show_header = 1; |
Linus Torvalds | cdcefbc | 2007-11-03 11:11:10 -0700 | [diff] [blame] | 195 | |
| 196 | sort_in_topological_order(&list, revs->lifo); |
| 197 | while (list && i) { |
| 198 | struct commit *commit = list->item; |
Linus Torvalds | 252a7c0 | 2007-11-04 12:12:05 -0800 | [diff] [blame] | 199 | switch (simplify_commit(revs, commit)) { |
| 200 | case commit_show: |
| 201 | if (show_header) { |
| 202 | int n = estimate_commit_count(revs, list); |
| 203 | show_early_header(revs, "incomplete", n); |
| 204 | show_header = 0; |
| 205 | } |
| 206 | log_tree_commit(revs, commit); |
| 207 | i--; |
| 208 | break; |
| 209 | case commit_ignore: |
| 210 | break; |
| 211 | case commit_error: |
| 212 | return; |
| 213 | } |
Linus Torvalds | cdcefbc | 2007-11-03 11:11:10 -0700 | [diff] [blame] | 214 | list = list->next; |
Linus Torvalds | cdcefbc | 2007-11-03 11:11:10 -0700 | [diff] [blame] | 215 | } |
Linus Torvalds | 252a7c0 | 2007-11-04 12:12:05 -0800 | [diff] [blame] | 216 | |
| 217 | /* Did we already get enough commits for the early output? */ |
| 218 | if (!i) |
| 219 | return; |
| 220 | |
| 221 | /* |
| 222 | * ..if no, then repeat it twice a second until we |
| 223 | * do. |
| 224 | * |
| 225 | * NOTE! We don't use "it_interval", because if the |
| 226 | * reader isn't listening, we want our output to be |
| 227 | * throttled by the writing, and not have the timer |
| 228 | * trigger every second even if we're blocked on a |
| 229 | * reader! |
| 230 | */ |
| 231 | early_output_timer.it_value.tv_sec = 0; |
| 232 | early_output_timer.it_value.tv_usec = 500000; |
| 233 | setitimer(ITIMER_REAL, &early_output_timer, NULL); |
Linus Torvalds | cdcefbc | 2007-11-03 11:11:10 -0700 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | static void early_output(int signal) |
| 237 | { |
| 238 | show_early_output = log_show_early; |
| 239 | } |
| 240 | |
| 241 | static void setup_early_output(struct rev_info *rev) |
| 242 | { |
| 243 | struct sigaction sa; |
Linus Torvalds | cdcefbc | 2007-11-03 11:11:10 -0700 | [diff] [blame] | 244 | |
| 245 | /* |
| 246 | * Set up the signal handler, minimally intrusively: |
| 247 | * we only set a single volatile integer word (not |
| 248 | * using sigatomic_t - trying to avoid unnecessary |
| 249 | * system dependencies and headers), and using |
| 250 | * SA_RESTART. |
| 251 | */ |
| 252 | memset(&sa, 0, sizeof(sa)); |
| 253 | sa.sa_handler = early_output; |
| 254 | sigemptyset(&sa.sa_mask); |
| 255 | sa.sa_flags = SA_RESTART; |
| 256 | sigaction(SIGALRM, &sa, NULL); |
| 257 | |
| 258 | /* |
| 259 | * If we can get the whole output in less than a |
| 260 | * tenth of a second, don't even bother doing the |
| 261 | * early-output thing.. |
| 262 | * |
| 263 | * This is a one-time-only trigger. |
| 264 | */ |
Linus Torvalds | 252a7c0 | 2007-11-04 12:12:05 -0800 | [diff] [blame] | 265 | early_output_timer.it_value.tv_sec = 0; |
| 266 | early_output_timer.it_value.tv_usec = 100000; |
| 267 | setitimer(ITIMER_REAL, &early_output_timer, NULL); |
Linus Torvalds | cdcefbc | 2007-11-03 11:11:10 -0700 | [diff] [blame] | 268 | } |
| 269 | |
| 270 | static void finish_early_output(struct rev_info *rev) |
| 271 | { |
Linus Torvalds | 252a7c0 | 2007-11-04 12:12:05 -0800 | [diff] [blame] | 272 | int n = estimate_commit_count(rev, rev->commits); |
Linus Torvalds | cdcefbc | 2007-11-03 11:11:10 -0700 | [diff] [blame] | 273 | signal(SIGALRM, SIG_IGN); |
Linus Torvalds | 252a7c0 | 2007-11-04 12:12:05 -0800 | [diff] [blame] | 274 | show_early_header(rev, "done", n); |
Linus Torvalds | cdcefbc | 2007-11-03 11:11:10 -0700 | [diff] [blame] | 275 | } |
| 276 | |
Timo Hirvonen | 9dafea2 | 2006-06-25 15:39:35 +0300 | [diff] [blame] | 277 | static int cmd_log_walk(struct rev_info *rev) |
| 278 | { |
| 279 | struct commit *commit; |
Junio C Hamano | f31027c | 2011-01-06 13:50:06 -0800 | [diff] [blame] | 280 | int saved_nrl = 0; |
| 281 | int saved_dcctc = 0; |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 282 | |
Linus Torvalds | cdcefbc | 2007-11-03 11:11:10 -0700 | [diff] [blame] | 283 | if (rev->early_output) |
| 284 | setup_early_output(rev); |
| 285 | |
Martin Koegler | 3d51e1b | 2008-02-18 08:31:56 +0100 | [diff] [blame] | 286 | if (prepare_revision_walk(rev)) |
Ævar Arnfjörð Bjarmason | 5c5f1d7 | 2011-02-22 23:41:57 +0000 | [diff] [blame] | 287 | die(_("revision walk setup failed")); |
Linus Torvalds | cdcefbc | 2007-11-03 11:11:10 -0700 | [diff] [blame] | 288 | |
| 289 | if (rev->early_output) |
| 290 | finish_early_output(rev); |
| 291 | |
Peter Valdemar Mørch | 036d17f | 2008-08-11 08:46:24 +0200 | [diff] [blame] | 292 | /* |
Peter Valdemar Mørch | 84102a3 | 2008-08-11 08:46:25 +0200 | [diff] [blame] | 293 | * For --check and --exit-code, the exit code is based on CHECK_FAILED |
| 294 | * and HAS_CHANGES being accumulated in rev->diffopt, so be careful to |
| 295 | * retain that state information if replacing rev->diffopt in this loop |
Peter Valdemar Mørch | 036d17f | 2008-08-11 08:46:24 +0200 | [diff] [blame] | 296 | */ |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 297 | while ((commit = get_revision(rev)) != NULL) { |
Matthieu Moy | 251df09 | 2011-03-09 21:52:15 +0100 | [diff] [blame] | 298 | if (!log_tree_commit(rev, commit) && |
| 299 | rev->max_count >= 0) |
| 300 | /* |
| 301 | * We decremented max_count in get_revision, |
| 302 | * but we didn't actually show the commit. |
| 303 | */ |
| 304 | rev->max_count++; |
Johannes Schindelin | a6c7306 | 2007-01-20 22:28:16 +0100 | [diff] [blame] | 305 | if (!rev->reflog_info) { |
| 306 | /* we allow cycles in reflog ancestry */ |
| 307 | free(commit->buffer); |
| 308 | commit->buffer = NULL; |
| 309 | } |
Linus Torvalds | cb11574 | 2006-06-17 18:47:58 -0700 | [diff] [blame] | 310 | free_commit_list(commit->parents); |
| 311 | commit->parents = NULL; |
Junio C Hamano | f31027c | 2011-01-06 13:50:06 -0800 | [diff] [blame] | 312 | if (saved_nrl < rev->diffopt.needed_rename_limit) |
| 313 | saved_nrl = rev->diffopt.needed_rename_limit; |
| 314 | if (rev->diffopt.degraded_cc_to_c) |
| 315 | saved_dcctc = 1; |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 316 | } |
Junio C Hamano | f31027c | 2011-01-06 13:50:06 -0800 | [diff] [blame] | 317 | rev->diffopt.degraded_cc_to_c = saved_dcctc; |
| 318 | rev->diffopt.needed_rename_limit = saved_nrl; |
| 319 | |
Peter Valdemar Mørch | 036d17f | 2008-08-11 08:46:24 +0200 | [diff] [blame] | 320 | if (rev->diffopt.output_format & DIFF_FORMAT_CHECKDIFF && |
| 321 | DIFF_OPT_TST(&rev->diffopt, CHECK_FAILED)) { |
| 322 | return 02; |
| 323 | } |
Peter Valdemar Mørch | 84102a3 | 2008-08-11 08:46:25 +0200 | [diff] [blame] | 324 | return diff_result_code(&rev->diffopt, 0); |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 325 | } |
| 326 | |
Johannes Schindelin | ef90d6d | 2008-05-14 18:46:53 +0100 | [diff] [blame] | 327 | static int git_log_config(const char *var, const char *value, void *cb) |
Peter Baumann | 0f03ca9 | 2006-11-23 10:36:33 +0100 | [diff] [blame] | 328 | { |
Denis Cheng | 94c22a5 | 2008-03-02 17:05:53 +0800 | [diff] [blame] | 329 | if (!strcmp(var, "format.pretty")) |
| 330 | return git_config_string(&fmt_pretty, var, value); |
Brian Hetro | 70cff3a | 2008-07-05 01:24:41 -0400 | [diff] [blame] | 331 | if (!strcmp(var, "format.subjectprefix")) |
| 332 | return git_config_string(&fmt_patch_subject_prefix, var, value); |
Jay Soffian | 0c47695 | 2011-05-18 13:56:04 -0400 | [diff] [blame] | 333 | if (!strcmp(var, "log.abbrevcommit")) { |
| 334 | default_abbrev_commit = git_config_bool(var, value); |
| 335 | return 0; |
| 336 | } |
Heikki Orsila | dd0ffd5 | 2008-05-22 18:24:07 +0300 | [diff] [blame] | 337 | if (!strcmp(var, "log.date")) |
| 338 | return git_config_string(&default_date_mode, var, value); |
Steven Drake | eb73445 | 2010-02-17 12:39:52 +1300 | [diff] [blame] | 339 | if (!strcmp(var, "log.decorate")) { |
Junio C Hamano | 8a3d203 | 2010-02-17 10:20:49 -0800 | [diff] [blame] | 340 | decoration_style = parse_decoration_style(var, value); |
| 341 | if (decoration_style < 0) |
| 342 | decoration_style = 0; /* maybe warn? */ |
Steven Drake | eb73445 | 2010-02-17 12:39:52 +1300 | [diff] [blame] | 343 | return 0; |
| 344 | } |
Peter Baumann | 0f03ca9 | 2006-11-23 10:36:33 +0100 | [diff] [blame] | 345 | if (!strcmp(var, "log.showroot")) { |
| 346 | default_show_root = git_config_bool(var, value); |
| 347 | return 0; |
| 348 | } |
Nazri Ramliy | 5e11bee | 2010-06-24 08:21:16 +0800 | [diff] [blame] | 349 | if (!prefixcmp(var, "color.decorate.")) |
| 350 | return parse_decorate_color_config(var, 15, value); |
| 351 | |
Johannes Schindelin | ef90d6d | 2008-05-14 18:46:53 +0100 | [diff] [blame] | 352 | return git_diff_ui_config(var, value, cb); |
Peter Baumann | 0f03ca9 | 2006-11-23 10:36:33 +0100 | [diff] [blame] | 353 | } |
| 354 | |
Linus Torvalds | a633fca | 2006-07-28 22:44:25 -0700 | [diff] [blame] | 355 | int cmd_whatchanged(int argc, const char **argv, const char *prefix) |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 356 | { |
| 357 | struct rev_info rev; |
Junio C Hamano | 32962c9 | 2010-03-08 22:58:09 -0800 | [diff] [blame] | 358 | struct setup_revision_opt opt; |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 359 | |
Johannes Schindelin | ef90d6d | 2008-05-14 18:46:53 +0100 | [diff] [blame] | 360 | git_config(git_log_config, NULL); |
Matthias Kestenholz | 6b2f2d9 | 2008-02-18 08:26:03 +0100 | [diff] [blame] | 361 | |
Linus Torvalds | db6296a | 2006-07-28 21:21:48 -0700 | [diff] [blame] | 362 | init_revisions(&rev, prefix); |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 363 | rev.diff = 1; |
Linus Torvalds | 9202434 | 2006-06-11 10:57:35 -0700 | [diff] [blame] | 364 | rev.simplify_history = 0; |
Junio C Hamano | 32962c9 | 2010-03-08 22:58:09 -0800 | [diff] [blame] | 365 | memset(&opt, 0, sizeof(opt)); |
| 366 | opt.def = "HEAD"; |
| 367 | cmd_log_init(argc, argv, prefix, &rev, &opt); |
Timo Hirvonen | 9dafea2 | 2006-06-25 15:39:35 +0300 | [diff] [blame] | 368 | if (!rev.diffopt.output_format) |
| 369 | rev.diffopt.output_format = DIFF_FORMAT_RAW; |
| 370 | return cmd_log_walk(&rev); |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 371 | } |
| 372 | |
Johannes Schindelin | 56122ed | 2007-12-18 18:01:33 +0000 | [diff] [blame] | 373 | static void show_tagger(char *buf, int len, struct rev_info *rev) |
| 374 | { |
Johannes Schindelin | ea718e6 | 2009-01-02 19:08:43 +0100 | [diff] [blame] | 375 | struct strbuf out = STRBUF_INIT; |
Jeff King | 6bf1394 | 2011-05-26 18:27:49 -0400 | [diff] [blame] | 376 | struct pretty_print_context pp = {0}; |
Johannes Schindelin | 56122ed | 2007-12-18 18:01:33 +0000 | [diff] [blame] | 377 | |
Jeff King | 6bf1394 | 2011-05-26 18:27:49 -0400 | [diff] [blame] | 378 | pp.fmt = rev->commit_format; |
| 379 | pp.date_mode = rev->date_mode; |
| 380 | pp_user_info(&pp, "Tagger", &out, buf, get_log_output_encoding()); |
Jeff King | ca4ca9e | 2009-07-17 19:18:34 -0400 | [diff] [blame] | 381 | printf("%s", out.buf); |
Johannes Schindelin | ea718e6 | 2009-01-02 19:08:43 +0100 | [diff] [blame] | 382 | strbuf_release(&out); |
Johannes Schindelin | 56122ed | 2007-12-18 18:01:33 +0000 | [diff] [blame] | 383 | } |
| 384 | |
| 385 | static int show_object(const unsigned char *sha1, int show_tag_object, |
| 386 | struct rev_info *rev) |
Johannes Schindelin | 5d7eeee | 2006-12-14 11:31:05 +0100 | [diff] [blame] | 387 | { |
| 388 | unsigned long size; |
Nicolas Pitre | 21666f1 | 2007-02-26 14:55:59 -0500 | [diff] [blame] | 389 | enum object_type type; |
| 390 | char *buf = read_sha1_file(sha1, &type, &size); |
Johannes Schindelin | 5d7eeee | 2006-12-14 11:31:05 +0100 | [diff] [blame] | 391 | int offset = 0; |
| 392 | |
| 393 | if (!buf) |
Ævar Arnfjörð Bjarmason | 5c5f1d7 | 2011-02-22 23:41:57 +0000 | [diff] [blame] | 394 | return error(_("Could not read object %s"), sha1_to_hex(sha1)); |
Johannes Schindelin | 5d7eeee | 2006-12-14 11:31:05 +0100 | [diff] [blame] | 395 | |
Johannes Schindelin | 56122ed | 2007-12-18 18:01:33 +0000 | [diff] [blame] | 396 | if (show_tag_object) |
| 397 | while (offset < size && buf[offset] != '\n') { |
| 398 | int new_offset = offset + 1; |
Johannes Schindelin | 5d7eeee | 2006-12-14 11:31:05 +0100 | [diff] [blame] | 399 | while (new_offset < size && buf[new_offset++] != '\n') |
| 400 | ; /* do nothing */ |
Johannes Schindelin | 56122ed | 2007-12-18 18:01:33 +0000 | [diff] [blame] | 401 | if (!prefixcmp(buf + offset, "tagger ")) |
| 402 | show_tagger(buf + offset + 7, |
| 403 | new_offset - offset - 7, rev); |
Johannes Schindelin | 5d7eeee | 2006-12-14 11:31:05 +0100 | [diff] [blame] | 404 | offset = new_offset; |
| 405 | } |
| 406 | |
| 407 | if (offset < size) |
| 408 | fwrite(buf + offset, size - offset, 1, stdout); |
| 409 | free(buf); |
| 410 | return 0; |
| 411 | } |
| 412 | |
| 413 | static int show_tree_object(const unsigned char *sha1, |
| 414 | const char *base, int baselen, |
René Scharfe | 671f070 | 2008-07-14 21:22:12 +0200 | [diff] [blame] | 415 | const char *pathname, unsigned mode, int stage, void *context) |
Johannes Schindelin | 5d7eeee | 2006-12-14 11:31:05 +0100 | [diff] [blame] | 416 | { |
| 417 | printf("%s%s\n", pathname, S_ISDIR(mode) ? "/" : ""); |
| 418 | return 0; |
| 419 | } |
| 420 | |
Junio C Hamano | b449005 | 2010-03-08 23:27:25 -0800 | [diff] [blame] | 421 | static void show_rev_tweak_rev(struct rev_info *rev, struct setup_revision_opt *opt) |
| 422 | { |
Junio C Hamano | 2bf6587 | 2010-03-09 00:22:54 -0800 | [diff] [blame] | 423 | if (rev->ignore_merges) { |
| 424 | /* There was no "-m" on the command line */ |
| 425 | rev->ignore_merges = 0; |
| 426 | if (!rev->first_parent_only && !rev->combine_merges) { |
| 427 | /* No "--first-parent", "-c", nor "--cc" */ |
| 428 | rev->combine_merges = 1; |
| 429 | rev->dense_combined_merges = 1; |
| 430 | } |
| 431 | } |
Junio C Hamano | b449005 | 2010-03-08 23:27:25 -0800 | [diff] [blame] | 432 | if (!rev->diffopt.output_format) |
| 433 | rev->diffopt.output_format = DIFF_FORMAT_PATCH; |
| 434 | } |
| 435 | |
Linus Torvalds | a633fca | 2006-07-28 22:44:25 -0700 | [diff] [blame] | 436 | int cmd_show(int argc, const char **argv, const char *prefix) |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 437 | { |
| 438 | struct rev_info rev; |
Johannes Schindelin | 5d7eeee | 2006-12-14 11:31:05 +0100 | [diff] [blame] | 439 | struct object_array_entry *objects; |
Junio C Hamano | 32962c9 | 2010-03-08 22:58:09 -0800 | [diff] [blame] | 440 | struct setup_revision_opt opt; |
Nguyễn Thái Ngọc Duy | f0096c0 | 2011-03-25 16:34:19 +0700 | [diff] [blame] | 441 | struct pathspec match_all; |
Johannes Schindelin | 5d7eeee | 2006-12-14 11:31:05 +0100 | [diff] [blame] | 442 | int i, count, ret = 0; |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 443 | |
Johannes Schindelin | ef90d6d | 2008-05-14 18:46:53 +0100 | [diff] [blame] | 444 | git_config(git_log_config, NULL); |
Matthias Kestenholz | 6b2f2d9 | 2008-02-18 08:26:03 +0100 | [diff] [blame] | 445 | |
Nguyễn Thái Ngọc Duy | f0096c0 | 2011-03-25 16:34:19 +0700 | [diff] [blame] | 446 | init_pathspec(&match_all, NULL); |
Linus Torvalds | db6296a | 2006-07-28 21:21:48 -0700 | [diff] [blame] | 447 | init_revisions(&rev, prefix); |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 448 | rev.diff = 1; |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 449 | rev.always_show_header = 1; |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 450 | rev.no_walk = 1; |
Junio C Hamano | 32962c9 | 2010-03-08 22:58:09 -0800 | [diff] [blame] | 451 | memset(&opt, 0, sizeof(opt)); |
| 452 | opt.def = "HEAD"; |
Junio C Hamano | b449005 | 2010-03-08 23:27:25 -0800 | [diff] [blame] | 453 | opt.tweak = show_rev_tweak_rev; |
Junio C Hamano | 32962c9 | 2010-03-08 22:58:09 -0800 | [diff] [blame] | 454 | cmd_log_init(argc, argv, prefix, &rev, &opt); |
Johannes Schindelin | 5d7eeee | 2006-12-14 11:31:05 +0100 | [diff] [blame] | 455 | |
| 456 | count = rev.pending.nr; |
| 457 | objects = rev.pending.objects; |
| 458 | for (i = 0; i < count && !ret; i++) { |
| 459 | struct object *o = objects[i].item; |
| 460 | const char *name = objects[i].name; |
| 461 | switch (o->type) { |
| 462 | case OBJ_BLOB: |
Johannes Schindelin | 56122ed | 2007-12-18 18:01:33 +0000 | [diff] [blame] | 463 | ret = show_object(o->sha1, 0, NULL); |
Johannes Schindelin | 5d7eeee | 2006-12-14 11:31:05 +0100 | [diff] [blame] | 464 | break; |
| 465 | case OBJ_TAG: { |
| 466 | struct tag *t = (struct tag *)o; |
| 467 | |
Jeff King | ae03ee6 | 2009-07-18 06:14:37 -0400 | [diff] [blame] | 468 | if (rev.shown_one) |
| 469 | putchar('\n'); |
Johannes Schindelin | 56122ed | 2007-12-18 18:01:33 +0000 | [diff] [blame] | 470 | printf("%stag %s%s\n", |
Pierre Habouzit | 8f67f8a | 2007-11-10 20:05:14 +0100 | [diff] [blame] | 471 | diff_get_color_opt(&rev.diffopt, DIFF_COMMIT), |
Johannes Schindelin | 5d7eeee | 2006-12-14 11:31:05 +0100 | [diff] [blame] | 472 | t->tag, |
Pierre Habouzit | 8f67f8a | 2007-11-10 20:05:14 +0100 | [diff] [blame] | 473 | diff_get_color_opt(&rev.diffopt, DIFF_RESET)); |
Johannes Schindelin | 56122ed | 2007-12-18 18:01:33 +0000 | [diff] [blame] | 474 | ret = show_object(o->sha1, 1, &rev); |
Jeff King | ae03ee6 | 2009-07-18 06:14:37 -0400 | [diff] [blame] | 475 | rev.shown_one = 1; |
Junio C Hamano | d2dadfe | 2008-12-15 00:36:56 -0800 | [diff] [blame] | 476 | if (ret) |
| 477 | break; |
| 478 | o = parse_object(t->tagged->sha1); |
| 479 | if (!o) |
Ævar Arnfjörð Bjarmason | 5c5f1d7 | 2011-02-22 23:41:57 +0000 | [diff] [blame] | 480 | ret = error(_("Could not read object %s"), |
Junio C Hamano | d2dadfe | 2008-12-15 00:36:56 -0800 | [diff] [blame] | 481 | sha1_to_hex(t->tagged->sha1)); |
| 482 | objects[i].item = o; |
Johannes Schindelin | 5d7eeee | 2006-12-14 11:31:05 +0100 | [diff] [blame] | 483 | i--; |
| 484 | break; |
| 485 | } |
| 486 | case OBJ_TREE: |
Jeff King | ae03ee6 | 2009-07-18 06:14:37 -0400 | [diff] [blame] | 487 | if (rev.shown_one) |
| 488 | putchar('\n'); |
Johannes Schindelin | 5d7eeee | 2006-12-14 11:31:05 +0100 | [diff] [blame] | 489 | printf("%stree %s%s\n\n", |
Pierre Habouzit | 8f67f8a | 2007-11-10 20:05:14 +0100 | [diff] [blame] | 490 | diff_get_color_opt(&rev.diffopt, DIFF_COMMIT), |
Johannes Schindelin | 5d7eeee | 2006-12-14 11:31:05 +0100 | [diff] [blame] | 491 | name, |
Pierre Habouzit | 8f67f8a | 2007-11-10 20:05:14 +0100 | [diff] [blame] | 492 | diff_get_color_opt(&rev.diffopt, DIFF_RESET)); |
Nguyễn Thái Ngọc Duy | f0096c0 | 2011-03-25 16:34:19 +0700 | [diff] [blame] | 493 | read_tree_recursive((struct tree *)o, "", 0, 0, &match_all, |
René Scharfe | 671f070 | 2008-07-14 21:22:12 +0200 | [diff] [blame] | 494 | show_tree_object, NULL); |
Jeff King | ae03ee6 | 2009-07-18 06:14:37 -0400 | [diff] [blame] | 495 | rev.shown_one = 1; |
Johannes Schindelin | 5d7eeee | 2006-12-14 11:31:05 +0100 | [diff] [blame] | 496 | break; |
| 497 | case OBJ_COMMIT: |
| 498 | rev.pending.nr = rev.pending.alloc = 0; |
| 499 | rev.pending.objects = NULL; |
| 500 | add_object_array(o, name, &rev.pending); |
| 501 | ret = cmd_log_walk(&rev); |
| 502 | break; |
| 503 | default: |
Ævar Arnfjörð Bjarmason | 5c5f1d7 | 2011-02-22 23:41:57 +0000 | [diff] [blame] | 504 | ret = error(_("Unknown type: %d"), o->type); |
Johannes Schindelin | 5d7eeee | 2006-12-14 11:31:05 +0100 | [diff] [blame] | 505 | } |
| 506 | } |
| 507 | free(objects); |
| 508 | return ret; |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 509 | } |
| 510 | |
Linus Torvalds | cf39f54 | 2007-02-08 09:51:56 -0800 | [diff] [blame] | 511 | /* |
| 512 | * This is equivalent to "git log -g --abbrev-commit --pretty=oneline" |
| 513 | */ |
| 514 | int cmd_log_reflog(int argc, const char **argv, const char *prefix) |
| 515 | { |
| 516 | struct rev_info rev; |
Junio C Hamano | 32962c9 | 2010-03-08 22:58:09 -0800 | [diff] [blame] | 517 | struct setup_revision_opt opt; |
Linus Torvalds | cf39f54 | 2007-02-08 09:51:56 -0800 | [diff] [blame] | 518 | |
Johannes Schindelin | ef90d6d | 2008-05-14 18:46:53 +0100 | [diff] [blame] | 519 | git_config(git_log_config, NULL); |
Matthias Kestenholz | 6b2f2d9 | 2008-02-18 08:26:03 +0100 | [diff] [blame] | 520 | |
Linus Torvalds | cf39f54 | 2007-02-08 09:51:56 -0800 | [diff] [blame] | 521 | init_revisions(&rev, prefix); |
| 522 | init_reflog_walk(&rev.reflog_info); |
Linus Torvalds | cf39f54 | 2007-02-08 09:51:56 -0800 | [diff] [blame] | 523 | rev.verbose_header = 1; |
Junio C Hamano | 32962c9 | 2010-03-08 22:58:09 -0800 | [diff] [blame] | 524 | memset(&opt, 0, sizeof(opt)); |
| 525 | opt.def = "HEAD"; |
Michael J Gruber | 4b56cf5 | 2011-04-01 11:20:33 +0200 | [diff] [blame] | 526 | cmd_log_init_defaults(&rev); |
Jay Soffian | 0c47695 | 2011-05-18 13:56:04 -0400 | [diff] [blame] | 527 | rev.abbrev_commit = 1; |
Linus Torvalds | cf39f54 | 2007-02-08 09:51:56 -0800 | [diff] [blame] | 528 | rev.commit_format = CMIT_FMT_ONELINE; |
Junio C Hamano | 4da45be | 2008-04-07 17:11:34 -0700 | [diff] [blame] | 529 | rev.use_terminator = 1; |
Linus Torvalds | cf39f54 | 2007-02-08 09:51:56 -0800 | [diff] [blame] | 530 | rev.always_show_header = 1; |
Michael J Gruber | 4b56cf5 | 2011-04-01 11:20:33 +0200 | [diff] [blame] | 531 | cmd_log_init_finish(argc, argv, prefix, &rev, &opt); |
Linus Torvalds | cf39f54 | 2007-02-08 09:51:56 -0800 | [diff] [blame] | 532 | |
Linus Torvalds | cf39f54 | 2007-02-08 09:51:56 -0800 | [diff] [blame] | 533 | return cmd_log_walk(&rev); |
| 534 | } |
| 535 | |
Linus Torvalds | a633fca | 2006-07-28 22:44:25 -0700 | [diff] [blame] | 536 | int cmd_log(int argc, const char **argv, const char *prefix) |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 537 | { |
| 538 | struct rev_info rev; |
Junio C Hamano | 32962c9 | 2010-03-08 22:58:09 -0800 | [diff] [blame] | 539 | struct setup_revision_opt opt; |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 540 | |
Johannes Schindelin | ef90d6d | 2008-05-14 18:46:53 +0100 | [diff] [blame] | 541 | git_config(git_log_config, NULL); |
Matthias Kestenholz | 6b2f2d9 | 2008-02-18 08:26:03 +0100 | [diff] [blame] | 542 | |
Linus Torvalds | db6296a | 2006-07-28 21:21:48 -0700 | [diff] [blame] | 543 | init_revisions(&rev, prefix); |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 544 | rev.always_show_header = 1; |
Junio C Hamano | 32962c9 | 2010-03-08 22:58:09 -0800 | [diff] [blame] | 545 | memset(&opt, 0, sizeof(opt)); |
| 546 | opt.def = "HEAD"; |
| 547 | cmd_log_init(argc, argv, prefix, &rev, &opt); |
Timo Hirvonen | 9dafea2 | 2006-06-25 15:39:35 +0300 | [diff] [blame] | 548 | return cmd_log_walk(&rev); |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 549 | } |
Junio C Hamano | 91efcf6 | 2006-04-21 13:19:58 -0700 | [diff] [blame] | 550 | |
Robin Rosenberg | c06d2da | 2007-02-23 23:27:58 +0100 | [diff] [blame] | 551 | /* format-patch */ |
Johannes Schindelin | 0377db7 | 2006-05-05 01:16:40 +0200 | [diff] [blame] | 552 | |
Junio C Hamano | 917a8f8 | 2007-01-17 15:03:39 -0800 | [diff] [blame] | 553 | static const char *fmt_patch_suffix = ".patch"; |
Brian Gernhardt | 49604a4 | 2007-11-03 23:38:24 -0400 | [diff] [blame] | 554 | static int numbered = 0; |
Brian Gernhardt | a567fdc | 2008-10-02 16:55:39 -0400 | [diff] [blame] | 555 | static int auto_number = 1; |
Johannes Schindelin | 20ff068 | 2006-06-02 15:21:17 +0200 | [diff] [blame] | 556 | |
Jeremy White | 0db5260 | 2009-02-12 09:51:55 -0600 | [diff] [blame] | 557 | static char *default_attach = NULL; |
| 558 | |
Stephen Boyd | ca9e0a1 | 2010-03-07 14:46:46 -0800 | [diff] [blame] | 559 | static struct string_list extra_hdr; |
| 560 | static struct string_list extra_to; |
| 561 | static struct string_list extra_cc; |
Daniel Barkalow | 3ee79d9 | 2008-02-19 02:40:33 -0500 | [diff] [blame] | 562 | |
| 563 | static void add_header(const char *value) |
| 564 | { |
Stephen Boyd | ca9e0a1 | 2010-03-07 14:46:46 -0800 | [diff] [blame] | 565 | struct string_list_item *item; |
Daniel Barkalow | 3ee79d9 | 2008-02-19 02:40:33 -0500 | [diff] [blame] | 566 | int len = strlen(value); |
Jim Meyering | c8c4450 | 2008-08-19 20:42:04 +0200 | [diff] [blame] | 567 | while (len && value[len - 1] == '\n') |
Daniel Barkalow | 3ee79d9 | 2008-02-19 02:40:33 -0500 | [diff] [blame] | 568 | len--; |
Stephen Boyd | ca9e0a1 | 2010-03-07 14:46:46 -0800 | [diff] [blame] | 569 | |
Daniel Barkalow | 3ee79d9 | 2008-02-19 02:40:33 -0500 | [diff] [blame] | 570 | if (!strncasecmp(value, "to: ", 4)) { |
Julian Phillips | 1d2f80f | 2010-06-26 00:41:38 +0100 | [diff] [blame] | 571 | item = string_list_append(&extra_to, value + 4); |
Stephen Boyd | ca9e0a1 | 2010-03-07 14:46:46 -0800 | [diff] [blame] | 572 | len -= 4; |
| 573 | } else if (!strncasecmp(value, "cc: ", 4)) { |
Julian Phillips | 1d2f80f | 2010-06-26 00:41:38 +0100 | [diff] [blame] | 574 | item = string_list_append(&extra_cc, value + 4); |
Stephen Boyd | ca9e0a1 | 2010-03-07 14:46:46 -0800 | [diff] [blame] | 575 | len -= 4; |
| 576 | } else { |
Julian Phillips | 1d2f80f | 2010-06-26 00:41:38 +0100 | [diff] [blame] | 577 | item = string_list_append(&extra_hdr, value); |
Daniel Barkalow | 3ee79d9 | 2008-02-19 02:40:33 -0500 | [diff] [blame] | 578 | } |
Stephen Boyd | ca9e0a1 | 2010-03-07 14:46:46 -0800 | [diff] [blame] | 579 | |
| 580 | item->string[len] = '\0'; |
Daniel Barkalow | 3ee79d9 | 2008-02-19 02:40:33 -0500 | [diff] [blame] | 581 | } |
| 582 | |
Thomas Rast | 30984ed | 2009-02-19 22:26:33 +0100 | [diff] [blame] | 583 | #define THREAD_SHALLOW 1 |
| 584 | #define THREAD_DEEP 2 |
Stephen Boyd | 6622d9c | 2010-06-15 22:59:25 -0700 | [diff] [blame] | 585 | static int thread; |
| 586 | static int do_signoff; |
| 587 | static const char *signature = git_version_string; |
Thomas Rast | 30984ed | 2009-02-19 22:26:33 +0100 | [diff] [blame] | 588 | |
Johannes Schindelin | ef90d6d | 2008-05-14 18:46:53 +0100 | [diff] [blame] | 589 | static int git_format_config(const char *var, const char *value, void *cb) |
Johannes Schindelin | 20ff068 | 2006-06-02 15:21:17 +0200 | [diff] [blame] | 590 | { |
| 591 | if (!strcmp(var, "format.headers")) { |
Junio C Hamano | d7fb91c | 2007-01-17 11:13:02 -0800 | [diff] [blame] | 592 | if (!value) |
Ævar Arnfjörð Bjarmason | 5c5f1d7 | 2011-02-22 23:41:57 +0000 | [diff] [blame] | 593 | die(_("format.headers without value")); |
Daniel Barkalow | 3ee79d9 | 2008-02-19 02:40:33 -0500 | [diff] [blame] | 594 | add_header(value); |
Johannes Schindelin | 20ff068 | 2006-06-02 15:21:17 +0200 | [diff] [blame] | 595 | return 0; |
| 596 | } |
Brian Hetro | 70cff3a | 2008-07-05 01:24:41 -0400 | [diff] [blame] | 597 | if (!strcmp(var, "format.suffix")) |
| 598 | return git_config_string(&fmt_patch_suffix, var, value); |
Steven Drake | ae6c098 | 2010-02-17 12:39:34 +1300 | [diff] [blame] | 599 | if (!strcmp(var, "format.to")) { |
| 600 | if (!value) |
| 601 | return config_error_nonbool(var); |
Julian Phillips | 1d2f80f | 2010-06-26 00:41:38 +0100 | [diff] [blame] | 602 | string_list_append(&extra_to, value); |
Steven Drake | ae6c098 | 2010-02-17 12:39:34 +1300 | [diff] [blame] | 603 | return 0; |
| 604 | } |
Miklos Vajna | fe8928e | 2008-04-26 23:19:06 +0200 | [diff] [blame] | 605 | if (!strcmp(var, "format.cc")) { |
| 606 | if (!value) |
| 607 | return config_error_nonbool(var); |
Julian Phillips | 1d2f80f | 2010-06-26 00:41:38 +0100 | [diff] [blame] | 608 | string_list_append(&extra_cc, value); |
Miklos Vajna | fe8928e | 2008-04-26 23:19:06 +0200 | [diff] [blame] | 609 | return 0; |
| 610 | } |
Pang Yan Han | 787570c | 2011-09-13 01:46:41 +0800 | [diff] [blame] | 611 | if (!strcmp(var, "diff.color") || !strcmp(var, "color.diff") || |
| 612 | !strcmp(var, "color.ui")) { |
Ryan Anderson | f3aafa4 | 2006-07-09 02:28:21 -0400 | [diff] [blame] | 613 | return 0; |
| 614 | } |
Brian Gernhardt | 49604a4 | 2007-11-03 23:38:24 -0400 | [diff] [blame] | 615 | if (!strcmp(var, "format.numbered")) { |
Junio C Hamano | 90f5c18 | 2008-02-11 13:09:16 -0800 | [diff] [blame] | 616 | if (value && !strcasecmp(value, "auto")) { |
Brian Gernhardt | 49604a4 | 2007-11-03 23:38:24 -0400 | [diff] [blame] | 617 | auto_number = 1; |
| 618 | return 0; |
| 619 | } |
Brian Gernhardt | 49604a4 | 2007-11-03 23:38:24 -0400 | [diff] [blame] | 620 | numbered = git_config_bool(var, value); |
Brian Gernhardt | a567fdc | 2008-10-02 16:55:39 -0400 | [diff] [blame] | 621 | auto_number = auto_number && numbered; |
Brian Gernhardt | 49604a4 | 2007-11-03 23:38:24 -0400 | [diff] [blame] | 622 | return 0; |
| 623 | } |
Jeremy White | 0db5260 | 2009-02-12 09:51:55 -0600 | [diff] [blame] | 624 | if (!strcmp(var, "format.attach")) { |
| 625 | if (value && *value) |
| 626 | default_attach = xstrdup(value); |
| 627 | else |
| 628 | default_attach = xstrdup(git_version_string); |
| 629 | return 0; |
| 630 | } |
Thomas Rast | 30984ed | 2009-02-19 22:26:33 +0100 | [diff] [blame] | 631 | if (!strcmp(var, "format.thread")) { |
| 632 | if (value && !strcasecmp(value, "deep")) { |
| 633 | thread = THREAD_DEEP; |
| 634 | return 0; |
| 635 | } |
| 636 | if (value && !strcasecmp(value, "shallow")) { |
| 637 | thread = THREAD_SHALLOW; |
| 638 | return 0; |
| 639 | } |
| 640 | thread = git_config_bool(var, value) && THREAD_SHALLOW; |
| 641 | return 0; |
| 642 | } |
Heiko Voigt | 1d1876e | 2009-04-01 19:51:54 +0200 | [diff] [blame] | 643 | if (!strcmp(var, "format.signoff")) { |
| 644 | do_signoff = git_config_bool(var, value); |
| 645 | return 0; |
| 646 | } |
Stephen Boyd | 6622d9c | 2010-06-15 22:59:25 -0700 | [diff] [blame] | 647 | if (!strcmp(var, "format.signature")) |
| 648 | return git_config_string(&signature, var, value); |
Adam Roben | dbd2144 | 2007-07-01 17:48:59 -0700 | [diff] [blame] | 649 | |
Johannes Schindelin | ef90d6d | 2008-05-14 18:46:53 +0100 | [diff] [blame] | 650 | return git_log_config(var, value, cb); |
Johannes Schindelin | 20ff068 | 2006-06-02 15:21:17 +0200 | [diff] [blame] | 651 | } |
| 652 | |
Daniel Barkalow | a5a27c7 | 2008-02-18 22:56:13 -0500 | [diff] [blame] | 653 | static FILE *realstdout = NULL; |
| 654 | static const char *output_directory = NULL; |
Junio C Hamano | 9800a75 | 2009-01-12 15:18:02 -0800 | [diff] [blame] | 655 | static int outdir_offset; |
Daniel Barkalow | a5a27c7 | 2008-02-18 22:56:13 -0500 | [diff] [blame] | 656 | |
Carlos Martín Nieto | 250087f | 2011-04-12 17:35:38 +0200 | [diff] [blame] | 657 | static int reopen_stdout(struct commit *commit, struct rev_info *rev, int quiet) |
Daniel Barkalow | a5a27c7 | 2008-02-18 22:56:13 -0500 | [diff] [blame] | 658 | { |
Stephen Boyd | cd2ef59 | 2009-03-22 19:14:03 -0700 | [diff] [blame] | 659 | struct strbuf filename = STRBUF_INIT; |
Daniel Barkalow | a5a27c7 | 2008-02-18 22:56:13 -0500 | [diff] [blame] | 660 | int suffix_len = strlen(fmt_patch_suffix) + 1; |
| 661 | |
Johannes Schindelin | 2448482 | 2006-05-05 03:33:32 +0200 | [diff] [blame] | 662 | if (output_directory) { |
Stephen Boyd | cd2ef59 | 2009-03-22 19:14:03 -0700 | [diff] [blame] | 663 | strbuf_addstr(&filename, output_directory); |
| 664 | if (filename.len >= |
| 665 | PATH_MAX - FORMAT_PATCH_NAME_MAX - suffix_len) |
Ævar Arnfjörð Bjarmason | 5c5f1d7 | 2011-02-22 23:41:57 +0000 | [diff] [blame] | 666 | return error(_("name of output directory is too long")); |
Stephen Boyd | cd2ef59 | 2009-03-22 19:14:03 -0700 | [diff] [blame] | 667 | if (filename.buf[filename.len - 1] != '/') |
| 668 | strbuf_addch(&filename, '/'); |
Johannes Schindelin | 2448482 | 2006-05-05 03:33:32 +0200 | [diff] [blame] | 669 | } |
Johannes Schindelin | 0377db7 | 2006-05-05 01:16:40 +0200 | [diff] [blame] | 670 | |
Stephen Boyd | cd2ef59 | 2009-03-22 19:14:03 -0700 | [diff] [blame] | 671 | get_patch_filename(commit, rev->nr, fmt_patch_suffix, &filename); |
Jon Loeliger | e6ff0f4 | 2007-06-05 15:06:53 -0500 | [diff] [blame] | 672 | |
Carlos Martín Nieto | 250087f | 2011-04-12 17:35:38 +0200 | [diff] [blame] | 673 | if (!quiet) |
Stephen Boyd | cd2ef59 | 2009-03-22 19:14:03 -0700 | [diff] [blame] | 674 | fprintf(realstdout, "%s\n", filename.buf + outdir_offset); |
Nate Case | ec2956d | 2009-03-18 12:00:45 -0500 | [diff] [blame] | 675 | |
Stephen Boyd | cd2ef59 | 2009-03-22 19:14:03 -0700 | [diff] [blame] | 676 | if (freopen(filename.buf, "w", stdout) == NULL) |
Ævar Arnfjörð Bjarmason | 5c5f1d7 | 2011-02-22 23:41:57 +0000 | [diff] [blame] | 677 | return error(_("Cannot open patch file %s"), filename.buf); |
Robin Rosenberg | c06d2da | 2007-02-23 23:27:58 +0100 | [diff] [blame] | 678 | |
Stephen Boyd | cd2ef59 | 2009-03-22 19:14:03 -0700 | [diff] [blame] | 679 | strbuf_release(&filename); |
Jon Loeliger | e6ff0f4 | 2007-06-05 15:06:53 -0500 | [diff] [blame] | 680 | return 0; |
Johannes Schindelin | 0377db7 | 2006-05-05 01:16:40 +0200 | [diff] [blame] | 681 | } |
| 682 | |
Junio C Hamano | 5d23e13 | 2007-04-09 17:01:27 -0700 | [diff] [blame] | 683 | static void get_patch_ids(struct rev_info *rev, struct patch_ids *ids, const char *prefix) |
Johannes Schindelin | 9c6efa3 | 2006-06-25 03:52:01 +0200 | [diff] [blame] | 684 | { |
| 685 | struct rev_info check_rev; |
| 686 | struct commit *commit; |
| 687 | struct object *o1, *o2; |
| 688 | unsigned flags1, flags2; |
Johannes Schindelin | 9c6efa3 | 2006-06-25 03:52:01 +0200 | [diff] [blame] | 689 | |
| 690 | if (rev->pending.nr != 2) |
Ævar Arnfjörð Bjarmason | 5c5f1d7 | 2011-02-22 23:41:57 +0000 | [diff] [blame] | 691 | die(_("Need exactly one range.")); |
Johannes Schindelin | 9c6efa3 | 2006-06-25 03:52:01 +0200 | [diff] [blame] | 692 | |
| 693 | o1 = rev->pending.objects[0].item; |
| 694 | flags1 = o1->flags; |
| 695 | o2 = rev->pending.objects[1].item; |
| 696 | flags2 = o2->flags; |
| 697 | |
| 698 | if ((flags1 & UNINTERESTING) == (flags2 & UNINTERESTING)) |
Ævar Arnfjörð Bjarmason | 5c5f1d7 | 2011-02-22 23:41:57 +0000 | [diff] [blame] | 699 | die(_("Not a range.")); |
Johannes Schindelin | 9c6efa3 | 2006-06-25 03:52:01 +0200 | [diff] [blame] | 700 | |
Junio C Hamano | 5d23e13 | 2007-04-09 17:01:27 -0700 | [diff] [blame] | 701 | init_patch_ids(ids); |
Johannes Schindelin | 9c6efa3 | 2006-06-25 03:52:01 +0200 | [diff] [blame] | 702 | |
| 703 | /* given a range a..b get all patch ids for b..a */ |
Linus Torvalds | db6296a | 2006-07-28 21:21:48 -0700 | [diff] [blame] | 704 | init_revisions(&check_rev, prefix); |
Johannes Schindelin | 9c6efa3 | 2006-06-25 03:52:01 +0200 | [diff] [blame] | 705 | o1->flags ^= UNINTERESTING; |
| 706 | o2->flags ^= UNINTERESTING; |
| 707 | add_pending_object(&check_rev, o1, "o1"); |
| 708 | add_pending_object(&check_rev, o2, "o2"); |
Martin Koegler | 3d51e1b | 2008-02-18 08:31:56 +0100 | [diff] [blame] | 709 | if (prepare_revision_walk(&check_rev)) |
Ævar Arnfjörð Bjarmason | 5c5f1d7 | 2011-02-22 23:41:57 +0000 | [diff] [blame] | 710 | die(_("revision walk setup failed")); |
Johannes Schindelin | 9c6efa3 | 2006-06-25 03:52:01 +0200 | [diff] [blame] | 711 | |
| 712 | while ((commit = get_revision(&check_rev)) != NULL) { |
| 713 | /* ignore merges */ |
| 714 | if (commit->parents && commit->parents->next) |
| 715 | continue; |
| 716 | |
Junio C Hamano | 5d23e13 | 2007-04-09 17:01:27 -0700 | [diff] [blame] | 717 | add_commit_patch_id(commit, ids); |
Johannes Schindelin | 9c6efa3 | 2006-06-25 03:52:01 +0200 | [diff] [blame] | 718 | } |
| 719 | |
| 720 | /* reset for next revision walk */ |
Johannes Schindelin | 81db094 | 2006-06-27 22:38:04 +0200 | [diff] [blame] | 721 | clear_commit_marks((struct commit *)o1, |
| 722 | SEEN | UNINTERESTING | SHOWN | ADDED); |
| 723 | clear_commit_marks((struct commit *)o2, |
| 724 | SEEN | UNINTERESTING | SHOWN | ADDED); |
Johannes Schindelin | 9c6efa3 | 2006-06-25 03:52:01 +0200 | [diff] [blame] | 725 | o1->flags = flags1; |
| 726 | o2->flags = flags2; |
| 727 | } |
| 728 | |
Daniel Barkalow | e1a3734 | 2008-02-18 22:56:06 -0500 | [diff] [blame] | 729 | static void gen_message_id(struct rev_info *info, char *base) |
Josh Triplett | d1566f7 | 2006-07-14 17:48:51 -0700 | [diff] [blame] | 730 | { |
Junio C Hamano | 774751a | 2007-12-08 17:32:08 -0800 | [diff] [blame] | 731 | const char *committer = git_committer_info(IDENT_WARN_ON_NO_NAME); |
Josh Triplett | d1566f7 | 2006-07-14 17:48:51 -0700 | [diff] [blame] | 732 | const char *email_start = strrchr(committer, '<'); |
| 733 | const char *email_end = strrchr(committer, '>'); |
Brandon Casey | f285a2d | 2008-10-09 14:12:12 -0500 | [diff] [blame] | 734 | struct strbuf buf = STRBUF_INIT; |
Daniel Barkalow | e1a3734 | 2008-02-18 22:56:06 -0500 | [diff] [blame] | 735 | if (!email_start || !email_end || email_start > email_end - 1) |
Ævar Arnfjörð Bjarmason | 5c5f1d7 | 2011-02-22 23:41:57 +0000 | [diff] [blame] | 736 | die(_("Could not extract email from committer identity.")); |
Daniel Barkalow | e1a3734 | 2008-02-18 22:56:06 -0500 | [diff] [blame] | 737 | strbuf_addf(&buf, "%s.%lu.git.%.*s", base, |
| 738 | (unsigned long) time(NULL), |
| 739 | (int)(email_end - email_start - 1), email_start + 1); |
| 740 | info->message_id = strbuf_detach(&buf, NULL); |
Josh Triplett | d1566f7 | 2006-07-14 17:48:51 -0700 | [diff] [blame] | 741 | } |
| 742 | |
Stephen Boyd | 6622d9c | 2010-06-15 22:59:25 -0700 | [diff] [blame] | 743 | static void print_signature(void) |
| 744 | { |
| 745 | if (signature && *signature) |
| 746 | printf("-- \n%s\n\n", signature); |
| 747 | } |
| 748 | |
Daniel Barkalow | 2bda2cf | 2008-02-25 18:24:17 -0500 | [diff] [blame] | 749 | static void make_cover_letter(struct rev_info *rev, int use_stdout, |
| 750 | int numbered, int numbered_files, |
| 751 | struct commit *origin, |
Carlos Martín Nieto | 250087f | 2011-04-12 17:35:38 +0200 | [diff] [blame] | 752 | int nr, struct commit **list, struct commit *head, |
| 753 | int quiet) |
Daniel Barkalow | a5a27c7 | 2008-02-18 22:56:13 -0500 | [diff] [blame] | 754 | { |
| 755 | const char *committer; |
Daniel Barkalow | a5a27c7 | 2008-02-18 22:56:13 -0500 | [diff] [blame] | 756 | const char *body = "*** SUBJECT HERE ***\n\n*** BLURB HERE ***\n"; |
| 757 | const char *msg; |
Daniel Barkalow | 2bda2cf | 2008-02-25 18:24:17 -0500 | [diff] [blame] | 758 | struct shortlog log; |
Brandon Casey | f285a2d | 2008-10-09 14:12:12 -0500 | [diff] [blame] | 759 | struct strbuf sb = STRBUF_INIT; |
Daniel Barkalow | 2bda2cf | 2008-02-25 18:24:17 -0500 | [diff] [blame] | 760 | int i; |
Brandon Casey | 330db18 | 2009-05-18 18:44:39 -0500 | [diff] [blame] | 761 | const char *encoding = "UTF-8"; |
Daniel Barkalow | 39fe578 | 2008-02-28 12:14:13 -0500 | [diff] [blame] | 762 | struct diff_options opts; |
Junio C Hamano | 267123b | 2008-03-15 00:09:20 -0700 | [diff] [blame] | 763 | int need_8bit_cte = 0; |
Stephen Boyd | cd2ef59 | 2009-03-22 19:14:03 -0700 | [diff] [blame] | 764 | struct commit *commit = NULL; |
Jeff King | 6bf1394 | 2011-05-26 18:27:49 -0400 | [diff] [blame] | 765 | struct pretty_print_context pp = {0}; |
Daniel Barkalow | a5a27c7 | 2008-02-18 22:56:13 -0500 | [diff] [blame] | 766 | |
| 767 | if (rev->commit_format != CMIT_FMT_EMAIL) |
Ævar Arnfjörð Bjarmason | 5c5f1d7 | 2011-02-22 23:41:57 +0000 | [diff] [blame] | 768 | die(_("Cover letter needs email format")); |
Daniel Barkalow | a5a27c7 | 2008-02-18 22:56:13 -0500 | [diff] [blame] | 769 | |
Stephen Boyd | cd2ef59 | 2009-03-22 19:14:03 -0700 | [diff] [blame] | 770 | committer = git_committer_info(0); |
Stephen Boyd | 6df514a | 2009-03-22 19:14:02 -0700 | [diff] [blame] | 771 | |
Stephen Boyd | cd2ef59 | 2009-03-22 19:14:03 -0700 | [diff] [blame] | 772 | if (!numbered_files) { |
| 773 | /* |
| 774 | * We fake a commit for the cover letter so we get the filename |
| 775 | * desired. |
| 776 | */ |
| 777 | commit = xcalloc(1, sizeof(*commit)); |
| 778 | commit->buffer = xmalloc(400); |
| 779 | snprintf(commit->buffer, 400, |
| 780 | "tree 0000000000000000000000000000000000000000\n" |
| 781 | "parent %s\n" |
| 782 | "author %s\n" |
| 783 | "committer %s\n\n" |
| 784 | "cover letter\n", |
Stephen Boyd | 108dab2 | 2009-03-22 19:14:05 -0700 | [diff] [blame] | 785 | sha1_to_hex(head->object.sha1), committer, committer); |
Stephen Boyd | cd2ef59 | 2009-03-22 19:14:03 -0700 | [diff] [blame] | 786 | } |
| 787 | |
Carlos Martín Nieto | 250087f | 2011-04-12 17:35:38 +0200 | [diff] [blame] | 788 | if (!use_stdout && reopen_stdout(commit, rev, quiet)) |
Daniel Barkalow | a5a27c7 | 2008-02-18 22:56:13 -0500 | [diff] [blame] | 789 | return; |
| 790 | |
Stephen Boyd | cd2ef59 | 2009-03-22 19:14:03 -0700 | [diff] [blame] | 791 | if (commit) { |
Daniel Barkalow | a5a27c7 | 2008-02-18 22:56:13 -0500 | [diff] [blame] | 792 | |
Stephen Boyd | cd2ef59 | 2009-03-22 19:14:03 -0700 | [diff] [blame] | 793 | free(commit->buffer); |
| 794 | free(commit); |
| 795 | } |
Daniel Barkalow | a5a27c7 | 2008-02-18 22:56:13 -0500 | [diff] [blame] | 796 | |
Jeff King | 6bf1394 | 2011-05-26 18:27:49 -0400 | [diff] [blame] | 797 | log_write_email_headers(rev, head, &pp.subject, &pp.after_subject, |
Junio C Hamano | 267123b | 2008-03-15 00:09:20 -0700 | [diff] [blame] | 798 | &need_8bit_cte); |
Daniel Barkalow | a5a27c7 | 2008-02-18 22:56:13 -0500 | [diff] [blame] | 799 | |
Johannes Schindelin | 0a7f448 | 2009-08-10 18:22:22 +0200 | [diff] [blame] | 800 | for (i = 0; !need_8bit_cte && i < nr; i++) |
| 801 | if (has_non_ascii(list[i]->buffer)) |
| 802 | need_8bit_cte = 1; |
| 803 | |
Daniel Barkalow | a5a27c7 | 2008-02-18 22:56:13 -0500 | [diff] [blame] | 804 | msg = body; |
Jeff King | 6bf1394 | 2011-05-26 18:27:49 -0400 | [diff] [blame] | 805 | pp.fmt = CMIT_FMT_EMAIL; |
| 806 | pp.date_mode = DATE_RFC2822; |
| 807 | pp_user_info(&pp, NULL, &sb, committer, encoding); |
| 808 | pp_title_line(&pp, &msg, &sb, encoding, need_8bit_cte); |
| 809 | pp_remainder(&pp, &msg, &sb, 0); |
Daniel Barkalow | a5a27c7 | 2008-02-18 22:56:13 -0500 | [diff] [blame] | 810 | printf("%s\n", sb.buf); |
| 811 | |
| 812 | strbuf_release(&sb); |
| 813 | |
Daniel Barkalow | 2bda2cf | 2008-02-25 18:24:17 -0500 | [diff] [blame] | 814 | shortlog_init(&log); |
Johannes Schindelin | 859c4fb | 2008-03-02 15:53:39 +0000 | [diff] [blame] | 815 | log.wrap_lines = 1; |
| 816 | log.wrap = 72; |
| 817 | log.in1 = 2; |
| 818 | log.in2 = 4; |
Daniel Barkalow | 2bda2cf | 2008-02-25 18:24:17 -0500 | [diff] [blame] | 819 | for (i = 0; i < nr; i++) |
| 820 | shortlog_add_commit(&log, list[i]); |
| 821 | |
| 822 | shortlog_output(&log); |
| 823 | |
Daniel Barkalow | a5a27c7 | 2008-02-18 22:56:13 -0500 | [diff] [blame] | 824 | /* |
Daniel Barkalow | 2bda2cf | 2008-02-25 18:24:17 -0500 | [diff] [blame] | 825 | * We can only do diffstat with a unique reference point |
Daniel Barkalow | a5a27c7 | 2008-02-18 22:56:13 -0500 | [diff] [blame] | 826 | */ |
| 827 | if (!origin) |
| 828 | return; |
| 829 | |
Johannes Schindelin | 5d02294 | 2008-03-02 15:53:04 +0000 | [diff] [blame] | 830 | memcpy(&opts, &rev->diffopt, sizeof(opts)); |
| 831 | opts.output_format = DIFF_FORMAT_SUMMARY | DIFF_FORMAT_DIFFSTAT; |
Daniel Barkalow | a5a27c7 | 2008-02-18 22:56:13 -0500 | [diff] [blame] | 832 | |
Daniel Barkalow | 39fe578 | 2008-02-28 12:14:13 -0500 | [diff] [blame] | 833 | diff_setup_done(&opts); |
Daniel Barkalow | a5a27c7 | 2008-02-18 22:56:13 -0500 | [diff] [blame] | 834 | |
Daniel Barkalow | 39fe578 | 2008-02-28 12:14:13 -0500 | [diff] [blame] | 835 | diff_tree_sha1(origin->tree->object.sha1, |
| 836 | head->tree->object.sha1, |
| 837 | "", &opts); |
| 838 | diffcore_std(&opts); |
| 839 | diff_flush(&opts); |
| 840 | |
Daniel Barkalow | a5a27c7 | 2008-02-18 22:56:13 -0500 | [diff] [blame] | 841 | printf("\n"); |
Stephen Boyd | 6622d9c | 2010-06-15 22:59:25 -0700 | [diff] [blame] | 842 | print_signature(); |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 843 | } |
Junio C Hamano | 91efcf6 | 2006-04-21 13:19:58 -0700 | [diff] [blame] | 844 | |
Junio C Hamano | 8419d2e | 2007-09-13 22:30:45 -0700 | [diff] [blame] | 845 | static const char *clean_message_id(const char *msg_id) |
| 846 | { |
| 847 | char ch; |
| 848 | const char *a, *z, *m; |
Junio C Hamano | 8419d2e | 2007-09-13 22:30:45 -0700 | [diff] [blame] | 849 | |
| 850 | m = msg_id; |
| 851 | while ((ch = *m) && (isspace(ch) || (ch == '<'))) |
| 852 | m++; |
| 853 | a = m; |
| 854 | z = NULL; |
| 855 | while ((ch = *m)) { |
| 856 | if (!isspace(ch) && (ch != '>')) |
| 857 | z = m; |
| 858 | m++; |
| 859 | } |
| 860 | if (!z) |
Ævar Arnfjörð Bjarmason | 5c5f1d7 | 2011-02-22 23:41:57 +0000 | [diff] [blame] | 861 | die(_("insane in-reply-to: %s"), msg_id); |
Junio C Hamano | 8419d2e | 2007-09-13 22:30:45 -0700 | [diff] [blame] | 862 | if (++z == m) |
| 863 | return a; |
Pierre Habouzit | 182af83 | 2007-09-16 00:32:36 +0200 | [diff] [blame] | 864 | return xmemdupz(a, z - a); |
Junio C Hamano | 8419d2e | 2007-09-13 22:30:45 -0700 | [diff] [blame] | 865 | } |
| 866 | |
Junio C Hamano | 9800a75 | 2009-01-12 15:18:02 -0800 | [diff] [blame] | 867 | static const char *set_outdir(const char *prefix, const char *output_directory) |
| 868 | { |
| 869 | if (output_directory && is_absolute_path(output_directory)) |
| 870 | return output_directory; |
| 871 | |
| 872 | if (!prefix || !*prefix) { |
| 873 | if (output_directory) |
| 874 | return output_directory; |
| 875 | /* The user did not explicitly ask for "./" */ |
| 876 | outdir_offset = 2; |
| 877 | return "./"; |
| 878 | } |
| 879 | |
| 880 | outdir_offset = strlen(prefix); |
| 881 | if (!output_directory) |
| 882 | return prefix; |
| 883 | |
| 884 | return xstrdup(prefix_filename(prefix, outdir_offset, |
| 885 | output_directory)); |
| 886 | } |
| 887 | |
Stephen Boyd | fff02ee | 2009-05-16 02:24:46 -0700 | [diff] [blame] | 888 | static const char * const builtin_format_patch_usage[] = { |
| 889 | "git format-patch [options] [<since> | <revision range>]", |
| 890 | NULL |
| 891 | }; |
| 892 | |
| 893 | static int keep_subject = 0; |
| 894 | |
| 895 | static int keep_callback(const struct option *opt, const char *arg, int unset) |
| 896 | { |
| 897 | ((struct rev_info *)opt->value)->total = -1; |
| 898 | keep_subject = 1; |
| 899 | return 0; |
| 900 | } |
| 901 | |
| 902 | static int subject_prefix = 0; |
| 903 | |
| 904 | static int subject_prefix_callback(const struct option *opt, const char *arg, |
| 905 | int unset) |
| 906 | { |
| 907 | subject_prefix = 1; |
| 908 | ((struct rev_info *)opt->value)->subject_prefix = arg; |
| 909 | return 0; |
| 910 | } |
| 911 | |
Junio C Hamano | 1af4731 | 2009-05-31 16:17:31 -0700 | [diff] [blame] | 912 | static int numbered_cmdline_opt = 0; |
| 913 | |
Stephen Boyd | fff02ee | 2009-05-16 02:24:46 -0700 | [diff] [blame] | 914 | static int numbered_callback(const struct option *opt, const char *arg, |
| 915 | int unset) |
| 916 | { |
Junio C Hamano | 1af4731 | 2009-05-31 16:17:31 -0700 | [diff] [blame] | 917 | *(int *)opt->value = numbered_cmdline_opt = unset ? 0 : 1; |
Stephen Boyd | fff02ee | 2009-05-16 02:24:46 -0700 | [diff] [blame] | 918 | if (unset) |
| 919 | auto_number = 0; |
| 920 | return 0; |
| 921 | } |
| 922 | |
| 923 | static int no_numbered_callback(const struct option *opt, const char *arg, |
| 924 | int unset) |
| 925 | { |
| 926 | return numbered_callback(opt, arg, 1); |
| 927 | } |
| 928 | |
| 929 | static int output_directory_callback(const struct option *opt, const char *arg, |
| 930 | int unset) |
| 931 | { |
| 932 | const char **dir = (const char **)opt->value; |
| 933 | if (*dir) |
Ævar Arnfjörð Bjarmason | 5c5f1d7 | 2011-02-22 23:41:57 +0000 | [diff] [blame] | 934 | die(_("Two output directories?")); |
Stephen Boyd | fff02ee | 2009-05-16 02:24:46 -0700 | [diff] [blame] | 935 | *dir = arg; |
| 936 | return 0; |
| 937 | } |
| 938 | |
| 939 | static int thread_callback(const struct option *opt, const char *arg, int unset) |
| 940 | { |
| 941 | int *thread = (int *)opt->value; |
| 942 | if (unset) |
| 943 | *thread = 0; |
| 944 | else if (!arg || !strcmp(arg, "shallow")) |
| 945 | *thread = THREAD_SHALLOW; |
| 946 | else if (!strcmp(arg, "deep")) |
| 947 | *thread = THREAD_DEEP; |
| 948 | else |
| 949 | return 1; |
| 950 | return 0; |
| 951 | } |
| 952 | |
| 953 | static int attach_callback(const struct option *opt, const char *arg, int unset) |
| 954 | { |
| 955 | struct rev_info *rev = (struct rev_info *)opt->value; |
| 956 | if (unset) |
| 957 | rev->mime_boundary = NULL; |
| 958 | else if (arg) |
| 959 | rev->mime_boundary = arg; |
| 960 | else |
| 961 | rev->mime_boundary = git_version_string; |
| 962 | rev->no_inline = unset ? 0 : 1; |
| 963 | return 0; |
| 964 | } |
| 965 | |
| 966 | static int inline_callback(const struct option *opt, const char *arg, int unset) |
| 967 | { |
| 968 | struct rev_info *rev = (struct rev_info *)opt->value; |
| 969 | if (unset) |
| 970 | rev->mime_boundary = NULL; |
| 971 | else if (arg) |
| 972 | rev->mime_boundary = arg; |
| 973 | else |
| 974 | rev->mime_boundary = git_version_string; |
| 975 | rev->no_inline = 0; |
| 976 | return 0; |
| 977 | } |
| 978 | |
| 979 | static int header_callback(const struct option *opt, const char *arg, int unset) |
| 980 | { |
Stephen Boyd | c426003 | 2010-03-07 14:46:47 -0800 | [diff] [blame] | 981 | if (unset) { |
| 982 | string_list_clear(&extra_hdr, 0); |
| 983 | string_list_clear(&extra_to, 0); |
| 984 | string_list_clear(&extra_cc, 0); |
| 985 | } else { |
| 986 | add_header(arg); |
| 987 | } |
Stephen Boyd | fff02ee | 2009-05-16 02:24:46 -0700 | [diff] [blame] | 988 | return 0; |
| 989 | } |
| 990 | |
Steven Drake | ae6c098 | 2010-02-17 12:39:34 +1300 | [diff] [blame] | 991 | static int to_callback(const struct option *opt, const char *arg, int unset) |
| 992 | { |
Stephen Boyd | c426003 | 2010-03-07 14:46:47 -0800 | [diff] [blame] | 993 | if (unset) |
| 994 | string_list_clear(&extra_to, 0); |
| 995 | else |
Julian Phillips | 1d2f80f | 2010-06-26 00:41:38 +0100 | [diff] [blame] | 996 | string_list_append(&extra_to, arg); |
Stephen Boyd | fff02ee | 2009-05-16 02:24:46 -0700 | [diff] [blame] | 997 | return 0; |
| 998 | } |
| 999 | |
| 1000 | static int cc_callback(const struct option *opt, const char *arg, int unset) |
| 1001 | { |
Stephen Boyd | c426003 | 2010-03-07 14:46:47 -0800 | [diff] [blame] | 1002 | if (unset) |
| 1003 | string_list_clear(&extra_cc, 0); |
| 1004 | else |
Julian Phillips | 1d2f80f | 2010-06-26 00:41:38 +0100 | [diff] [blame] | 1005 | string_list_append(&extra_cc, arg); |
Stephen Boyd | fff02ee | 2009-05-16 02:24:46 -0700 | [diff] [blame] | 1006 | return 0; |
| 1007 | } |
| 1008 | |
Linus Torvalds | a633fca | 2006-07-28 22:44:25 -0700 | [diff] [blame] | 1009 | int cmd_format_patch(int argc, const char **argv, const char *prefix) |
Junio C Hamano | 91efcf6 | 2006-04-21 13:19:58 -0700 | [diff] [blame] | 1010 | { |
| 1011 | struct commit *commit; |
| 1012 | struct commit **list = NULL; |
| 1013 | struct rev_info rev; |
Junio C Hamano | 32962c9 | 2010-03-08 22:58:09 -0800 | [diff] [blame] | 1014 | struct setup_revision_opt s_r_opt; |
Stephen Boyd | fff02ee | 2009-05-16 02:24:46 -0700 | [diff] [blame] | 1015 | int nr = 0, total, i; |
Johannes Schindelin | 0377db7 | 2006-05-05 01:16:40 +0200 | [diff] [blame] | 1016 | int use_stdout = 0; |
Johannes Schindelin | fa0f02d | 2006-05-25 23:55:11 +0200 | [diff] [blame] | 1017 | int start_number = -1; |
Jon Loeliger | e6ff0f4 | 2007-06-05 15:06:53 -0500 | [diff] [blame] | 1018 | int numbered_files = 0; /* _just_ numbers */ |
Johannes Schindelin | 9c6efa3 | 2006-06-25 03:52:01 +0200 | [diff] [blame] | 1019 | int ignore_if_in_upstream = 0; |
Daniel Barkalow | a5a27c7 | 2008-02-18 22:56:13 -0500 | [diff] [blame] | 1020 | int cover_letter = 0; |
Daniel Barkalow | 2bda2cf | 2008-02-25 18:24:17 -0500 | [diff] [blame] | 1021 | int boundary_count = 0; |
Caio Marcelo de Oliveira Filho | 37c22a4 | 2008-05-09 19:55:43 -0300 | [diff] [blame] | 1022 | int no_binary_diff = 0; |
Daniel Barkalow | a5a27c7 | 2008-02-18 22:56:13 -0500 | [diff] [blame] | 1023 | struct commit *origin = NULL, *head = NULL; |
Junio C Hamano | 76af073 | 2006-07-14 22:47:53 -0700 | [diff] [blame] | 1024 | const char *in_reply_to = NULL; |
Junio C Hamano | 5d23e13 | 2007-04-09 17:01:27 -0700 | [diff] [blame] | 1025 | struct patch_ids ids; |
Junio C Hamano | cf2251b | 2006-05-31 15:11:49 -0700 | [diff] [blame] | 1026 | char *add_signoff = NULL; |
Brandon Casey | f285a2d | 2008-10-09 14:12:12 -0500 | [diff] [blame] | 1027 | struct strbuf buf = STRBUF_INIT; |
Jeff King | 1d46f2e | 2009-11-04 02:19:40 -0500 | [diff] [blame] | 1028 | int use_patch_format = 0; |
Carlos Martín Nieto | 250087f | 2011-04-12 17:35:38 +0200 | [diff] [blame] | 1029 | int quiet = 0; |
Stephen Boyd | fff02ee | 2009-05-16 02:24:46 -0700 | [diff] [blame] | 1030 | const struct option builtin_format_patch_options[] = { |
| 1031 | { OPTION_CALLBACK, 'n', "numbered", &numbered, NULL, |
| 1032 | "use [PATCH n/m] even with a single patch", |
| 1033 | PARSE_OPT_NOARG, numbered_callback }, |
| 1034 | { OPTION_CALLBACK, 'N', "no-numbered", &numbered, NULL, |
| 1035 | "use [PATCH] even with multiple patches", |
| 1036 | PARSE_OPT_NOARG, no_numbered_callback }, |
| 1037 | OPT_BOOLEAN('s', "signoff", &do_signoff, "add Signed-off-by:"), |
| 1038 | OPT_BOOLEAN(0, "stdout", &use_stdout, |
| 1039 | "print patches to standard out"), |
| 1040 | OPT_BOOLEAN(0, "cover-letter", &cover_letter, |
| 1041 | "generate a cover letter"), |
| 1042 | OPT_BOOLEAN(0, "numbered-files", &numbered_files, |
| 1043 | "use simple number sequence for output file names"), |
| 1044 | OPT_STRING(0, "suffix", &fmt_patch_suffix, "sfx", |
| 1045 | "use <sfx> instead of '.patch'"), |
| 1046 | OPT_INTEGER(0, "start-number", &start_number, |
| 1047 | "start numbering patches at <n> instead of 1"), |
| 1048 | { OPTION_CALLBACK, 0, "subject-prefix", &rev, "prefix", |
| 1049 | "Use [<prefix>] instead of [PATCH]", |
| 1050 | PARSE_OPT_NONEG, subject_prefix_callback }, |
| 1051 | { OPTION_CALLBACK, 'o', "output-directory", &output_directory, |
| 1052 | "dir", "store resulting files in <dir>", |
| 1053 | PARSE_OPT_NONEG, output_directory_callback }, |
| 1054 | { OPTION_CALLBACK, 'k', "keep-subject", &rev, NULL, |
| 1055 | "don't strip/add [PATCH]", |
| 1056 | PARSE_OPT_NOARG | PARSE_OPT_NONEG, keep_callback }, |
| 1057 | OPT_BOOLEAN(0, "no-binary", &no_binary_diff, |
| 1058 | "don't output binary diffs"), |
| 1059 | OPT_BOOLEAN(0, "ignore-if-in-upstream", &ignore_if_in_upstream, |
| 1060 | "don't include a patch matching a commit upstream"), |
Björn Gustavsson | 2cfa833 | 2009-11-07 10:58:55 +0100 | [diff] [blame] | 1061 | { OPTION_BOOLEAN, 'p', "no-stat", &use_patch_format, NULL, |
| 1062 | "show patch format instead of default (patch + stat)", |
| 1063 | PARSE_OPT_NONEG | PARSE_OPT_NOARG }, |
Stephen Boyd | fff02ee | 2009-05-16 02:24:46 -0700 | [diff] [blame] | 1064 | OPT_GROUP("Messaging"), |
| 1065 | { OPTION_CALLBACK, 0, "add-header", NULL, "header", |
Stephen Boyd | c426003 | 2010-03-07 14:46:47 -0800 | [diff] [blame] | 1066 | "add email header", 0, header_callback }, |
Steven Drake | ae6c098 | 2010-02-17 12:39:34 +1300 | [diff] [blame] | 1067 | { OPTION_CALLBACK, 0, "to", NULL, "email", "add To: header", |
Stephen Boyd | c426003 | 2010-03-07 14:46:47 -0800 | [diff] [blame] | 1068 | 0, to_callback }, |
Stephen Boyd | fff02ee | 2009-05-16 02:24:46 -0700 | [diff] [blame] | 1069 | { OPTION_CALLBACK, 0, "cc", NULL, "email", "add Cc: header", |
Stephen Boyd | c426003 | 2010-03-07 14:46:47 -0800 | [diff] [blame] | 1070 | 0, cc_callback }, |
Stephen Boyd | fff02ee | 2009-05-16 02:24:46 -0700 | [diff] [blame] | 1071 | OPT_STRING(0, "in-reply-to", &in_reply_to, "message-id", |
| 1072 | "make first mail a reply to <message-id>"), |
| 1073 | { OPTION_CALLBACK, 0, "attach", &rev, "boundary", |
| 1074 | "attach the patch", PARSE_OPT_OPTARG, |
| 1075 | attach_callback }, |
| 1076 | { OPTION_CALLBACK, 0, "inline", &rev, "boundary", |
| 1077 | "inline the patch", |
| 1078 | PARSE_OPT_OPTARG | PARSE_OPT_NONEG, |
| 1079 | inline_callback }, |
| 1080 | { OPTION_CALLBACK, 0, "thread", &thread, "style", |
| 1081 | "enable message threading, styles: shallow, deep", |
| 1082 | PARSE_OPT_OPTARG, thread_callback }, |
Stephen Boyd | 6622d9c | 2010-06-15 22:59:25 -0700 | [diff] [blame] | 1083 | OPT_STRING(0, "signature", &signature, "signature", |
| 1084 | "add a signature"), |
Carlos Martín Nieto | 250087f | 2011-04-12 17:35:38 +0200 | [diff] [blame] | 1085 | OPT_BOOLEAN(0, "quiet", &quiet, |
| 1086 | "don't print the patch filenames"), |
Stephen Boyd | fff02ee | 2009-05-16 02:24:46 -0700 | [diff] [blame] | 1087 | OPT_END() |
| 1088 | }; |
Junio C Hamano | 91efcf6 | 2006-04-21 13:19:58 -0700 | [diff] [blame] | 1089 | |
Stephen Boyd | ca9e0a1 | 2010-03-07 14:46:46 -0800 | [diff] [blame] | 1090 | extra_hdr.strdup_strings = 1; |
| 1091 | extra_to.strdup_strings = 1; |
| 1092 | extra_cc.strdup_strings = 1; |
Johannes Schindelin | ef90d6d | 2008-05-14 18:46:53 +0100 | [diff] [blame] | 1093 | git_config(git_format_config, NULL); |
Linus Torvalds | db6296a | 2006-07-28 21:21:48 -0700 | [diff] [blame] | 1094 | init_revisions(&rev, prefix); |
Junio C Hamano | 91efcf6 | 2006-04-21 13:19:58 -0700 | [diff] [blame] | 1095 | rev.commit_format = CMIT_FMT_EMAIL; |
| 1096 | rev.verbose_header = 1; |
| 1097 | rev.diff = 1; |
Michael J Gruber | ad5aeed | 2011-03-21 11:14:06 +0100 | [diff] [blame] | 1098 | rev.max_parents = 1; |
Pierre Habouzit | 8f67f8a | 2007-11-10 20:05:14 +0100 | [diff] [blame] | 1099 | DIFF_OPT_SET(&rev.diffopt, RECURSIVE); |
Adam Roben | dbd2144 | 2007-07-01 17:48:59 -0700 | [diff] [blame] | 1100 | rev.subject_prefix = fmt_patch_subject_prefix; |
Junio C Hamano | 32962c9 | 2010-03-08 22:58:09 -0800 | [diff] [blame] | 1101 | memset(&s_r_opt, 0, sizeof(s_r_opt)); |
| 1102 | s_r_opt.def = "HEAD"; |
Johannes Schindelin | 20ff068 | 2006-06-02 15:21:17 +0200 | [diff] [blame] | 1103 | |
Jeremy White | 0db5260 | 2009-02-12 09:51:55 -0600 | [diff] [blame] | 1104 | if (default_attach) { |
| 1105 | rev.mime_boundary = default_attach; |
| 1106 | rev.no_inline = 1; |
| 1107 | } |
| 1108 | |
Johannes Schindelin | 2448482 | 2006-05-05 03:33:32 +0200 | [diff] [blame] | 1109 | /* |
| 1110 | * Parse the arguments before setup_revisions(), or something |
Frank Lichtenheld | 2dc189a | 2007-05-14 16:44:51 +0200 | [diff] [blame] | 1111 | * like "git format-patch -o a123 HEAD^.." may fail; a123 is |
Johannes Schindelin | 2448482 | 2006-05-05 03:33:32 +0200 | [diff] [blame] | 1112 | * possibly a valid SHA1. |
| 1113 | */ |
Stephen Boyd | 3778292 | 2009-05-23 11:53:12 -0700 | [diff] [blame] | 1114 | argc = parse_options(argc, argv, prefix, builtin_format_patch_options, |
Stephen Boyd | fff02ee | 2009-05-16 02:24:46 -0700 | [diff] [blame] | 1115 | builtin_format_patch_usage, |
Felipe Contreras | 382da40 | 2009-11-26 21:11:59 +0200 | [diff] [blame] | 1116 | PARSE_OPT_KEEP_ARGV0 | PARSE_OPT_KEEP_UNKNOWN | |
| 1117 | PARSE_OPT_KEEP_DASHDASH); |
Johannes Schindelin | 2448482 | 2006-05-05 03:33:32 +0200 | [diff] [blame] | 1118 | |
Heiko Voigt | 1d1876e | 2009-04-01 19:51:54 +0200 | [diff] [blame] | 1119 | if (do_signoff) { |
| 1120 | const char *committer; |
| 1121 | const char *endpos; |
| 1122 | committer = git_committer_info(IDENT_ERROR_ON_NO_NAME); |
| 1123 | endpos = strchr(committer, '>'); |
| 1124 | if (!endpos) |
Ævar Arnfjörð Bjarmason | 5c5f1d7 | 2011-02-22 23:41:57 +0000 | [diff] [blame] | 1125 | die(_("bogus committer info %s"), committer); |
Heiko Voigt | 1d1876e | 2009-04-01 19:51:54 +0200 | [diff] [blame] | 1126 | add_signoff = xmemdupz(committer, endpos - committer + 1); |
| 1127 | } |
| 1128 | |
Stephen Boyd | ca9e0a1 | 2010-03-07 14:46:46 -0800 | [diff] [blame] | 1129 | for (i = 0; i < extra_hdr.nr; i++) { |
| 1130 | strbuf_addstr(&buf, extra_hdr.items[i].string); |
Daniel Barkalow | 3ee79d9 | 2008-02-19 02:40:33 -0500 | [diff] [blame] | 1131 | strbuf_addch(&buf, '\n'); |
| 1132 | } |
| 1133 | |
Stephen Boyd | ca9e0a1 | 2010-03-07 14:46:46 -0800 | [diff] [blame] | 1134 | if (extra_to.nr) |
Daniel Barkalow | 3ee79d9 | 2008-02-19 02:40:33 -0500 | [diff] [blame] | 1135 | strbuf_addstr(&buf, "To: "); |
Stephen Boyd | ca9e0a1 | 2010-03-07 14:46:46 -0800 | [diff] [blame] | 1136 | for (i = 0; i < extra_to.nr; i++) { |
Daniel Barkalow | 3ee79d9 | 2008-02-19 02:40:33 -0500 | [diff] [blame] | 1137 | if (i) |
| 1138 | strbuf_addstr(&buf, " "); |
Stephen Boyd | ca9e0a1 | 2010-03-07 14:46:46 -0800 | [diff] [blame] | 1139 | strbuf_addstr(&buf, extra_to.items[i].string); |
| 1140 | if (i + 1 < extra_to.nr) |
Daniel Barkalow | 3ee79d9 | 2008-02-19 02:40:33 -0500 | [diff] [blame] | 1141 | strbuf_addch(&buf, ','); |
| 1142 | strbuf_addch(&buf, '\n'); |
| 1143 | } |
| 1144 | |
Stephen Boyd | ca9e0a1 | 2010-03-07 14:46:46 -0800 | [diff] [blame] | 1145 | if (extra_cc.nr) |
Daniel Barkalow | 3ee79d9 | 2008-02-19 02:40:33 -0500 | [diff] [blame] | 1146 | strbuf_addstr(&buf, "Cc: "); |
Stephen Boyd | ca9e0a1 | 2010-03-07 14:46:46 -0800 | [diff] [blame] | 1147 | for (i = 0; i < extra_cc.nr; i++) { |
Daniel Barkalow | 3ee79d9 | 2008-02-19 02:40:33 -0500 | [diff] [blame] | 1148 | if (i) |
| 1149 | strbuf_addstr(&buf, " "); |
Stephen Boyd | ca9e0a1 | 2010-03-07 14:46:46 -0800 | [diff] [blame] | 1150 | strbuf_addstr(&buf, extra_cc.items[i].string); |
| 1151 | if (i + 1 < extra_cc.nr) |
Daniel Barkalow | 3ee79d9 | 2008-02-19 02:40:33 -0500 | [diff] [blame] | 1152 | strbuf_addch(&buf, ','); |
| 1153 | strbuf_addch(&buf, '\n'); |
| 1154 | } |
| 1155 | |
Linus Torvalds | 2af202b | 2009-06-18 10:28:43 -0700 | [diff] [blame] | 1156 | rev.extra_headers = strbuf_detach(&buf, NULL); |
Daniel Barkalow | 3ee79d9 | 2008-02-19 02:40:33 -0500 | [diff] [blame] | 1157 | |
Junio C Hamano | add5c8a | 2006-05-26 11:30:49 -0700 | [diff] [blame] | 1158 | if (start_number < 0) |
Johannes Schindelin | fa0f02d | 2006-05-25 23:55:11 +0200 | [diff] [blame] | 1159 | start_number = 1; |
Jim Meyering | ca6b91d | 2009-05-09 10:12:01 +0200 | [diff] [blame] | 1160 | |
| 1161 | /* |
| 1162 | * If numbered is set solely due to format.numbered in config, |
| 1163 | * and it would conflict with --keep-subject (-k) from the |
| 1164 | * command line, reset "numbered". |
| 1165 | */ |
| 1166 | if (numbered && keep_subject && !numbered_cmdline_opt) |
| 1167 | numbered = 0; |
| 1168 | |
Junio C Hamano | 63b398a | 2006-05-28 09:23:29 -0700 | [diff] [blame] | 1169 | if (numbered && keep_subject) |
Ævar Arnfjörð Bjarmason | 5c5f1d7 | 2011-02-22 23:41:57 +0000 | [diff] [blame] | 1170 | die (_("-n and -k are mutually exclusive.")); |
Robin H. Johnson | 2d9e4a4 | 2007-04-11 16:58:07 -0700 | [diff] [blame] | 1171 | if (keep_subject && subject_prefix) |
Ævar Arnfjörð Bjarmason | 5c5f1d7 | 2011-02-22 23:41:57 +0000 | [diff] [blame] | 1172 | die (_("--subject-prefix and -k are mutually exclusive.")); |
Jeff King | 9553d2b | 2011-05-26 18:28:17 -0400 | [diff] [blame] | 1173 | rev.preserve_subject = keep_subject; |
Johannes Schindelin | 8ac80a5 | 2006-05-05 04:31:29 +0200 | [diff] [blame] | 1174 | |
Junio C Hamano | 32962c9 | 2010-03-08 22:58:09 -0800 | [diff] [blame] | 1175 | argc = setup_revisions(argc, argv, &rev, &s_r_opt); |
Johannes Schindelin | 2448482 | 2006-05-05 03:33:32 +0200 | [diff] [blame] | 1176 | if (argc > 1) |
Ævar Arnfjörð Bjarmason | 5c5f1d7 | 2011-02-22 23:41:57 +0000 | [diff] [blame] | 1177 | die (_("unrecognized argument: %s"), argv[1]); |
Johannes Schindelin | 0377db7 | 2006-05-05 01:16:40 +0200 | [diff] [blame] | 1178 | |
Björn Gustavsson | 02bc5b0 | 2009-11-07 10:51:56 +0100 | [diff] [blame] | 1179 | if (rev.diffopt.output_format & DIFF_FORMAT_NAME) |
Ævar Arnfjörð Bjarmason | f338cb8 | 2011-02-22 23:41:58 +0000 | [diff] [blame] | 1180 | die(_("--name-only does not make sense")); |
Björn Gustavsson | 02bc5b0 | 2009-11-07 10:51:56 +0100 | [diff] [blame] | 1181 | if (rev.diffopt.output_format & DIFF_FORMAT_NAME_STATUS) |
Ævar Arnfjörð Bjarmason | f338cb8 | 2011-02-22 23:41:58 +0000 | [diff] [blame] | 1182 | die(_("--name-status does not make sense")); |
Björn Gustavsson | 02bc5b0 | 2009-11-07 10:51:56 +0100 | [diff] [blame] | 1183 | if (rev.diffopt.output_format & DIFF_FORMAT_CHECKDIFF) |
Ævar Arnfjörð Bjarmason | f338cb8 | 2011-02-22 23:41:58 +0000 | [diff] [blame] | 1184 | die(_("--check does not make sense")); |
Björn Gustavsson | 02bc5b0 | 2009-11-07 10:51:56 +0100 | [diff] [blame] | 1185 | |
| 1186 | if (!use_patch_format && |
| 1187 | (!rev.diffopt.output_format || |
| 1188 | rev.diffopt.output_format == DIFF_FORMAT_PATCH)) |
| 1189 | rev.diffopt.output_format = DIFF_FORMAT_DIFFSTAT | DIFF_FORMAT_SUMMARY; |
| 1190 | |
| 1191 | /* Always generate a patch */ |
| 1192 | rev.diffopt.output_format |= DIFF_FORMAT_PATCH; |
Timo Hirvonen | c9b5ef9 | 2006-06-24 20:24:14 +0300 | [diff] [blame] | 1193 | |
Caio Marcelo de Oliveira Filho | 37c22a4 | 2008-05-09 19:55:43 -0300 | [diff] [blame] | 1194 | if (!DIFF_OPT_TST(&rev.diffopt, TEXT) && !no_binary_diff) |
Pierre Habouzit | 8f67f8a | 2007-11-10 20:05:14 +0100 | [diff] [blame] | 1195 | DIFF_OPT_SET(&rev.diffopt, BINARY); |
Junio C Hamano | e47f306 | 2007-01-17 14:32:52 -0800 | [diff] [blame] | 1196 | |
Thomas Rast | 894a9d3 | 2010-03-12 18:04:26 +0100 | [diff] [blame] | 1197 | if (rev.show_notes) |
| 1198 | init_display_notes(&rev.notes_opt); |
| 1199 | |
Junio C Hamano | 9800a75 | 2009-01-12 15:18:02 -0800 | [diff] [blame] | 1200 | if (!use_stdout) |
| 1201 | output_directory = set_outdir(prefix, output_directory); |
Tay Ray Chuan | 38a94bb | 2010-11-23 11:16:30 +0800 | [diff] [blame] | 1202 | else |
| 1203 | setup_pager(); |
Matthias Lederhofer | 77e565d | 2006-09-28 21:55:35 +0200 | [diff] [blame] | 1204 | |
Junio C Hamano | efd0201 | 2006-06-06 08:46:23 -0700 | [diff] [blame] | 1205 | if (output_directory) { |
| 1206 | if (use_stdout) |
Ævar Arnfjörð Bjarmason | 5c5f1d7 | 2011-02-22 23:41:57 +0000 | [diff] [blame] | 1207 | die(_("standard output, or directory, which one?")); |
Junio C Hamano | efd0201 | 2006-06-06 08:46:23 -0700 | [diff] [blame] | 1208 | if (mkdir(output_directory, 0777) < 0 && errno != EEXIST) |
Ævar Arnfjörð Bjarmason | 5c5f1d7 | 2011-02-22 23:41:57 +0000 | [diff] [blame] | 1209 | die_errno(_("Could not create directory '%s'"), |
Thomas Rast | 0721c31 | 2009-06-27 17:58:47 +0200 | [diff] [blame] | 1210 | output_directory); |
Junio C Hamano | efd0201 | 2006-06-06 08:46:23 -0700 | [diff] [blame] | 1211 | } |
| 1212 | |
Linus Torvalds | 1f1e895 | 2006-06-19 17:42:35 -0700 | [diff] [blame] | 1213 | if (rev.pending.nr == 1) { |
Junio C Hamano | 8a1d076 | 2007-08-28 00:38:48 -0700 | [diff] [blame] | 1214 | if (rev.max_count < 0 && !rev.show_root_diff) { |
| 1215 | /* |
| 1216 | * This is traditional behaviour of "git format-patch |
| 1217 | * origin" that prepares what the origin side still |
| 1218 | * does not have. |
| 1219 | */ |
Junio C Hamano | 7c49628 | 2007-01-17 13:35:13 -0800 | [diff] [blame] | 1220 | rev.pending.objects[0].item->flags |= UNINTERESTING; |
Junio C Hamano | 3384a2d | 2007-12-11 10:09:04 -0800 | [diff] [blame] | 1221 | add_head_to_pending(&rev); |
Junio C Hamano | 7c49628 | 2007-01-17 13:35:13 -0800 | [diff] [blame] | 1222 | } |
Junio C Hamano | 8a1d076 | 2007-08-28 00:38:48 -0700 | [diff] [blame] | 1223 | /* |
| 1224 | * Otherwise, it is "format-patch -22 HEAD", and/or |
| 1225 | * "format-patch --root HEAD". The user wants |
| 1226 | * get_revision() to do the usual traversal. |
Junio C Hamano | 7c49628 | 2007-01-17 13:35:13 -0800 | [diff] [blame] | 1227 | */ |
Johannes Schindelin | e686eb9 | 2006-05-06 22:56:38 +0200 | [diff] [blame] | 1228 | } |
Junio C Hamano | 68c2ec7 | 2009-01-10 12:41:33 -0800 | [diff] [blame] | 1229 | |
| 1230 | /* |
| 1231 | * We cannot move this anywhere earlier because we do want to |
Junio C Hamano | 9517e6b | 2010-02-03 21:23:18 -0800 | [diff] [blame] | 1232 | * know if --root was given explicitly from the command line. |
Junio C Hamano | 68c2ec7 | 2009-01-10 12:41:33 -0800 | [diff] [blame] | 1233 | */ |
| 1234 | rev.show_root_diff = 1; |
| 1235 | |
Daniel Barkalow | a5a27c7 | 2008-02-18 22:56:13 -0500 | [diff] [blame] | 1236 | if (cover_letter) { |
| 1237 | /* remember the range */ |
Daniel Barkalow | a5a27c7 | 2008-02-18 22:56:13 -0500 | [diff] [blame] | 1238 | int i; |
| 1239 | for (i = 0; i < rev.pending.nr; i++) { |
| 1240 | struct object *o = rev.pending.objects[i].item; |
Daniel Barkalow | 2bda2cf | 2008-02-25 18:24:17 -0500 | [diff] [blame] | 1241 | if (!(o->flags & UNINTERESTING)) |
Daniel Barkalow | a5a27c7 | 2008-02-18 22:56:13 -0500 | [diff] [blame] | 1242 | head = (struct commit *)o; |
| 1243 | } |
Daniel Barkalow | a5a27c7 | 2008-02-18 22:56:13 -0500 | [diff] [blame] | 1244 | /* We can't generate a cover letter without any patches */ |
| 1245 | if (!head) |
| 1246 | return 0; |
| 1247 | } |
Johannes Schindelin | e686eb9 | 2006-05-06 22:56:38 +0200 | [diff] [blame] | 1248 | |
Kevin Ballard | 657ab61 | 2010-03-29 19:46:38 -0700 | [diff] [blame] | 1249 | if (ignore_if_in_upstream) { |
| 1250 | /* Don't say anything if head and upstream are the same. */ |
| 1251 | if (rev.pending.nr == 2) { |
| 1252 | struct object_array_entry *o = rev.pending.objects; |
| 1253 | if (hashcmp(o[0].item->sha1, o[1].item->sha1) == 0) |
| 1254 | return 0; |
| 1255 | } |
Junio C Hamano | 5d23e13 | 2007-04-09 17:01:27 -0700 | [diff] [blame] | 1256 | get_patch_ids(&rev, &ids, prefix); |
Kevin Ballard | 657ab61 | 2010-03-29 19:46:38 -0700 | [diff] [blame] | 1257 | } |
Johannes Schindelin | 9c6efa3 | 2006-06-25 03:52:01 +0200 | [diff] [blame] | 1258 | |
Johannes Schindelin | 81f3a18 | 2006-05-05 03:33:05 +0200 | [diff] [blame] | 1259 | if (!use_stdout) |
Jim Meyering | f578825 | 2007-06-27 16:28:53 +0200 | [diff] [blame] | 1260 | realstdout = xfdopen(xdup(1), "w"); |
Johannes Schindelin | 81f3a18 | 2006-05-05 03:33:05 +0200 | [diff] [blame] | 1261 | |
Martin Koegler | 3d51e1b | 2008-02-18 08:31:56 +0100 | [diff] [blame] | 1262 | if (prepare_revision_walk(&rev)) |
Ævar Arnfjörð Bjarmason | 5c5f1d7 | 2011-02-22 23:41:57 +0000 | [diff] [blame] | 1263 | die(_("revision walk setup failed")); |
Daniel Barkalow | 2bda2cf | 2008-02-25 18:24:17 -0500 | [diff] [blame] | 1264 | rev.boundary = 1; |
Junio C Hamano | 91efcf6 | 2006-04-21 13:19:58 -0700 | [diff] [blame] | 1265 | while ((commit = get_revision(&rev)) != NULL) { |
Daniel Barkalow | 2bda2cf | 2008-02-25 18:24:17 -0500 | [diff] [blame] | 1266 | if (commit->object.flags & BOUNDARY) { |
Daniel Barkalow | 2bda2cf | 2008-02-25 18:24:17 -0500 | [diff] [blame] | 1267 | boundary_count++; |
| 1268 | origin = (boundary_count == 1) ? commit : NULL; |
| 1269 | continue; |
| 1270 | } |
| 1271 | |
Johannes Schindelin | 9c6efa3 | 2006-06-25 03:52:01 +0200 | [diff] [blame] | 1272 | if (ignore_if_in_upstream && |
Junio C Hamano | 5d23e13 | 2007-04-09 17:01:27 -0700 | [diff] [blame] | 1273 | has_commit_patch_id(commit, &ids)) |
Johannes Schindelin | 9c6efa3 | 2006-06-25 03:52:01 +0200 | [diff] [blame] | 1274 | continue; |
| 1275 | |
Junio C Hamano | 91efcf6 | 2006-04-21 13:19:58 -0700 | [diff] [blame] | 1276 | nr++; |
Jonas Fonseca | 83572c1 | 2006-08-26 16:16:18 +0200 | [diff] [blame] | 1277 | list = xrealloc(list, nr * sizeof(list[0])); |
Junio C Hamano | 91efcf6 | 2006-04-21 13:19:58 -0700 | [diff] [blame] | 1278 | list[nr - 1] = commit; |
| 1279 | } |
Johannes Schindelin | 0377db7 | 2006-05-05 01:16:40 +0200 | [diff] [blame] | 1280 | total = nr; |
Brian Gernhardt | 49604a4 | 2007-11-03 23:38:24 -0400 | [diff] [blame] | 1281 | if (!keep_subject && auto_number && total > 1) |
| 1282 | numbered = 1; |
Johannes Schindelin | 596524b | 2006-05-05 04:30:52 +0200 | [diff] [blame] | 1283 | if (numbered) |
Johannes Schindelin | fa0f02d | 2006-05-25 23:55:11 +0200 | [diff] [blame] | 1284 | rev.total = total + start_number - 1; |
Thomas Rast | b079c50 | 2009-02-19 22:26:31 +0100 | [diff] [blame] | 1285 | if (in_reply_to || thread || cover_letter) |
| 1286 | rev.ref_message_ids = xcalloc(1, sizeof(struct string_list)); |
| 1287 | if (in_reply_to) { |
| 1288 | const char *msgid = clean_message_id(in_reply_to); |
Julian Phillips | 1d2f80f | 2010-06-26 00:41:38 +0100 | [diff] [blame] | 1289 | string_list_append(rev.ref_message_ids, msgid); |
Thomas Rast | b079c50 | 2009-02-19 22:26:31 +0100 | [diff] [blame] | 1290 | } |
Stephen Boyd | 108dab2 | 2009-03-22 19:14:05 -0700 | [diff] [blame] | 1291 | rev.numbered_files = numbered_files; |
| 1292 | rev.patch_suffix = fmt_patch_suffix; |
Daniel Barkalow | a5a27c7 | 2008-02-18 22:56:13 -0500 | [diff] [blame] | 1293 | if (cover_letter) { |
| 1294 | if (thread) |
| 1295 | gen_message_id(&rev, "cover"); |
| 1296 | make_cover_letter(&rev, use_stdout, numbered, numbered_files, |
Carlos Martín Nieto | 250087f | 2011-04-12 17:35:38 +0200 | [diff] [blame] | 1297 | origin, nr, list, head, quiet); |
Daniel Barkalow | a5a27c7 | 2008-02-18 22:56:13 -0500 | [diff] [blame] | 1298 | total++; |
| 1299 | start_number--; |
| 1300 | } |
| 1301 | rev.add_signoff = add_signoff; |
Junio C Hamano | 91efcf6 | 2006-04-21 13:19:58 -0700 | [diff] [blame] | 1302 | while (0 <= --nr) { |
| 1303 | int shown; |
| 1304 | commit = list[nr]; |
Junio C Hamano | add5c8a | 2006-05-26 11:30:49 -0700 | [diff] [blame] | 1305 | rev.nr = total - nr + (start_number - 1); |
Josh Triplett | d1566f7 | 2006-07-14 17:48:51 -0700 | [diff] [blame] | 1306 | /* Make the second and subsequent mails replies to the first */ |
Josh Triplett | cc35de8 | 2006-07-14 17:49:04 -0700 | [diff] [blame] | 1307 | if (thread) { |
Daniel Barkalow | a5a27c7 | 2008-02-18 22:56:13 -0500 | [diff] [blame] | 1308 | /* Have we already had a message ID? */ |
Daniel Barkalow | e1a3734 | 2008-02-18 22:56:06 -0500 | [diff] [blame] | 1309 | if (rev.message_id) { |
Daniel Barkalow | a5a27c7 | 2008-02-18 22:56:13 -0500 | [diff] [blame] | 1310 | /* |
Thomas Rast | 30984ed | 2009-02-19 22:26:33 +0100 | [diff] [blame] | 1311 | * For deep threading: make every mail |
| 1312 | * a reply to the previous one, no |
| 1313 | * matter what other options are set. |
| 1314 | * |
| 1315 | * For shallow threading: |
| 1316 | * |
Thomas Rast | 2175c10 | 2009-02-19 22:26:32 +0100 | [diff] [blame] | 1317 | * Without --cover-letter and |
| 1318 | * --in-reply-to, make every mail a |
| 1319 | * reply to the one before. |
| 1320 | * |
| 1321 | * With --in-reply-to but no |
| 1322 | * --cover-letter, make every mail a |
| 1323 | * reply to the <reply-to>. |
| 1324 | * |
| 1325 | * With --cover-letter, make every |
| 1326 | * mail but the cover letter a reply |
| 1327 | * to the cover letter. The cover |
| 1328 | * letter is a reply to the |
| 1329 | * --in-reply-to, if specified. |
Daniel Barkalow | a5a27c7 | 2008-02-18 22:56:13 -0500 | [diff] [blame] | 1330 | */ |
Thomas Rast | 30984ed | 2009-02-19 22:26:33 +0100 | [diff] [blame] | 1331 | if (thread == THREAD_SHALLOW |
| 1332 | && rev.ref_message_ids->nr > 0 |
Thomas Rast | 2175c10 | 2009-02-19 22:26:32 +0100 | [diff] [blame] | 1333 | && (!cover_letter || rev.nr > 1)) |
Daniel Barkalow | e1a3734 | 2008-02-18 22:56:06 -0500 | [diff] [blame] | 1334 | free(rev.message_id); |
| 1335 | else |
Julian Phillips | 1d2f80f | 2010-06-26 00:41:38 +0100 | [diff] [blame] | 1336 | string_list_append(rev.ref_message_ids, |
| 1337 | rev.message_id); |
Josh Triplett | cc35de8 | 2006-07-14 17:49:04 -0700 | [diff] [blame] | 1338 | } |
Daniel Barkalow | e1a3734 | 2008-02-18 22:56:06 -0500 | [diff] [blame] | 1339 | gen_message_id(&rev, sha1_to_hex(commit->object.sha1)); |
Josh Triplett | d1566f7 | 2006-07-14 17:48:51 -0700 | [diff] [blame] | 1340 | } |
Stephen Boyd | 6df514a | 2009-03-22 19:14:02 -0700 | [diff] [blame] | 1341 | |
Stephen Boyd | cd2ef59 | 2009-03-22 19:14:03 -0700 | [diff] [blame] | 1342 | if (!use_stdout && reopen_stdout(numbered_files ? NULL : commit, |
Carlos Martín Nieto | 250087f | 2011-04-12 17:35:38 +0200 | [diff] [blame] | 1343 | &rev, quiet)) |
Ævar Arnfjörð Bjarmason | 5c5f1d7 | 2011-02-22 23:41:57 +0000 | [diff] [blame] | 1344 | die(_("Failed to create output files")); |
Junio C Hamano | 91efcf6 | 2006-04-21 13:19:58 -0700 | [diff] [blame] | 1345 | shown = log_tree_commit(&rev, commit); |
| 1346 | free(commit->buffer); |
| 1347 | commit->buffer = NULL; |
Junio C Hamano | add5c8a | 2006-05-26 11:30:49 -0700 | [diff] [blame] | 1348 | |
| 1349 | /* We put one extra blank line between formatted |
| 1350 | * patches and this flag is used by log-tree code |
| 1351 | * to see if it needs to emit a LF before showing |
| 1352 | * the log; when using one file per patch, we do |
| 1353 | * not want the extra blank line. |
| 1354 | */ |
| 1355 | if (!use_stdout) |
| 1356 | rev.shown_one = 0; |
Johannes Schindelin | 698ce6f | 2006-05-20 15:40:29 +0200 | [diff] [blame] | 1357 | if (shown) { |
| 1358 | if (rev.mime_boundary) |
| 1359 | printf("\n--%s%s--\n\n\n", |
| 1360 | mime_boundary_leader, |
| 1361 | rev.mime_boundary); |
| 1362 | else |
Stephen Boyd | 6622d9c | 2010-06-15 22:59:25 -0700 | [diff] [blame] | 1363 | print_signature(); |
Johannes Schindelin | 698ce6f | 2006-05-20 15:40:29 +0200 | [diff] [blame] | 1364 | } |
Johannes Schindelin | 0377db7 | 2006-05-05 01:16:40 +0200 | [diff] [blame] | 1365 | if (!use_stdout) |
| 1366 | fclose(stdout); |
Junio C Hamano | 91efcf6 | 2006-04-21 13:19:58 -0700 | [diff] [blame] | 1367 | } |
| 1368 | free(list); |
Stephen Boyd | ca9e0a1 | 2010-03-07 14:46:46 -0800 | [diff] [blame] | 1369 | string_list_clear(&extra_to, 0); |
| 1370 | string_list_clear(&extra_cc, 0); |
| 1371 | string_list_clear(&extra_hdr, 0); |
Junio C Hamano | 5d23e13 | 2007-04-09 17:01:27 -0700 | [diff] [blame] | 1372 | if (ignore_if_in_upstream) |
| 1373 | free_patch_ids(&ids); |
Junio C Hamano | 91efcf6 | 2006-04-21 13:19:58 -0700 | [diff] [blame] | 1374 | return 0; |
| 1375 | } |
| 1376 | |
Rene Scharfe | e827633 | 2006-10-24 01:01:57 +0200 | [diff] [blame] | 1377 | static int add_pending_commit(const char *arg, struct rev_info *revs, int flags) |
| 1378 | { |
| 1379 | unsigned char sha1[20]; |
| 1380 | if (get_sha1(arg, sha1) == 0) { |
| 1381 | struct commit *commit = lookup_commit_reference(sha1); |
| 1382 | if (commit) { |
| 1383 | commit->object.flags |= flags; |
| 1384 | add_pending_object(revs, &commit->object, arg); |
| 1385 | return 0; |
| 1386 | } |
| 1387 | } |
| 1388 | return -1; |
| 1389 | } |
| 1390 | |
Erik Faye-Lund | 28a5317 | 2010-03-20 19:55:27 +0100 | [diff] [blame] | 1391 | static const char * const cherry_usage[] = { |
| 1392 | "git cherry [-v] [<upstream> [<head> [<limit>]]]", |
| 1393 | NULL |
| 1394 | }; |
| 1395 | |
Jonathan Nieder | a3a32e7 | 2011-03-16 02:12:48 -0500 | [diff] [blame] | 1396 | static void print_commit(char sign, struct commit *commit, int verbose, |
| 1397 | int abbrev) |
| 1398 | { |
| 1399 | if (!verbose) { |
| 1400 | printf("%c %s\n", sign, |
| 1401 | find_unique_abbrev(commit->object.sha1, abbrev)); |
| 1402 | } else { |
| 1403 | struct strbuf buf = STRBUF_INIT; |
Junio C Hamano | f67d2e8 | 2011-05-31 12:19:11 -0700 | [diff] [blame] | 1404 | pp_commit_easy(CMIT_FMT_ONELINE, commit, &buf); |
Jonathan Nieder | a3a32e7 | 2011-03-16 02:12:48 -0500 | [diff] [blame] | 1405 | printf("%c %s %s\n", sign, |
| 1406 | find_unique_abbrev(commit->object.sha1, abbrev), |
| 1407 | buf.buf); |
| 1408 | strbuf_release(&buf); |
| 1409 | } |
| 1410 | } |
| 1411 | |
Rene Scharfe | e827633 | 2006-10-24 01:01:57 +0200 | [diff] [blame] | 1412 | int cmd_cherry(int argc, const char **argv, const char *prefix) |
| 1413 | { |
| 1414 | struct rev_info revs; |
Junio C Hamano | 5d23e13 | 2007-04-09 17:01:27 -0700 | [diff] [blame] | 1415 | struct patch_ids ids; |
Rene Scharfe | e827633 | 2006-10-24 01:01:57 +0200 | [diff] [blame] | 1416 | struct commit *commit; |
| 1417 | struct commit_list *list = NULL; |
Markus Heidelberg | f296802 | 2008-12-29 18:45:20 +0100 | [diff] [blame] | 1418 | struct branch *current_branch; |
Rene Scharfe | e827633 | 2006-10-24 01:01:57 +0200 | [diff] [blame] | 1419 | const char *upstream; |
| 1420 | const char *head = "HEAD"; |
| 1421 | const char *limit = NULL; |
Erik Faye-Lund | 28a5317 | 2010-03-20 19:55:27 +0100 | [diff] [blame] | 1422 | int verbose = 0, abbrev = 0; |
Rene Scharfe | e827633 | 2006-10-24 01:01:57 +0200 | [diff] [blame] | 1423 | |
Erik Faye-Lund | 28a5317 | 2010-03-20 19:55:27 +0100 | [diff] [blame] | 1424 | struct option options[] = { |
| 1425 | OPT__ABBREV(&abbrev), |
René Scharfe | fd03881 | 2010-11-08 18:56:39 +0100 | [diff] [blame] | 1426 | OPT__VERBOSE(&verbose, "be verbose"), |
Erik Faye-Lund | 28a5317 | 2010-03-20 19:55:27 +0100 | [diff] [blame] | 1427 | OPT_END() |
| 1428 | }; |
Rene Scharfe | e827633 | 2006-10-24 01:01:57 +0200 | [diff] [blame] | 1429 | |
Erik Faye-Lund | 28a5317 | 2010-03-20 19:55:27 +0100 | [diff] [blame] | 1430 | argc = parse_options(argc, argv, prefix, options, cherry_usage, 0); |
Jonathan Nieder | fef3427 | 2009-11-09 09:04:43 -0600 | [diff] [blame] | 1431 | |
Rene Scharfe | e827633 | 2006-10-24 01:01:57 +0200 | [diff] [blame] | 1432 | switch (argc) { |
Rene Scharfe | e827633 | 2006-10-24 01:01:57 +0200 | [diff] [blame] | 1433 | case 3: |
Erik Faye-Lund | 28a5317 | 2010-03-20 19:55:27 +0100 | [diff] [blame] | 1434 | limit = argv[2]; |
Rene Scharfe | e827633 | 2006-10-24 01:01:57 +0200 | [diff] [blame] | 1435 | /* FALLTHROUGH */ |
| 1436 | case 2: |
Erik Faye-Lund | 28a5317 | 2010-03-20 19:55:27 +0100 | [diff] [blame] | 1437 | head = argv[1]; |
| 1438 | /* FALLTHROUGH */ |
| 1439 | case 1: |
| 1440 | upstream = argv[0]; |
Rene Scharfe | e827633 | 2006-10-24 01:01:57 +0200 | [diff] [blame] | 1441 | break; |
| 1442 | default: |
Markus Heidelberg | f296802 | 2008-12-29 18:45:20 +0100 | [diff] [blame] | 1443 | current_branch = branch_get(NULL); |
| 1444 | if (!current_branch || !current_branch->merge |
| 1445 | || !current_branch->merge[0] |
| 1446 | || !current_branch->merge[0]->dst) { |
Ævar Arnfjörð Bjarmason | 5c5f1d7 | 2011-02-22 23:41:57 +0000 | [diff] [blame] | 1447 | fprintf(stderr, _("Could not find a tracked" |
Markus Heidelberg | f296802 | 2008-12-29 18:45:20 +0100 | [diff] [blame] | 1448 | " remote branch, please" |
Ævar Arnfjörð Bjarmason | 5c5f1d7 | 2011-02-22 23:41:57 +0000 | [diff] [blame] | 1449 | " specify <upstream> manually.\n")); |
Erik Faye-Lund | 28a5317 | 2010-03-20 19:55:27 +0100 | [diff] [blame] | 1450 | usage_with_options(cherry_usage, options); |
Markus Heidelberg | f296802 | 2008-12-29 18:45:20 +0100 | [diff] [blame] | 1451 | } |
| 1452 | |
| 1453 | upstream = current_branch->merge[0]->dst; |
Rene Scharfe | e827633 | 2006-10-24 01:01:57 +0200 | [diff] [blame] | 1454 | } |
| 1455 | |
| 1456 | init_revisions(&revs, prefix); |
| 1457 | revs.diff = 1; |
| 1458 | revs.combine_merges = 0; |
| 1459 | revs.ignore_merges = 1; |
Pierre Habouzit | 8f67f8a | 2007-11-10 20:05:14 +0100 | [diff] [blame] | 1460 | DIFF_OPT_SET(&revs.diffopt, RECURSIVE); |
Rene Scharfe | e827633 | 2006-10-24 01:01:57 +0200 | [diff] [blame] | 1461 | |
| 1462 | if (add_pending_commit(head, &revs, 0)) |
Ævar Arnfjörð Bjarmason | 5c5f1d7 | 2011-02-22 23:41:57 +0000 | [diff] [blame] | 1463 | die(_("Unknown commit %s"), head); |
Rene Scharfe | e827633 | 2006-10-24 01:01:57 +0200 | [diff] [blame] | 1464 | if (add_pending_commit(upstream, &revs, UNINTERESTING)) |
Ævar Arnfjörð Bjarmason | 5c5f1d7 | 2011-02-22 23:41:57 +0000 | [diff] [blame] | 1465 | die(_("Unknown commit %s"), upstream); |
Rene Scharfe | e827633 | 2006-10-24 01:01:57 +0200 | [diff] [blame] | 1466 | |
| 1467 | /* Don't say anything if head and upstream are the same. */ |
| 1468 | if (revs.pending.nr == 2) { |
| 1469 | struct object_array_entry *o = revs.pending.objects; |
| 1470 | if (hashcmp(o[0].item->sha1, o[1].item->sha1) == 0) |
| 1471 | return 0; |
| 1472 | } |
| 1473 | |
Junio C Hamano | 5d23e13 | 2007-04-09 17:01:27 -0700 | [diff] [blame] | 1474 | get_patch_ids(&revs, &ids, prefix); |
Rene Scharfe | e827633 | 2006-10-24 01:01:57 +0200 | [diff] [blame] | 1475 | |
| 1476 | if (limit && add_pending_commit(limit, &revs, UNINTERESTING)) |
Ævar Arnfjörð Bjarmason | 5c5f1d7 | 2011-02-22 23:41:57 +0000 | [diff] [blame] | 1477 | die(_("Unknown commit %s"), limit); |
Rene Scharfe | e827633 | 2006-10-24 01:01:57 +0200 | [diff] [blame] | 1478 | |
| 1479 | /* reverse the list of commits */ |
Martin Koegler | 3d51e1b | 2008-02-18 08:31:56 +0100 | [diff] [blame] | 1480 | if (prepare_revision_walk(&revs)) |
Ævar Arnfjörð Bjarmason | 5c5f1d7 | 2011-02-22 23:41:57 +0000 | [diff] [blame] | 1481 | die(_("revision walk setup failed")); |
Rene Scharfe | e827633 | 2006-10-24 01:01:57 +0200 | [diff] [blame] | 1482 | while ((commit = get_revision(&revs)) != NULL) { |
| 1483 | /* ignore merges */ |
| 1484 | if (commit->parents && commit->parents->next) |
| 1485 | continue; |
| 1486 | |
| 1487 | commit_list_insert(commit, &list); |
| 1488 | } |
| 1489 | |
| 1490 | while (list) { |
Rene Scharfe | e827633 | 2006-10-24 01:01:57 +0200 | [diff] [blame] | 1491 | char sign = '+'; |
| 1492 | |
| 1493 | commit = list->item; |
Junio C Hamano | 5d23e13 | 2007-04-09 17:01:27 -0700 | [diff] [blame] | 1494 | if (has_commit_patch_id(commit, &ids)) |
Rene Scharfe | e827633 | 2006-10-24 01:01:57 +0200 | [diff] [blame] | 1495 | sign = '-'; |
Jonathan Nieder | a3a32e7 | 2011-03-16 02:12:48 -0500 | [diff] [blame] | 1496 | print_commit(sign, commit, verbose, abbrev); |
Rene Scharfe | e827633 | 2006-10-24 01:01:57 +0200 | [diff] [blame] | 1497 | list = list->next; |
| 1498 | } |
| 1499 | |
Junio C Hamano | 5d23e13 | 2007-04-09 17:01:27 -0700 | [diff] [blame] | 1500 | free_patch_ids(&ids); |
Rene Scharfe | e827633 | 2006-10-24 01:01:57 +0200 | [diff] [blame] | 1501 | return 0; |
| 1502 | } |