(&self, oid: git2::Oid)
| 91 | } |
| 92 | |
| 93 | pub fn commit(&self, oid: git2::Oid) -> Result<git2::Commit<'_>> { |
| 94 | Ok(self.inner.find_commit(oid)?) |
| 95 | } |
| 96 | |
| 97 | pub fn commit_oid(&self, _timespec: &Timespec) -> Result<git2::Oid> { |
| 98 | let reference = self.inner.find_reference("HEAD")?; |
no outgoing calls
no test coverage detected