Cook
Find out which branch a commit took place on
If within last 90 days (ie. before gc), check reflog (Private)
git reflog show --all | grep d7f32e
git name-rev --name-only d7f32e
Find all commits made on a given day
git reflog --date=iso | grep "2024-09-18"