mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-04 10:34:55 +02:00
25 lines
391 B
Go
25 lines
391 B
Go
package env
|
|
|
|
import "os"
|
|
|
|
func GetGitDirEnv() string {
|
|
return os.Getenv("GIT_DIR")
|
|
}
|
|
|
|
func GetGitWorkTreeEnv() string {
|
|
return os.Getenv("GIT_WORK_TREE")
|
|
}
|
|
|
|
func SetGitDirEnv(value string) {
|
|
os.Setenv("GIT_DIR", value)
|
|
}
|
|
|
|
func SetGitWorkTreeEnv(value string) {
|
|
os.Setenv("GIT_WORK_TREE", value)
|
|
}
|
|
|
|
func UnsetGitDirEnvs() {
|
|
_ = os.Unsetenv("GIT_DIR")
|
|
_ = os.Unsetenv("GIT_WORK_TREE")
|
|
}
|