summaryrefslogtreecommitdiff
path: root/xmake/modules/devel/git/init.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2022-04-12 22:45:38 +0800
committerruki <[email protected]>2022-04-12 22:45:38 +0800
commit52f324b543b512f53a75a653f3b32cc7dbfe601e (patch)
tree078624d3ea1897918b383e30dba6c56677da710e /xmake/modules/devel/git/init.lua
parent314c329ed33997af84bb0971965a15f3cc7cdbb4 (diff)
improve reset dir
Diffstat (limited to 'xmake/modules/devel/git/init.lua')
-rw-r--r--xmake/modules/devel/git/init.lua56
1 files changed, 56 insertions, 0 deletions
diff --git a/xmake/modules/devel/git/init.lua b/xmake/modules/devel/git/init.lua
new file mode 100644
index 000000000..f0a27d821
--- /dev/null
+++ b/xmake/modules/devel/git/init.lua
@@ -0,0 +1,56 @@
+--!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, TBOOX Open Source Group.
+--
+-- @author ruki
+-- @file init.lua
+--
+
+-- imports
+import("core.base.option")
+import("lib.detect.find_tool")
+
+-- init project
+--
+-- @param opt the argument options
+--
+-- @code
+--
+-- import("devel.git")
+--
+-- git.init()
+-- git.init({repodir = "/tmp/xmake"})
+--
+-- @endcode
+--
+function main(opt)
+
+ -- init options
+ opt = opt or {}
+
+ -- find git
+ local git = assert(find_tool("git"), "git not found!")
+
+ -- init argv
+ local argv = {"init"}
+
+ -- verbose?
+ if not option.get("verbose") then
+ table.insert(argv, "-q")
+ end
+
+ -- init it
+ os.vrunv(git.program, argv, {curdir = opt.repodir})
+end