From owner-freebsd-current@freebsd.org Mon Jan 4 19:11:57 2021 Return-Path: Delivered-To: freebsd-current@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 1E8314C3477 for ; Mon, 4 Jan 2021 19:11:57 +0000 (UTC) (envelope-from warlock@phouka1.phouka.net) Received: from phouka1.phouka.net (phouka1.phouka.net [107.170.196.116]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "phouka.net", Issuer "Go Daddy Secure Certificate Authority - G2" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 4D8lcD6R5Lz3nd6; Mon, 4 Jan 2021 19:11:56 +0000 (UTC) (envelope-from warlock@phouka1.phouka.net) Received: from phouka1.phouka.net (localhost [127.0.0.1]) by phouka1.phouka.net (8.16.1/8.16.1) with ESMTPS id 104JAdBX089656 (version=TLSv1.3 cipher=TLS_AES_256_GCM_SHA384 bits=256 verify=NO); Mon, 4 Jan 2021 11:10:39 -0800 (PST) (envelope-from warlock@phouka1.phouka.net) Received: (from warlock@localhost) by phouka1.phouka.net (8.16.1/8.16.1/Submit) id 104JAdNc089655; Mon, 4 Jan 2021 11:10:39 -0800 (PST) (envelope-from warlock) Date: Mon, 4 Jan 2021 11:10:38 -0800 From: John Kennedy To: Franco Fichtner Cc: Enji Cooper , Alan Somers , Poul-Henning Kamp , Current FreeBSD Subject: Re: git non-time-sequential logs Message-ID: References: <94447.1609779520@critter.freebsd.dk> <7E3C7B7F-A127-45DE-A4B2-8C42F707E5D2@gmail.com> <1F692948-7329-4AFD-B9F5-9208F3C44C8E@lastsummer.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1F692948-7329-4AFD-B9F5-9208F3C44C8E@lastsummer.de> X-Rspamd-Queue-Id: 4D8lcD6R5Lz3nd6 X-Spamd-Bar: ---- X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[] X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2021 19:11:57 -0000 On Mon, Jan 04, 2021 at 07:59:12PM +0100, Franco Fichtner wrote: > The author date stays the same, the committer date is sequential except > that it indicates the local time of the committer doing the cherry-pick > instead of the central server as opposed to svn: > > # git log --format=fuller That format gets me the CommitDate:, which is what I would have been looking for. Seems like the data is there, just not necessarily used (displayed) by default. Not sure what the original SVN timestamps were, but assuming GMT: (export TZ=GMT && git log --format=fuller --date=local) Maybe there are some ways to make those default options.