summaryrefslogtreecommitdiff
path: root/xmake/modules/devel/git/branch.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2022-04-12 23:05:38 +0800
committerruki <[email protected]>2022-04-12 23:05:38 +0800
commit8db3cdabf865392bdf3734a3cc0803bdbd045a09 (patch)
tree741e115fffb231781ec8d66b9be3f68b69086a53 /xmake/modules/devel/git/branch.lua
parent52f324b543b512f53a75a653f3b32cc7dbfe601e (diff)
reset files
Diffstat (limited to 'xmake/modules/devel/git/branch.lua')
-rw-r--r--xmake/modules/devel/git/branch.lua52
1 files changed, 52 insertions, 0 deletions
diff --git a/xmake/modules/devel/git/branch.lua b/xmake/modules/devel/git/branch.lua
new file mode 100644
index 000000000..391ffd27e
--- /dev/null
+++ b/xmake/modules/devel/git/branch.lua
@@ -0,0 +1,52 @@
+--!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 branch.lua
+--
+
+-- imports
+import("core.base.option")
+import("lib.detect.find_tool")
+
+-- get current branch
+--
+-- @param opt the argument options
+--
+-- @code
+--
+-- import("devel.git")
+--
+-- local branch = git.branch()
+-- local branch = git.branch({repodir = "/tmp/xmake"})
+--
+-- @endcode
+--
+function main(opt)
+ opt = opt or {}
+ local git = assert(find_tool("git"), "git not found!")
+ local argv = {"branch"}
+ if not option.get("verbose") then
+ table.insert(argv, "-q")
+ end
+ local branch = os.iorunv(git.program, argv, {curdir = opt.repodir})
+ if branch then
+ branch = branch:trim()
+ if #branch > 0 then
+ return branch
+ end
+ end
+end