From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: [Emacs-diffs] master 4e23cd0 4/5: * mail/rmail.el (rmail-show-message-1): When displaying a mime message, Date: Sun, 05 Apr 2015 21:04:07 +0300 Message-ID: <83384emoyw.fsf@gnu.org> References: <20150405124321.362.95112@vcs.savannah.gnu.org> <552130FE.1010101@yandex.ru> <83mw2mn2no.fsf@gnu.org> <5521359D.2000509@yandex.ru> Reply-To: Eli Zaretskii NNTP-Posting-Host: plane.gmane.org X-Trace: ger.gmane.org 1428257070 14799 80.91.229.3 (5 Apr 2015 18:04:30 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 5 Apr 2015 18:04:30 +0000 (UTC) Cc: emacs-devel@gnu.org, dgutov@yandex.ru To: rms@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Apr 05 20:04:17 2015 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 1Yeou6-0000eT-CA for ged-emacs-devel@m.gmane.org; Sun, 05 Apr 2015 20:04:14 +0200 Original-Received: from localhost ([::1]:37234 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yeou5-00005a-It for ged-emacs-devel@m.gmane.org; Sun, 05 Apr 2015 14:04:13 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:39403) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yeou1-00005S-J4 for emacs-devel@gnu.org; Sun, 05 Apr 2015 14:04:10 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Yeoty-00083v-Cv for emacs-devel@gnu.org; Sun, 05 Apr 2015 14:04:09 -0400 Original-Received: from mtaout27.012.net.il ([80.179.55.183]:55549) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yeoty-00083q-5t; Sun, 05 Apr 2015 14:04:06 -0400 Original-Received: from conversion-daemon.mtaout27.012.net.il by mtaout27.012.net.il (HyperSendmail v2007.08) id <0NMC00A00HH73J00@mtaout27.012.net.il>; Sun, 05 Apr 2015 20:58:56 +0300 (IDT) Original-Received: from HOME-C4E4A596F7 ([87.69.4.28]) by mtaout27.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0NMC003EUHY8QF70@mtaout27.012.net.il>; Sun, 05 Apr 2015 20:58:56 +0300 (IDT) In-reply-to: X-012-Sender: halo1@inter.net.il X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 80.179.55.183 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:184952 Archived-At: > Date: Sun, 05 Apr 2015 13:42:45 -0400 > From: Richard Stallman > CC: eliz@gnu.org, emacs-devel@gnu.org > > > 1) Forget the "push automatically after commit" nonsense, and > > double-check each commit one creates before pushing. > > The quick start instructions do not say that one should "double-check > each commit". They don't even say how to double-check a commit. They didn't say that before, but they do now: It is a good idea to examine what you are about to push, before actually doing so, because fixing mistakes before pushing is much easier (see the next section). To do that, use the command "git diff origin/master". If you want to show your unpushed commits with their commit log messages, use "git show origin/master.." instead. If you only have one local commit you want to push, just "git show" is enough.