MCPcopy
hub / github.com/git-lfs/git-lfs / Environment

Interface Environment

git/config.go:21–24  ·  view source on GitHub ↗

Environment is a restricted version of config.Environment that only provides a single method.

Source from the content-addressed store, hash-verified

19// Environment is a restricted version of config.Environment that only provides
20// a single method.
21type Environment interface {
22 // Get is shorthand for calling `e.Fetcher.Get(key)`.
23 Get(key string) (val string, ok bool)
24}
25
26// Configuration can fetch or modify the current Git config and track the Git
27// version.

Callers

nothing calls this directly

Implementers 2

environmentconfig/environment.go
delayedEnvironmentconfig/delayed_environment.go

Calls

no outgoing calls

Tested by

no test coverage detected