On Sun, Jul 18, 2010 at 15:33, Thomas Rast <trast@xxxxxxxxxxxxxxx> wrote: > A merge that does not have the 'into <branch>' bit is a merge to > master: > > static void do_fmt_merge_msg_title(struct strbuf *out, > const char *current_branch) { > [...] > if (!strcmp("master", current_branch)) Is there anything in Git that records what the canonical branch is? E.g. perl uses "blead", and gets these "into blead" merge commits every time it merges into the main branch. The HEAD can move, so that can't be checked. (not that this is an actual problem) > strbuf_addch(out, '\n'); > else > strbuf_addf(out, " into %s\n", current_branch); > } -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html