GetCoreEditor returns the name of the editor that the user has used to configure git.
()
| 47 | |
| 48 | // GetCoreEditor returns the name of the editor that the user has used to configure git. |
| 49 | func (c *RepoCache) GetCoreEditor() (string, error) { |
| 50 | return c.repo.GetCoreEditor() |
| 51 | } |
| 52 | |
| 53 | // GetRemotes returns the configured remotes repositories. |
| 54 | func (c *RepoCache) GetRemotes() (map[string]string, error) { |
nothing calls this directly
no test coverage detected