(
&self,
local: git2::Oid,
upstream: git2::Oid,
)
| 101 | } |
| 102 | |
| 103 | pub fn graph_ahead_behind( |
| 104 | &self, |
| 105 | local: git2::Oid, |
| 106 | upstream: git2::Oid, |
| 107 | ) -> Result<(usize, usize)> { |
| 108 | Ok(self.repo.graph_ahead_behind(local, upstream)?) |
| 109 | } |
| 110 | } |