AnyConfig give access to a merged local/global configuration
()
| 269 | |
| 270 | // AnyConfig give access to a merged local/global configuration |
| 271 | func (repo *GoGitRepo) AnyConfig() ConfigRead { |
| 272 | return mergeConfig(repo.LocalConfig(), repo.GlobalConfig()) |
| 273 | } |
| 274 | |
| 275 | // Keyring give access to a user-wide storage for secrets |
| 276 | func (repo *GoGitRepo) Keyring() Keyring { |
no test coverage detected