git_config

package
v0.0.0-...-00ab8b8 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 15, 2024 License: MIT Imports: 8 Imported by: 0

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 NewCachedGitConfig(runGitConfigCmd func(*exec.Cmd) (string, error), log *logrus.Entry) *CachedGitConfig

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

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

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
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL