在 Git 中,可以通过设置 init.defaultBranch
配置选项来更改默认分支的名称
git config --global init.defaultBranch main
这将把全局默认分支名称设置为 “main”。当你创建新的 Git 仓库时,它们将使用 “main” 作为默认分支。
注意:在某些情况下,你可能需要将 --global
标志替换为 --local
或 --system
,以便在特定仓库或系统范围内应用此设置。例如,要将特定仓库的默认分支设置为 “main”,请在该仓库的根目录中运行以下命令:
git config --local init.defaultBranch main
这将仅影响当前仓库的默认分支名称。