From patchwork Sat Nov 5 03:55:42 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jeff King X-Patchwork-Id: 123817 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 85946B7182 for ; Sat, 5 Nov 2011 14:55:47 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753550Ab1KEDzq (ORCPT ); Fri, 4 Nov 2011 23:55:46 -0400 Received: from 99-108-226-0.lightspeed.iplsin.sbcglobal.net ([99.108.226.0]:33855 "EHLO peff.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753492Ab1KEDzp (ORCPT ); Fri, 4 Nov 2011 23:55:45 -0400 Received: (qmail 7441 invoked by uid 107); 5 Nov 2011 03:55:44 -0000 Received: from sigill.intra.peff.net (HELO sigill.intra.peff.net) (10.0.0.7) (smtp-auth username relayok, mechanism cram-md5) by peff.net (qpsmtpd/0.84) with ESMTPA; Fri, 04 Nov 2011 23:55:44 -0400 Received: by sigill.intra.peff.net (sSMTP sendmail emulation); Fri, 04 Nov 2011 23:55:42 -0400 Date: Fri, 4 Nov 2011 23:55:42 -0400 From: Jeff King To: Linus Torvalds Cc: Junio C Hamano , git@vger.kernel.org, Shawn Pearce , James Bottomley , Jeff Garzik , Andrew Morton , linux-ide@vger.kernel.org, LKML Subject: Re: [git patches] libata updates, GPG signed (but see admin notes) Message-ID: <20111105035542.GA1974@sigill.intra.peff.net> References: <7vk47jld5s.fsf@alter.siamese.dyndns.org> <7vlirvbq47.fsf@alter.siamese.dyndns.org> <7v39e3bn1n.fsf@alter.siamese.dyndns.org> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: Sender: linux-ide-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ide@vger.kernel.org On Fri, Nov 04, 2011 at 04:10:59PM -0700, Linus Torvalds wrote: > I'm pretty sure people have already done "git merge v3.1" kind of > things using local tags (where no peeling of FETCH_HEAD has been > done). See > > git log --merges --grep 'Merge.*v[23]\.[0-9]' > > for a ton of examples of this (and there's something odd going on: we > have "Merge commit .." and "Merge tag ..", and I suspect the latter is > people editing it to be correct by hand, but I dunno). It looks like fmt-merge-msg looks in FETCH_HEAD to see if each line is marked as "branch" or "tag". So I get "Merge tag ..." with: git pull . tag v1.0 but I get "Merge commit ..." with: git merge v1.0 When "git merge" is run, it actually creates a fake FETCH_HEAD in memory and feeds it to fmt-merge-msg. But that process doesn't seem to bother looking at tags. I think we just need this: --- where the result of merge_name is just fed to fmt-merge-msg eventually. -Peff -- To unsubscribe from this list: send the line "unsubscribe linux-ide" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/builtin/merge.c b/builtin/merge.c index dffd5ec..6a44b6d 100644 --- a/builtin/merge.c +++ b/builtin/merge.c @@ -439,10 +439,15 @@ static void merge_name(const char *remote, struct strbuf *msg) if (!prefixcmp(found_ref, "refs/heads/")) { strbuf_addf(msg, "%s\t\tbranch '%s' of .\n", sha1_to_hex(branch_head), remote); goto cleanup; } + if (!prefixcmp(found_ref, "refs/tags/")) { + strbuf_addf(msg, "%s\t\ttag '%s' of .\n", + sha1_to_hex(branch_head), remote); + goto cleanup; + } if (!prefixcmp(found_ref, "refs/remotes/")) { strbuf_addf(msg, "%s\t\tremote-tracking branch '%s' of .\n", sha1_to_hex(branch_head), remote); goto cleanup; }