介尘部落

文学|音乐|休闲娱乐|计算机技术|地球科学|社会学——知识成就命运


如何将master迁移到main默认分支?

将 Git 仓库中的默认分支从 master 迁移到 main 是一个相对简单的过程,但需要注意一些步骤和最佳实践。以下是迁移的一般步骤:

1. 创建新的 main 分支

首先,确保你的本地仓库是基于最新的 master 分支。打开命令行或终端,进入你的 Git 仓库:

git checkout master  # 确保当前在 master 分支
git pull origin master --tags  # 拉取最新的 master 分支和标签
git checkout -b main  # 创建并切换到新的 main 分支

2. 将 main 分支推送到远程仓库

现在,将新创建的 main 分支推送到远程仓库:

git push -u origin main  # 将本地的 main 分支推送到远程仓库

3. 更改默认分支

在 GitHub 或其他托管服务中,将默认分支从 master 更改为 main

  • GitHub:
  1. 进入仓库页面,点击 Settings
  2. Branches 部分找到 Default branch 设置。
  3. 选择 main 作为新的默认分支。

4. 删除旧的 master 分支(可选)

如果你决定不再使用 master 分支,可以选择删除它:

阅读全文
公众号-介尘阅读时光
赞赏支持

0 Responses to “如何将master迁移到main默认分支?”

Leave a Reply

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

(required)

(required)

×