To rename your Git master branch to main, you must do the following steps:
-
Navigate to your repository in the command line and issue the following commands: -
git branch -m master main-git push -u origin main -
Change your default branch on GitHub by going to your GitHub repository in your browser, and navigate to
Settings > Branchesand click on the dropdown and switch frommastertomainand clickUpdate(this will only show if you have two or more branches). Themainbranch is now your default branch. -
Update the tracking of the branch from your command line with the following command: -
git branch -u origin/main main