mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-04-04 22:34:39 +02:00
This allows changing git config values while lazygit is running (e.g. in a different terminal tab, or even in lazygit's ":" shell prompt), and have them take effect immediately, while still getting some benefit from caching them while lazygit is in the foreground.
33 lines
627 B
Go
33 lines
627 B
Go
package git_config
|
|
|
|
type FakeGitConfig struct {
|
|
mockResponses map[string]string
|
|
}
|
|
|
|
func NewFakeGitConfig(mockResponses map[string]string) *FakeGitConfig {
|
|
return &FakeGitConfig{
|
|
mockResponses: mockResponses,
|
|
}
|
|
}
|
|
|
|
func (self *FakeGitConfig) Get(key string) string {
|
|
if self.mockResponses == nil {
|
|
return ""
|
|
}
|
|
return self.mockResponses[key]
|
|
}
|
|
|
|
func (self *FakeGitConfig) GetGeneral(args string) string {
|
|
if self.mockResponses == nil {
|
|
return ""
|
|
}
|
|
return self.mockResponses[args]
|
|
}
|
|
|
|
func (self *FakeGitConfig) GetBool(key string) bool {
|
|
return isTruthy(self.Get(key))
|
|
}
|
|
|
|
func (self *FakeGitConfig) DropCache() {
|
|
}
|