async fn git_commit_date(refspec: &str) -> Option<DateTime<Utc>>
Run git log -1 --format=%cI <refspec> and parse the result as a UTC DateTime. Returns None on any failure so callers can treat the date as optional.
git log -1 --format=%cI <refspec>
DateTime
None