From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tassilo Horn Newsgroups: gmane.emacs.devel Subject: Re: Obscure error/warning/information message from git pull Date: Fri, 14 Nov 2014 21:50:57 +0100 Message-ID: <87h9y14iby.fsf@thinkpad-t440p.tsdh.org> References: <20141114120604.GA3859@acm.acm> <87389mkjwo.fsf@thinkpad-t440p.tsdh.org> <20141114141434.GM3565@embecosm.com> <20141114180521.GA3168@acm.acm> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1415998305 8156 80.91.229.3 (14 Nov 2014 20:51:45 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 14 Nov 2014 20:51:45 +0000 (UTC) Cc: Andrew Burgess , emacs-devel@gnu.org To: Alan Mackenzie Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Nov 14 21:51:37 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 1XpNqC-0002RR-SL for ged-emacs-devel@m.gmane.org; Fri, 14 Nov 2014 21:51:37 +0100 Original-Received: from localhost ([::1]:37827 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XpNqC-0006N7-IA for ged-emacs-devel@m.gmane.org; Fri, 14 Nov 2014 15:51:36 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:39645) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XpNpl-0006Cf-Bd for emacs-devel@gnu.org; Fri, 14 Nov 2014 15:51:14 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XpNpg-0003d0-3q for emacs-devel@gnu.org; Fri, 14 Nov 2014 15:51:09 -0500 Original-Received: from out3-smtp.messagingengine.com ([66.111.4.27]:56714) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XpNpg-0003cw-0u for emacs-devel@gnu.org; Fri, 14 Nov 2014 15:51:04 -0500 Original-Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 9A24E20D6F for ; Fri, 14 Nov 2014 15:51:03 -0500 (EST) Original-Received: from frontend2 ([10.202.2.161]) by compute1.internal (MEProxy); Fri, 14 Nov 2014 15:51:03 -0500 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=x-sasl-enc:from:to:cc:subject:references :date:in-reply-to:message-id:mime-version:content-type; s= smtpout; bh=DpHIBrYLrXTuAQgKwlnHN/ZR1EQ=; b=PIByHdNv81O1bQTSbR/6 bobEz2P/CSob70s5pOxzzYTdOUxyRzhzkGDQZLwRh8b+MqEf3eMjeiSVI102IEia JwxYIJpDdWZ9APMBCZTWmfsTIiMRnRL1pRtg8zimfBIDT5Y2WaogOAkZKyML7N1t 4BsFYXq2MP7e+HLWCNd3TqA= X-Sasl-enc: SWWXE5VQSweXcxhQ8iRpSUlKpq4fWGr2IDJ3LTY/KAWA 1415998263 Original-Received: from thinkpad-t440p.tsdh.org (unknown [2.162.226.32]) by mail.messagingengine.com (Postfix) with ESMTPA id 6A26E680100; Fri, 14 Nov 2014 15:51:02 -0500 (EST) Mail-Followup-To: Alan Mackenzie , Andrew Burgess , emacs-devel@gnu.org In-Reply-To: <20141114180521.GA3168@acm.acm> (Alan Mackenzie's message of "Fri, 14 Nov 2014 18:05:21 +0000") User-Agent: Gnus/5.130012 (Ma Gnus v0.12) Emacs/25.0.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 66.111.4.27 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:177115 Archived-At: Alan Mackenzie writes: > git log is being piped into less, which is objectionable. If I want it > in less, I'm quite capable of saying so. Is there a flag I can give to > stop my stdout being hijacked, or can I configure it away somehow? As soon as you redirect it won't be piped into less. But you can either specify the global git option --no-pager, e.g., git --no-pager log or configure git config --global core.pager cat But with that, you'll always see Jim Blandy's commit from 1985 in "git log" and then have to scroll up some million lines... Bye, Tassilo