From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Mikael Magnusson" Subject: Re: Feature request: git-log should optionally include tags Date: Sun, 26 Oct 2008 13:47:44 +0100 Message-ID: <237967ef0810260547o4e2143e0jc9403da7b1f4d85a@mail.gmail.com> References: <20081026121326.GA3399@codelibre.net> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: git@vger.kernel.org To: "Roger Leigh" X-From: git-owner@vger.kernel.org Sun Oct 26 13:49:15 2008 connect(): Connection refused Return-path: Envelope-to: gcvg-git-2@gmane.org Received: from vger.kernel.org ([209.132.176.167]) by lo.gmane.org with esmtp (Exim 4.50) id 1Ku53Q-0000mm-9E for gcvg-git-2@gmane.org; Sun, 26 Oct 2008 13:49:12 +0100 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751856AbYJZMrr (ORCPT ); Sun, 26 Oct 2008 08:47:47 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751727AbYJZMrr (ORCPT ); Sun, 26 Oct 2008 08:47:47 -0400 Received: from nf-out-0910.google.com ([64.233.182.189]:40011 "EHLO nf-out-0910.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751574AbYJZMrq (ORCPT ); Sun, 26 Oct 2008 08:47:46 -0400 Received: by nf-out-0910.google.com with SMTP id d3so521047nfc.21 for ; Sun, 26 Oct 2008 05:47:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=bHlnvz5jH7MEM0aRAgfFO+dXCccbOT0Y/3naSQ96Pwg=; b=jPUsGRPTv5c8LNEJSHrH35VVmwesvkgQYA3nvYXQdJM3aIFw0gSbwcceurpBLEuv45 UYG4CTi7LetIl/Tin79Lmdoml1c1zYmVQtsLkqduTR2W2e2Z8axBQmBIHv0KJ2AyUeAG erO0o84Suwtl89gXcw7aTL6k63jdCHUUrcA/s= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=NwSHm6f8Rn2TlzcN9XjFqZ9vvx//xGgI/B+TDeycBVekYI73ndUoqAfE6SKAMfIjec cFEJTEhFHMPt4N9Up949i2xtsbVWsEnTza0GILbBNdqg3Vimzffg5A1RG40xWjghdgX0 Nqtv6J8Wimwzf+NQEK4y1sJMG3xo9HYhb1CY0= Received: by 10.210.131.6 with SMTP id e6mr5083680ebd.77.1225025264639; Sun, 26 Oct 2008 05:47:44 -0700 (PDT) Received: by 10.210.73.14 with HTTP; Sun, 26 Oct 2008 05:47:44 -0700 (PDT) In-Reply-To: <20081026121326.GA3399@codelibre.net> Content-Disposition: inline Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: 2008/10/26 Roger Leigh : > A feature I would very much like to have in git is to have tag > information included in the log generated by git-log. This would > make it easy to see where the tags are in the history. The use > case for us would be to have release tags displayed so that it's > possible to identify which revisions constitute release points, > which is useful for e.g. users to identify points for bisection. > > I can do it now using sed to substitute in the contents of > .git/refs/tags/*, but having the functionality in git-log directly > would be most useful. git log --decorate -- Mikael Magnusson