Gets the git status output.
(&self)
| 202 | |
| 203 | /// Gets the git status output. |
| 204 | pub fn status(&self) -> Result<String> { |
| 205 | self.run_git_command(&["status", "--porcelain"]) |
| 206 | .context("Failed to get git status") |
| 207 | } |
| 208 | |
| 209 | /// Gets list of all branches. |
| 210 | pub fn branches(&self) -> Result<Vec<String>> { |
no test coverage detected