summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Bokatius <[email protected]>2022-10-13 13:05:45 +0200
committerGitHub <[email protected]>2022-10-13 13:05:45 +0200
commit02aa0143896e8c98ced1dd605ca5defd50aedcb5 (patch)
tree7d3c195a025b6e2c9ee2325848b989070f68d911
parentea1ebda243610d81325f75249423d59a5678cf65 (diff)
parentfcced1811ec45f0c3e58eef99dd962ef872be20b (diff)
Merge pull request #3217 from Almo7aya/fix/typo_in_git.lua
fix: typo in git.lua
-rw-r--r--lua/lvim/utils/git.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lvim/utils/git.lua b/lua/lvim/utils/git.lua
index e1b5ccf2..c1bdca1b 100644
--- a/lua/lvim/utils/git.lua
+++ b/lua/lvim/utils/git.lua
@@ -40,7 +40,7 @@ local function safe_deep_fetch()
Log:error(vim.inspect(error))
return
end
- -- git fetch --unshallow will cause an error on a a complete clone
+ -- git fetch --unshallow will cause an error on a complete clone
local fetch_mode = result[1] == "true" and "--unshallow" or "--all"
ret = git_cmd { args = { "fetch", fetch_mode } }
if ret ~= 0 then