From owner-freebsd-git@freebsd.org Fri Nov 20 11:30:05 2020 Return-Path: Delivered-To: freebsd-git@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id EC21F2C6D11 for ; Fri, 20 Nov 2020 11:30:05 +0000 (UTC) (envelope-from tom@eborcom.com) Received: from eborcom.com (canet.scrubhole.org [IPv6:2a02:1658:1::179:1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4CcvV455hwz3DkX for ; Fri, 20 Nov 2020 11:30:04 +0000 (UTC) (envelope-from tom@eborcom.com) Received: from tom by eborcom.com with local (Exim 4.87_1 (FreeBSD)) (envelope-from ) id 1kg4c0-0000mI-9a; Fri, 20 Nov 2020 11:29:56 +0000 Date: Fri, 20 Nov 2020 11:29:56 +0000 From: Tom Hukins To: Dan Langille Cc: freebsd-git@freebsd.org Subject: Re: Monitoring commits on all branches Message-ID: <20201120112955.GO24999@eborcom.com> References: <197541CC-FEA7-4B4C-936E-66A5625BB64C@langille.org> <3c9f6285-ae7c-1062-2dd3-42f8c953a230@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.7.2 (2016-11-26) Sender: Tom Hukins X-Rspamd-Queue-Id: 4CcvV455hwz3DkX X-Spamd-Bar: --- Authentication-Results: mx1.freebsd.org; dkim=none; dmarc=none; spf=pass (mx1.freebsd.org: domain of tom@eborcom.com designates 2a02:1658:1::179:1 as permitted sender) smtp.mailfrom=tom@eborcom.com X-Spamd-Result: default: False [-3.00 / 15.00]; RCVD_TLS_LAST(0.00)[]; ARC_NA(0.00)[]; FREEFALL_USER(0.00)[tom]; FROM_HAS_DN(0.00)[]; TO_DN_SOME(0.00)[]; R_SPF_ALLOW(-0.20)[+ip6:2a02:1658:1::179:1/128]; NEURAL_HAM_LONG(-1.00)[-1.000]; MIME_GOOD(-0.10)[text/plain]; DMARC_NA(0.00)[FreeBSD.org]; RBL_DBL_DONT_QUERY_IPS(0.00)[2a02:1658:1::179:1:from]; SPAMHAUS_ZRD(0.00)[2a02:1658:1::179:1:from:127.0.2.255]; TO_MATCH_ENVRCPT_SOME(0.00)[]; NEURAL_HAM_SHORT(-1.00)[-1.000]; RCPT_COUNT_TWO(0.00)[2]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; FORGED_SENDER(0.30)[tom@FreeBSD.org,tom@eborcom.com]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; RCVD_COUNT_TWO(0.00)[2]; ASN(0.00)[asn:12290, ipnet:2a02:1658::/32, country:GB]; FROM_NEQ_ENVFROM(0.00)[tom@FreeBSD.org,tom@eborcom.com]; MAILMAN_DEST(0.00)[freebsd-git] X-BeenThere: freebsd-git@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Discussion of git use in the FreeBSD project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Nov 2020 11:30:06 -0000 On Thu, Nov 19, 2020 at 02:00:36PM -0500, Dan Langille wrote: > Mathieu mentioned: git log $foo_hash...branch_name > > That was the first time I've seen that used. All previous suggestions were HEAD, not branch_name. But they are all the same in this context? As already mentioned, it depends. I found the documentation for "Specifying Revisions" in `git help rev-parse` helpful when I was new to git: https://git-scm.com/docs/git-rev-parse#_specifying_revisions Tom