fn main() -> anyhow::Result<()> { let repo = gix::open("./")?; let commit = repo.head_commit()?; println!("{commit:?}"); Ok(()) }