GetUserSigningKey returns the key id the user has configured for sigining git artifacts.
()
| 158 | // GetUserSigningKey returns the key id the user has configured for |
| 159 | // sigining git artifacts. |
| 160 | func (repo *GitRepo) GetUserSigningKey() (string, error) { |
| 161 | return repo.runGitCommand("config", "user.signingKey") |
| 162 | } |
| 163 | |
| 164 | // GetCoreEditor returns the name of the editor that the user has used to configure git. |
| 165 | func (repo *GitRepo) GetCoreEditor() (string, error) { |
nothing calls this directly
no test coverage detected