From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: =?ISO-8859-1?Q?R=FCdiger?= Sonderfeld Newsgroups: gmane.emacs.devel Subject: Re: Git transition checklist Date: Thu, 09 Jan 2014 02:36:33 +0100 Message-ID: <39695411.H4tnuGQ8y0@descartes> References: <20140108135200.8ECF9380834@snark.thyrsus.com> <20140108200216.GB5374@thyrsus.com> <83vbxudy53.fsf@gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1389231418 24462 80.91.229.3 (9 Jan 2014 01:36:58 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 9 Jan 2014 01:36:58 +0000 (UTC) Cc: esr@thyrsus.com To: emacs-devel@gnu.org, Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Jan 09 02:37:04 2014 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1W14YR-0006do-W6 for ged-emacs-devel@m.gmane.org; Thu, 09 Jan 2014 02:37:04 +0100 Original-Received: from localhost ([::1]:49740 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W14YR-0002iD-DD for ged-emacs-devel@m.gmane.org; Wed, 08 Jan 2014 20:37:03 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:57676) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W14YI-0002hD-Tv for emacs-devel@gnu.org; Wed, 08 Jan 2014 20:37:00 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W14YD-0004Wy-7i for emacs-devel@gnu.org; Wed, 08 Jan 2014 20:36:54 -0500 Original-Received: from ptmx.org ([178.63.28.110]:52971) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W14Y7-0004WO-D5; Wed, 08 Jan 2014 20:36:43 -0500 Original-Received: from localhost (localhost [127.0.0.1]) by ptmx.org (Postfix) with ESMTP id B65E524CD3; Thu, 9 Jan 2014 02:36:42 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at ptmx.org Original-Received: from ptmx.org ([127.0.0.1]) by localhost (ptmx.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id F6p5EWCtM96h; Thu, 9 Jan 2014 02:36:41 +0100 (CET) Original-Received: from descartes.localnet (chello080108246092.7.14.vie.surfer.at [80.108.246.92]) by ptmx.org (Postfix) with ESMTPSA id 4E08F24B8F; Thu, 9 Jan 2014 02:36:41 +0100 (CET) User-Agent: KMail/4.11.3 (Linux/3.11.0-14-generic; KDE/4.11.3; x86_64; ; ) In-Reply-To: <83vbxudy53.fsf@gnu.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 178.63.28.110 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:167843 Archived-At: On Wednesday 08 January 2014 22:19:52 Eli Zaretskii wrote: > > Date: Wed, 8 Jan 2014 15:02:16 -0500 > > From: "Eric S. Raymond" > > Cc: emacs-devel@gnu.org > >=20 > > > What is the equivalent of bzr commit --fixes? > >=20 > > There isn't one. If you want to associate a bug with a commit you'= ll > > have to do it manually in the commit comment. >=20 > It would be nice to have something similar to --fixes, so that the bu= g > report is mentioned in the commit's metadata in some canonical format= , > which will then make it easy to look for that. This could be handled by git-notes(1). E.g., git commit ... git notes add -m 'Fixes: #16389' Would add a note (metadata) to the last commit. It is shown in `git lo= g' or=20 the current note can be displayed using `git notes show'. Regards, R=C3=BCdiger