From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Stephen J. Turnbull" Newsgroups: gmane.emacs.devel Subject: Re: PROPOSAL: Move to git, now that bzr is no longer a req. Date: Sun, 05 Jan 2014 17:34:47 +0900 Message-ID: <877gaekes8.fsf@uwakimon.sk.tsukuba.ac.jp> References: <20140102095347.6834E381D0C@snark.thyrsus.com> <87fvp6bdd9.fsf_-_@ktab.red-bean.com> <8761q1ljny.fsf@gmail.com> <20140103175006.GE17261@thyrsus.com> <87iou0t72n.fsf@bzg.ath.cx> <87a9fb99qg.fsf@Rainer.invalid> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 X-Trace: ger.gmane.org 1388910970 13785 80.91.229.3 (5 Jan 2014 08:36:10 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 5 Jan 2014 08:36:10 +0000 (UTC) Cc: Achim Gratz , emacs-devel@gnu.org To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Jan 05 09:36:14 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 1VzjBt-0005iq-VC for ged-emacs-devel@m.gmane.org; Sun, 05 Jan 2014 09:36:14 +0100 Original-Received: from localhost ([::1]:57059 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VzjBt-0004fa-9Y for ged-emacs-devel@m.gmane.org; Sun, 05 Jan 2014 03:36:13 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:41732) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VzjBk-0004fL-1A for emacs-devel@gnu.org; Sun, 05 Jan 2014 03:36:11 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VzjBc-0004XB-OX for emacs-devel@gnu.org; Sun, 05 Jan 2014 03:36:03 -0500 Original-Received: from mgmt2.sk.tsukuba.ac.jp ([130.158.97.224]:42435) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VzjBc-000479-E8 for emacs-devel@gnu.org; Sun, 05 Jan 2014 03:35:56 -0500 Original-Received: from uwakimon.sk.tsukuba.ac.jp (uwakimon.sk.tsukuba.ac.jp [130.158.99.156]) by mgmt2.sk.tsukuba.ac.jp (Postfix) with ESMTP id 13BE4970A0A; Sun, 5 Jan 2014 17:34:48 +0900 (JST) Original-Received: by uwakimon.sk.tsukuba.ac.jp (Postfix, from userid 1000) id E33401A2E7D; Sun, 5 Jan 2014 17:34:47 +0900 (JST) In-Reply-To: X-Mailer: VM undefined under 21.5 (beta34) "kale" 2a0f42961ed4 XEmacs Lucid (x86_64-unknown-linux) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 130.158.97.224 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:167349 Archived-At: Stefan Monnier writes: > The main issues were (and are) the following: > - How to edit past commit messages when they're > incorrect/incomplete/...? Best solution: no commit without review. Not gonna happen :-) so, "git notes". > - How to do C-x 4 a when there's no ChangeLog file? ln -s $PROJECT_ROOT/.tmp_commit_log $PROJECT_ROOT/ChangeLog works for me in private projects. The commit alias removes .tmp_commit_log, so I can't commit without writing a commit log ("fatal: could not read log file '.tmp_commit_log': No such file or directory"). > - This last one can get a bit more delicate if you want to be able > to do Yeah, probably it's still a bit delicate. > since this requires saving the commit message which you started > writing in the first Emacs session: the ChangeLog file naturally lives > across Emacs sessions, whereas the *VC-Log* buffer doesn't. but not for that reason. ;-) Dunno if that trick works on Windows, for one. Steve