Github默认分支由master变更为main

Github默认分支由master变更为main.

Overview

受 https://tools.ietf.org/id/draft-knodel-terminology-00.html 影响, github 于 2020年10月1日后, 修改默认分支为 main, 详见The default branch for newly-created repositories is now main.

Steps

master 重命名为 main

git branch -m master main 

同步至远端

git push -u origin main

修改 Github 仓库默认分支

浏览器打开 Github 仓库, 点击 Settings -> Branches 修改默认分支为 main.

image

或者使用 GitHub REST API.

curl \
  -X PATCH \
  -H "Accept: application/vnd.github.v3+json" \
  -H "Authorization: token {access_token}" \
  https://api.github.com/repos/{owner}/{repo} \
  -d '{"default_branch":"main"}'

删除旧的 master 分支

git push --delete origin master

修改本地 git init 默认分支

git config --global init.defaultBranch main

使用 github-renaming

使用 github-renaming 可以更简单修改默认分支.

gem install github-renaming
github-renaming default-branch   -t  -r 

References

  • https://docs.github.com/cn/github/administering-a-repository/managing-branches-in-your-repository/changing-the-default-branch
  • https://github.com/github/renaming
  • https://www.hanselman.com/blog/easily-rename-your-git-default-branch-from-master-to-main
  • https://docs.github.com/cn/rest/reference/repos
  • https://docs.github.com/en/rest/reference/git#create-a-reference

你可能感兴趣的:(Github默认分支由master变更为main)