1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
--!A cross-platform build utility based on Lua
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
-- Copyright (C) 2015-present, Xmake Open Source Community.
--
-- @author ruki
-- @file clone.lua
--
-- imports
import("core.base.option")
import("core.base.semver")
import("lib.detect.find_tool")
import("net.proxy")
import("devel.git.support")
-- clone url
--
-- @param url the git url
-- @param opt the argument options
--
-- @code
--
-- import("devel.git")
--
-- git.clone("[email protected]:xmake-io/xmake.git")
-- git.clone("[email protected]:xmake-io/xmake.git", {depth = 1, treeless = true, branch = "master", outputdir = "/tmp/xmake", longpaths = true})
--
-- @endcode
--
function main(url, opt)
-- find git
local git = assert(find_tool("git"), "git not found!")
-- init argv
local argv = {"clone", url}
-- set branch
opt = opt or {}
if opt.branch then
table.insert(argv, "-b")
table.insert(argv, opt.branch)
end
-- set depth
if opt.depth then
table.insert(argv, "--depth")
table.insert(argv, type(opt.depth) == "number" and tostring(opt.depth) or opt.depth)
end
-- treeless?
-- @see https://github.com/xmake-io/xmake/issues/5507
if opt.treeless and support.can_treeless() then
table.insert(argv, "--filter=tree:0")
end
-- no checkout
if opt.checkout == false then
table.insert(argv, "--no-checkout")
end
-- recursive?
if opt.recursive then
table.insert(argv, "--recursive")
end
-- clone for submodules
if opt.recurse_submodules then
table.insert(argv, "--recurse-submodules")
end
if opt.shallow_submodules and support.can_shallow_submodules() then
table.insert(argv, "--shallow-submodules")
end
-- use longpaths, we need it on windows
if opt.longpaths then
table.insert(argv, "-c")
table.insert(argv, "core.longpaths=true")
end
-- set fsmonitor
if opt.fsmonitor then
table.insert(argv, "-c")
table.insert(argv, "core.fsmonitor=true")
else
table.insert(argv, "-c")
table.insert(argv, "core.fsmonitor=false")
end
-- set core.autocrlf
if opt.autocrlf then
table.insert(argv, "-c")
table.insert(argv, "core.autocrlf=true")
elseif opt.autocrlf == false then
table.insert(argv, "-c")
table.insert(argv, "core.autocrlf=false")
end
-- set outputdir
if opt.outputdir then
table.insert(argv, path.translate(opt.outputdir))
end
-- use proxy?
local envs
local proxy_conf = proxy.config(url)
if proxy_conf then
envs = {ALL_PROXY = proxy_conf}
end
-- clone it
if opt.verbose then
os.execv(git.program, argv, {envs = envs})
else
os.vrunv(git.program, argv, {envs = envs})
end
end
|