Re: drm panic after new world

From: Matthew Seaman <matthew_at_FreeBSD.org>
Date: Tue, 03 Jun 2025 09:56:00 UTC
On 02/06/2025 23:35, Steve Kargl wrote:
> How does one use dates to checkout a particular head?
> If I'm at the top of HEAD and need to got back to
> mid-february, what's the easiest option for performing
> a bisection by hand?

Something like:

   git checkout 'main@{2025-02-14 12:00:00}'

Or you can say things like:

   git checkout 'main@{4 months ago}'

See git-rev-parse(1)

	Cheers,

	Matthew