Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CachedGitConfig ¶
type CachedGitConfig struct {
// contains filtered or unexported fields
}
func NewCachedGitConfig ¶
func NewStdCachedGitConfig ¶
func NewStdCachedGitConfig(log *logrus.Entry) *CachedGitConfig
func (*CachedGitConfig) Get ¶
func (self *CachedGitConfig) Get(key string) string
func (*CachedGitConfig) GetBool ¶
func (self *CachedGitConfig) GetBool(key string) bool
func (*CachedGitConfig) GetGeneral ¶ added in v0.32.1
func (self *CachedGitConfig) GetGeneral(args string) string
type FakeGitConfig ¶
type FakeGitConfig struct {
// contains filtered or unexported fields
}
func NewFakeGitConfig ¶
func NewFakeGitConfig(mockResponses map[string]string) *FakeGitConfig
func (*FakeGitConfig) Get ¶
func (self *FakeGitConfig) Get(key string) string
func (*FakeGitConfig) GetBool ¶
func (self *FakeGitConfig) GetBool(key string) bool
func (*FakeGitConfig) GetGeneral ¶ added in v0.32.1
func (self *FakeGitConfig) GetGeneral(args string) string
type IGitConfig ¶
type IGitConfig interface { // this is for when you want to pass 'mykey' (it calls `git config --get --null mykey` under the hood) Get(string) string // this is for when you want to pass '--local --get-regexp mykey' GetGeneral(string) string // this is for when you want to pass 'mykey' and check if the result is truthy GetBool(string) bool }
Click to show internal directories.
Click to hide internal directories.