From nobody Mon Jul 24 19:43:30 2023 X-Original-To: freebsd-hackers@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4R8rF5344Sz4pgZM for ; Mon, 24 Jul 2023 19:43:37 +0000 (UTC) (envelope-from brooks@spindle.one-eyed-alien.net) Received: from spindle.one-eyed-alien.net (spindle.one-eyed-alien.net [199.48.129.229]) (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 did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4R8rF51PRhz4GB7 for ; Mon, 24 Jul 2023 19:43:37 +0000 (UTC) (envelope-from brooks@spindle.one-eyed-alien.net) Authentication-Results: mx1.freebsd.org; none Received: by spindle.one-eyed-alien.net (Postfix, from userid 3001) id 1DDA33C0199; Mon, 24 Jul 2023 19:43:30 +0000 (UTC) Date: Mon, 24 Jul 2023 19:43:30 +0000 From: Brooks Davis To: Steve Kargl Cc: freebsd-hackers@freebsd.org Subject: Re: how to compare branches? Message-ID: References: List-Id: Technical discussions relating to FreeBSD List-Archive: https://lists.freebsd.org/archives/freebsd-hackers List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-hackers@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Rspamd-Queue-Id: 4R8rF51PRhz4GB7 X-Spamd-Bar: ---- X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:36236, ipnet:199.48.128.0/22, country:US] X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated On Mon, Jul 24, 2023 at 12:37:37PM -0700, Steve Kargl wrote: > It has been brought to my attention that a few fixes to libm > in main have not been merged to at least the 13 branch. To > check on the level of missing changes, I would to compare ther > lib/msun on main to lib/msun on stable/13. What is the git > command needed for such a task? My attempts of modifying results > from a google search of "git diff between branches" has been > entertaining but fruitless. git diff stable/13..main lib/msun or you can see individual commits graphically on mfc.freebsd.org with the filter @lib/msun/ -- Brooks