无法在命令行上将 git 默认分支更改为 main



我在几个网站上读到,可以使用git config --global init.defaultBranch main将默认分支(从master(更改为main。但它对我不起作用。这是来自我的终端(我的操作系统是ubuntu(:

$ git config --list
user.email=*************
user.name=********
credential.helper=store
core.editor=nano
$ git config --global init.defaultBranch main
$ git config --list
user.email=*************
user.name=*************
credential.helper=store
core.editor=nano
init.defaultbranch=main
$ mkdir testrepo
$ cd testrepo
$ git init
Initialized empty Git repository in /home/user/Desktop/testrepo/.git/
$ git status
On branch master
No commits yet
nothing to commit (create/copy files and use "git add" to track)

选项init.defaultBranch是在Git 2.28版本中引入的。您必须运行不支持此选项的旧版本。

相关内容

  • 没有找到相关文章

最新更新