From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/77260 Path: news.gmane.org!not-for-mail From: David Engster Newsgroups: gmane.emacs.gnus.general Subject: Re: commit email subject lines Date: Thu, 24 Feb 2011 09:46:14 +0100 Message-ID: References: <877hcq28xp.fsf@topper.koldfront.dk> <87aahmq0u1.fsf@lifelogs.com> <87k4gq49gr.fsf@gnus.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1298537247 3317 80.91.229.12 (24 Feb 2011 08:47:27 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 24 Feb 2011 08:47:27 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M25588@lists.math.uh.edu Thu Feb 24 09:47:18 2011 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1PsWqz-0006Ga-FY for ding-account@gmane.org; Thu, 24 Feb 2011 09:47:17 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1PsWqB-0001If-0w; Thu, 24 Feb 2011 02:46:27 -0600 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1PsWq9-0001IJ-0R for ding@lists.math.uh.edu; Thu, 24 Feb 2011 02:46:25 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtp (Exim 4.72) (envelope-from ) id 1PsWq7-000699-IG for ding@lists.math.uh.edu; Thu, 24 Feb 2011 02:46:24 -0600 Original-Received: from v3-1008.vxen.de ([79.140.41.8]) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1PsWq5-00056M-Pp for ding@gnus.org; Thu, 24 Feb 2011 09:46:21 +0100 Original-Received: from [134.76.4.230] (helo=imac.local) by v3-1008.vxen.de with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.69) (envelope-from ) id 1PsWq4-000127-QH for ding@gnus.org; Thu, 24 Feb 2011 09:46:20 +0100 In-Reply-To: <87k4gq49gr.fsf@gnus.org> (Lars Ingebrigtsen's message of "Wed, 23 Feb 2011 15:28:20 -0800") User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/24.0.50 (darwin) Mail-Copies-To: never Mail-Followup-To: ding@gnus.org X-Spam-Score: -1.9 (-) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:77260 Archived-At: Lars Ingebrigtsen writes: > Ted Zlatanov writes: > >> It started with the tags. Lars, did you change post-receive? > > Nope. Haven't changed anything. This happens because post-receive uses the output from git-describe by default: describe=$(git describe $rev 2>/dev/null) if [ -z "$describe" ]; then describe=$( (git log --format="%s" $oldrev...$newrev | perl -e'@p = <>; chomp @p; print "=", scalar @p, "= ", join(" ; ", @p)') 2>/dev/null) fi I guess just using the git-log output should make things work again. I don't understand the need for git-describe here anyway. -David