gpt4 book ai didi

python - 如何为 GitPython 设置默认分支

转载 作者:行者123 更新时间:2023-12-05 02:48:28 28 4
gpt4 key购买 nike

使用 GitPython,我可以使用以下内容创建一个新的 repo:

from git.repo.base import Repo

Repo.init('/tmp/some-repo/')

repo 使用默认分支 master 创建。

如何修改这个默认分支?

更新:正如下面答案中所建议的,我尝试使用 Repo.init('/tmp/some-repo', initial_branch="main"),然而它呈现这个异常:

Traceback (most recent call last):
File "/app/checker/tests.py", line 280, in test_alternative_compare_branch
comp_repo_main = Repo.init(
File "/usr/local/lib/python3.9/site-packages/git/repo/base.py", line 937, in init
git.init(**kwargs)
File "/usr/local/lib/python3.9/site-packages/git/cmd.py", line 542, in <lambda>
return lambda *args, **kwargs: self._call_process(name, *args, **kwargs)
File "/usr/local/lib/python3.9/site-packages/git/cmd.py", line 1005, in _call_process
return self.execute(call, **exec_kwargs)
File "/usr/local/lib/python3.9/site-packages/git/cmd.py", line 822, in execute
raise GitCommandError(command, status, stderr_value, stdout_value)
git.exc.GitCommandError: Cmd('git') failed due to: exit code(129)
cmdline: git init --initial-branch=main
stderr: 'error: unknown option `initial-branch=main'

在 git 文档中,它指出设置初始分支的命令是 --initial-branch ( https://git-scm.com/docs/git-init/2.28.0#Documentation/git-init.txt---initial-branchltbranch-namegt )。

从错误来看,我认为 GitPython 的附加 kwargs 特性不包括 -- 前缀。

最佳答案

According to the docs , init 采用与 git init 相同的参数作为关键字参数。您必须将 - 转换为 _

from git import Repo

Repo.init('/tmp/some-repo/', initial_branch='main')

更新

initial-branch was added very recently在 v2.28.0 中。您需要升级 Git 才能使用它。

如果不能,请使用 branch.rename(new_name) 手动更改分支名称。不幸的是,在第一次提交之后之前,您不能执行此操作,此时还没有真正存在的分支。这是 Git 的限制,也是他们添加 initial-branchinit.defaultBranch config option 的原因。 .

关于python - 如何为 GitPython 设置默认分支,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64470052/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com