Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
January 9, 2021 03:16 pm GMT

Get Git and Github/GitLab in sync on default branch naming (master | main)

Last July, some of the git hosting platforms (GitHub, GitLab, and Bitbucket) changed the default branch name to main (from master). However, Git did not!

It's disappointing that everyone didn't act in unison to make the same change, because it has created some work for users. The focus of this post is on how this impacts maintenance of public repositories, and nothing else. I hate meddling with configuration, so that is where my disappointment lies!

I managed to avoid this altogether until now. It was only creating a new repo on GitHub this week that it surfaced for me. So, it's time to set things up to avoid this in future.

How can I fix this for new repos?

You can change the default name in Git, or change the default name on your git hosting provider.

It's probably easier to do it in Git, especially if you use more than one provider.

Change default branch name in Git

Git 2.28 (released in July 2020) introduced init.defaultBranch configratuion option. Check you have the 2.28 or later installed to avail of this.

git --version
Enter fullscreen mode Exit fullscreen mode

If you don't, download and install the latest.

Now, you can update the default branch name.

 git config --global init.defaultBranch main
Enter fullscreen mode Exit fullscreen mode

Change default branch name in GitHub

See GitHub Docs - Managing the default branch name for your repositories

And what about exisiting repos?

For existing repos, you can still push and pull without needing to rename the default branch. So, option 1 is to do nothing!

Option 2 is to rename. You need to consider what other people are doing before you go ahead, it will probably annoy people if they have existing PRs/clones and you don't let them know!

Shortest way (?)

The shortest set of steps is probably:

  1. Disable Default Branch and Protected Branches settings if applicable.
  2. Go to the master branch.
  3. Fetch latest (if in doubt).
  4. Rename the branch to main. This preserves history.
  5. Push changes and update upstream remote link (git push -u origin main).

    git checkout mastergit fetchgit branch -m master maingit push -u origin main
  6. Go to the Settings on GitHub (Settings > Branches > Default Branch)or GitLab (Settings > Repository > Default Branch) and change the default branch to main.

  7. Delete remote master branch.

    git push origin --delete master

Don't forget to update related CI/CD configurations

If you do change exisiting repos, do not forget your build chain. You will need to update their configuration to be in step with your repo. If they depend on an "origin/master" branch, they will complain eventually, to someone!

Netlify

If you deploy to Netlify using a git repo, you'll need to tell Netlify you've updated the default branch (what they call the production branch).

  1. Log in and find the site
  2. Go to Deploys
  3. Click Deploy Settings
  4. Under Deploy contexts click Edit settings
  5. Change the name of the production branch and click Save

Note: There may still be a "branch deploy" for master after you click save. You can remove this by just editing the settings one more time and removing master from the "Let me add individual branches" section.

GitHub Actions & GitLab CI/CD

A simple find-and-replace of "master" in your configuration files should be sufficient.

Conclusion

I chose to update my Git configuration. Going forward, I will use the default of main for new projects. I will leave my existing projects as they are.


Original Link: https://dev.to/robole/correct-the-initial-branch-name-between-git-and-github-gitlab-master-main-epa

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To