Merge pull request #31 from jdelkins/check_git_env_vars
Don't use -p if GIT_DIR or GIT_WORK_TREE are set
This commit is contained in:
@@ -147,7 +147,13 @@ local function lazygit(path)
|
|||||||
path = project_root_dir()
|
path = project_root_dir()
|
||||||
end
|
end
|
||||||
open_floating_window()
|
open_floating_window()
|
||||||
local cmd = "lazygit " .. "-p " .. path
|
local cmd = "lazygit"
|
||||||
|
if not vim.env.GIT_DIR then
|
||||||
|
cmd = cmd .. " -g " .. path .. "/.git/"
|
||||||
|
end
|
||||||
|
if not vim.env.GIT_WORK_TREE then
|
||||||
|
cmd = cmd .. " -w " .. path
|
||||||
|
end
|
||||||
exec_lazygit_command(cmd)
|
exec_lazygit_command(cmd)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user