/
githubmirror
/
lazygit
Обзор
Документация
Войти
/
githubmirror
/
lazygit
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
pkg/commands/git_cmd_obj_builder.go
67 строк
3 KB
Stefan Haller
Tell git where the repo is when it can't find it itself
08 авг 2026, 12:15
08 авг 2026, 12:15
d19af37
Код
Авторство
О чём код?
package commands import ( "github.com/jesseduffield/lazygit/pkg/commands/git_commands" "github.com/jesseduffield/lazygit/pkg/commands/oscommands" "github.com/sirupsen/logrus" ) // all we're doing here is wrapping the default command object builder with // some git-specific stuff: e.g. adding a git-specific env var type gitCmdObjBuilder struct { innerBuilder *oscommands.CmdObjBuilder // The directory of the repo (or worktree) this builder was created for; // every command we produce runs there, regardless of the process's current // working directory. The two are the same until the user switches to // another repo: lazygit chdirs on a switch, but work still in flight for // the previous repo (e.g. a background refresh spawning commands through // the old builder) must keep running its commands against the repo it // started in, not whichever one the process has since moved to. repoDir string // The env vars every command we produce gets: the optional-locks one below, // plus the repo's git location if it has one (see // RepoPaths.GitLocationEnvVars). Those are in the process env too, but for // the same reason as repoDir we don't rely on that: the process env belongs // to whichever repo lazygit has since switched to. envVars []string } var _ oscommands.ICmdObjBuilder = &gitCmdObjBuilder{} // We disable git's optional locks on every command by default so that our git // invocations never contend for index.lock. See git_commands.OptionalLocksEnvVar // for the full rationale. Individual commands that do want the lock (currently // only the foreground files refresh) opt back in via CmdObj.RemoveEnvVar. var defaultEnvVar = git_commands.OptionalLocksEnvVar + "=0" func NewGitCmdObjBuilder(log *logrus.Entry, innerBuilder *oscommands.CmdObjBuilder, repoDir string, gitLocationEnvVars []string) *gitCmdObjBuilder { // the price of having a convenient interface where we can say .New(...).Run() is that our builder now depends on our runner, so when we want to wrap the default builder/runner in new functionality we need to jump through some hoops. We could avoid the use of a decorator function here by just exporting the runner field on the default builder but that would be misleading because we don't want anybody using that to run commands (i.e. we want there to be a single API used across the codebase) updatedBuilder := innerBuilder.CloneWithNewRunner(func(runner oscommands.ICmdObjRunner) oscommands.ICmdObjRunner { return &gitCmdObjRunner{ log: log, innerRunner: runner, initialRetryDelay: defaultInitialRetryDelay, } }) return &gitCmdObjBuilder{ innerBuilder: updatedBuilder, repoDir: repoDir, envVars: append([]string{defaultEnvVar}, gitLocationEnvVars...), } } func (self *gitCmdObjBuilder) New(args []string) *oscommands.CmdObj { return self.innerBuilder.New(args).AddEnvVars(self.envVars...).SetWd(self.repoDir) } func (self *gitCmdObjBuilder) NewShell(cmdStr string, shellFunctionsFile string) *oscommands.CmdObj { return self.innerBuilder.NewShell(cmdStr, shellFunctionsFile).AddEnvVars(self.envVars...).SetWd(self.repoDir) } func (self *gitCmdObjBuilder) Quote(str string) string { return self.innerBuilder.Quote(str) }