GetCoreEditor returns the name of the editor that the user has used to configure git.
()
| 163 | |
| 164 | // GetCoreEditor returns the name of the editor that the user has used to configure git. |
| 165 | func (repo *GitRepo) GetCoreEditor() (string, error) { |
| 166 | return repo.runGitCommand("var", "GIT_EDITOR") |
| 167 | } |
| 168 | |
| 169 | // GetSubmitStrategy returns the way in which a review is submitted |
| 170 | func (repo *GitRepo) GetSubmitStrategy() (string, error) { |
nothing calls this directly
no test coverage detected