From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Mathias Megyei Newsgroups: gmane.emacs.devel Subject: Re: git log question Date: Thu, 30 Nov 2017 12:30:07 +0100 Message-ID: <920d2cc0-a9b8-b740-1b4a-51403a790f90@mnet-mail.de> References: <87bmjkgk6h.fsf@gmx.net> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: blaine.gmane.org 1512041455 32372 195.159.176.226 (30 Nov 2017 11:30:55 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Thu, 30 Nov 2017 11:30:55 +0000 (UTC) User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 Cc: Stephen Berman To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Nov 30 12:30:51 2017 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eKN3L-00089M-F0 for ged-emacs-devel@m.gmane.org; Thu, 30 Nov 2017 12:30:51 +0100 Original-Received: from localhost ([::1]:47455 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eKN3R-000891-9z for ged-emacs-devel@m.gmane.org; Thu, 30 Nov 2017 06:30:57 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:56649) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eKN2s-00088e-HX for emacs-devel@gnu.org; Thu, 30 Nov 2017 06:30:24 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eKN2n-0007C6-J4 for emacs-devel@gnu.org; Thu, 30 Nov 2017 06:30:22 -0500 Original-Received: from mail-out.m-online.net ([212.18.0.9]:44341) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eKN2n-00078k-CK for emacs-devel@gnu.org; Thu, 30 Nov 2017 06:30:17 -0500 Original-Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 3ynZvT6tW2z1qsSX; Thu, 30 Nov 2017 12:30:13 +0100 (CET) Original-Received: from localhost (dynscan1.mnet-online.de [192.168.6.70]) by mail.m-online.net (Postfix) with ESMTP id 3ynZvT6Fslz1qqlD; Thu, 30 Nov 2017 12:30:13 +0100 (CET) X-Virus-Scanned: amavisd-new at mnet-online.de Original-Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.70]) (amavisd-new, port 10024) with ESMTP id 2-8mtRUXiE-A; Thu, 30 Nov 2017 12:30:08 +0100 (CET) X-Auth-Info: yc+444yr9e2LMVSJEyS3MQ35sqXjAXEaFpcvqSi/hEIfVP6UJIHOQSpsuMxhTcm/ Original-Received: from [192.168.1.6] (ppp-46-244-182-203.dynamic.mnet-online.de [46.244.182.203]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.mnet-online.de (Postfix) with ESMTPSA; Thu, 30 Nov 2017 12:30:08 +0100 (CET) In-Reply-To: <87bmjkgk6h.fsf@gmx.net> Content-Language: en-US X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 212.18.0.9 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 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" Xref: news.gmane.org gmane.emacs.devel:220537 Archived-At: On 11/30/2017 11:00 AM, Stephen Berman wrote: > I thought if I call `git log -1' on the current branch, it will > only show if it is in the current branch, When you want to know whether (originally committed to emacs-26) has been merged into master or any other local branch then you can use git branch --contains In order to list remote tracking branches please add option '-r' git branch -r --contains Mathias