mirror of https://github.com/folke/lazy.nvim.git
fix(git): always set origin name when cloning (#622)
* fix(git): force origin name
* Revert "fix(git): honor clone.defaultRemoteName. Fixes #602"
This reverts commit 5af93806aa
.
This commit is contained in:
parent
1407565713
commit
53be2c0ee1
|
@ -196,9 +196,7 @@ end
|
||||||
|
|
||||||
---@param repo string
|
---@param repo string
|
||||||
function M.get_origin(repo)
|
function M.get_origin(repo)
|
||||||
local config = M.get_config(repo)
|
return M.get_config(repo)["remote.origin.url"]
|
||||||
local remote = config["clone.defaultRemoteName"] or "origin"
|
|
||||||
return config["remote." .. remote .. ".url"] or config["remote.origin.url"]
|
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param repo string
|
---@param repo string
|
||||||
|
|
|
@ -75,6 +75,8 @@ M.clone = {
|
||||||
args[#args + 1] = "--recurse-submodules"
|
args[#args + 1] = "--recurse-submodules"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
args[#args + 1] = "--origin=origin"
|
||||||
|
|
||||||
args[#args + 1] = "--progress"
|
args[#args + 1] = "--progress"
|
||||||
|
|
||||||
if self.plugin.branch then
|
if self.plugin.branch then
|
||||||
|
|
Loading…
Reference in New Issue