diff options
Diffstat (limited to 'lua')
-rw-r--r-- | lua/dep/proc.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/dep/proc.lua b/lua/dep/proc.lua index 3355228..cf3aa9c 100644 --- a/lua/dep/proc.lua +++ b/lua/dep/proc.lua @@ -62,7 +62,7 @@ function proc.git_reset(dir, treeish, cb) end function proc.git_checkout(dir, branch, commit, cb) - local args = { "fetch", "--unshallow", "origin", branch } + local args = { "fetch", "--depth=2147483647", "origin", branch } proc.exec("git", args, dir, git_env, function(err, message) cb(err, message) |