Geen omschrijving

The Jared Wilcurt 4f1df94c5d Add note about GH Pages redeploy 4 jaren geleden
CODE_OF_CONDUCT.md 8697e48ef2 Guidance for changing the default branch name for GitHub repositories 4 jaren geleden
CONTRIBUTING.md 8697e48ef2 Guidance for changing the default branch name for GitHub repositories 4 jaren geleden
LICENSE 8697e48ef2 Guidance for changing the default branch name for GitHub repositories 4 jaren geleden
README.md 4f1df94c5d Add note about GH Pages redeploy 4 jaren geleden
local-config-prompt.png 34bac6ae0a Update details on rename for existing default 4 jaren geleden
rename-default-branch-dialog.png 34bac6ae0a Update details on rename for existing default 4 jaren geleden

README.md

Renaming the default branch from master

Many communities, both on GitHub and in the wider Git community, are considering renaming the default branch name of their repository from master. GitHub is gradually renaming the default branch of our own repositories from master to main. We're committed to making the renaming process as seamless as possible for project maintainers and all of their contributors. This repository is our up-to-date guidance on how and when to rename your default branch.

We're not the only organization in the Git ecosystem making these changes: there are upcoming changes in the Git project (statement, code change), as well as coordinated changes from multiple vendors.

We're making changes to GitHub in a few phases, designed to cause as little disruption to existing projects as possible.

What's already changed

  • We've updated GitHub.com to redirect links that contain the deleted branch name such as master to the corresponding link in the repository's new default branch.
  • We've updated GitHub Pages to build and deploy from any branch.
    • Note: publishing to the special gh-pages branch will still work the same as it always has, but now you can choose any other branch in your repository as the publishing source.
    • Note: If a branch used for GitHub Pages is renamed, it will not automatically redeploy your site. You will need to edit a file on that branch after the rename to trigger a new build and deploy. Until then your website will direct to a 404 page.
  • We've added user, organization, and enterprise settings to set the default branch name for all newly-created repositories on GitHub.com. We're adding the same settings in the 3.0 release of GitHub Enterprise Server.
    • These settings cover repositories created through GitHub.com and the GitHub API. Git 2.28 added a similar setting to control the default branch used when you run git init on the command line. Learn more about the new init.defaultBranch setting in the Git 2.28 blog post.
    • GitHub Desktop has introduced a default branch setting for new repositories.
  • We've made it easier to rename an existing branch

New repositories use main as the default branch name

The default branch name for new repositories created on GitHub is now main. To set a different default:

  1. For users, on the https://github.com/settings/repositories page
  2. For organization owners, on the https://github.com/organizations/YOUR-ORGANIZATION/settings/repository-defaults page
  3. For enterprise administrators, on the https://github.com/enterprises/YOUR-ENTERPRISE/settings/member_privileges page

Users, organizations, and enterprises that previously selected a default branch for new repositories are not impacted by this change. Existing repositories are also not impacted by this change.

Why main?

main is the most popular replacement for master that we're seeing across GitHub. We like it because it's short, it keeps your muscle memory intact, and it translates well across most languages. We're using main for our newly-created repositories and for the repositories we're moving now, like dependabot-core.

Renaming existing branches

You can now rename any branch, including the default branch, from the web.

Rename default branch dialog

Renaming a branch will:

  • Re-target any open pull requests
  • Update any draft releases based on the branch
  • Move any branch protection rules that explicitly reference the old name
  • Update the branch used to build GitHub Pages, if applicable
  • Show a notice to repository contributors, maintainers, and admins on the repository homepage with instructions to update local copies of the repository
  • Show a notice to contributors who git push to the old branch
  • Redirect web requests for the old branch name to the new branch name
  • Return a "Moved Permanently" response in API requests for the old branch name

Learn more about renaming a branch.