Re: how to compare branches?
- Reply: Steve Kargl : "Re: how to compare branches?"
- Reply: Ed Maste : "Re: how to compare branches?"
- In reply to: Steve Kargl : "how to compare branches?"
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 24 Jul 2023 19:43:30 UTC
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