Github預設分支由master變更為main

ice_q發表於2021-07-28

Github預設分支由master變更為main.

Overview

tools.ietf.org/id/draft-kn… 影響, 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.

或者使用 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 <old-branch> <new-branch> -t <token> -r <user/repo>

複製程式碼

References

相關文章