GetSubmitStrategy returns the way in which a review is submitted
()
| 168 | |
| 169 | // GetSubmitStrategy returns the way in which a review is submitted |
| 170 | func (repo *GitRepo) GetSubmitStrategy() (string, error) { |
| 171 | submitStrategy, _ := repo.runGitCommand("config", "appraise.submit") |
| 172 | return submitStrategy, nil |
| 173 | } |
| 174 | |
| 175 | // HasUncommittedChanges returns true if there are local, uncommitted changes. |
| 176 | func (repo *GitRepo) HasUncommittedChanges() (bool, error) { |
nothing calls this directly
no test coverage detected