GetUserEmail returns the email address that the user has used to configure git.
()
| 152 | |
| 153 | // GetUserEmail returns the email address that the user has used to configure git. |
| 154 | func (repo *GitRepo) GetUserEmail() (string, error) { |
| 155 | return repo.runGitCommand("config", "user.email") |
| 156 | } |
| 157 | |
| 158 | // GetUserSigningKey returns the key id the user has configured for |
| 159 | // sigining git artifacts. |
nothing calls this directly
no test coverage detected