(&self, branch_type: Option<BranchType>)
| 93 | } |
| 94 | |
| 95 | pub fn branches(&self, branch_type: Option<BranchType>) -> Result<git2::Branches<'_>> { |
| 96 | Ok(self.repo.branches(branch_type)?) |
| 97 | } |
| 98 | |
| 99 | pub fn is_head_detached(&self) -> bool { |
| 100 | self.repo.head_detached().unwrap_or(false) |
no outgoing calls
no test coverage detected