Returns the HEAD commit hash of the repository at the given path.
(&self, repository_root_path: &str)
| 149 | |
| 150 | /// Returns the HEAD commit hash of the repository at the given path. |
| 151 | fn get_commit_hash(&self, repository_root_path: &str) -> Result<String> { |
| 152 | get_commit_hash_default_impl(repository_root_path) |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | fn get_commit_hash_default_impl(repository_root_path: &str) -> Result<String> { |
no test coverage detected