text
stringlengths
0
828
:param \*args: git 的附加参数。
:returns: 错误代码和调用结果。
:rtype: int
:rtype: string git 返回的信息,若执行出错则为错误信息。
""""""
returncode = 0
output = None
try:
# 2015-10-10 zrong
# 在 windows 上使用 universal_newlines=True
# 会导致输出信息为中文时出现编码错误
# 原因是 check_out 中读入 stdout 内容的 read 方法没有传递编码参数
# 因此不再使用 universal_newlines=True 这个参数
# 而改用直接返回 bytes,然后对其解码
arg_list = get_args(path, *args)
if show_command:
print('git call args:', arg_list)
output = subprocess.check_output(arg_list,
stderr=subprocess.STDOUT)
output = output.decode(encoding=encoding)
except subprocess.CalledProcessError as err:
returncode = err.returncode
output = err.output.decode(encoding=encoding)
return returncode, output"
904,"def get_args(path, *args, work_tree=True, bare=False):
""""""获取可被 subprogress 执行的 git 参数 list。
:param str path: git 仓库文件夹路径。
:param \*args: git 的附加参数。
:param bare: 是否视为 bare 库
""""""
base = [ 'git' ]
if path:
base.append('-C')
base.append(path)
if bare:
base.append('--bare')
base.append(""--git-dir=""+path)
else:
base.append(""--git-dir=""+os.path.join(path, "".git""))
if work_tree:
base.append(""--work-tree=""+path)
for arg in args:
base.append(arg)
return base"
905,"def get_branches(path):
""""""获取当前所有分支名称的列表。
:param str path: git 仓库文件夹路径。
:return: 分支名称列表。当前分支位于列表第一项。
:rtype: list
""""""
code, output = call(path, 'branch', '--list')
if code > 0:
return None
branches = output.split('\n')
newbr = [None]
for br in branches:
if br:
if br[0] == '*':
newbr[0] = br[2:]
else:
newbr.append(br[2:])
return newbr"
906,"def clone(giturl, gitpath):
""""""clone 一个 git 库。
:param str giturl: git 仓库的 url 地址。
:param str gitpath: git 仓库保存路径。
""""""
gitArgs = ['git', 'clone', giturl, gitpath]
slog.info(' '.join(gitArgs))
return subprocess.call(gitArgs)"
907,"def get_hash(path, cut=0):
""""""获取可被 git 的 HEAD 的 sha1 值。
:param str path: git 仓库文件夹路径。
:param int cut: 包含的 sha1 值的长度。0代表不剪切。
:returns: 剪切过的 sha1 的值。
:rtype: str
""""""
code, output = call(path, 'rev-parse', 'HEAD')
if code > 0:
return None
# maybe the string is with a linebreak.
sha1 = output.strip()
if cut > 0:
sha1 = sha1[:7]
return sha1"
908,"def update_submodules(path, init=True, update=True):
""""""更新子模块。
:param str path: git 仓库文件夹路径。
:param bool init: 是否初始化子模块。
:param bool update: 是否更新子模块。