[gmx-developers] Renaming git "master" to "main"

Eric Irrgang ericirrgang at gmail.com
Fri Mar 18 10:14:03 CET 2022


For most people, I think it is as simple as `git branch -d master; git fetch; git checkout main`. But for core developers and for external packagers, this is pretty short notice.

It seems like it would be good to give at least a few days of notice, or to keep both `master` and `main` for some transition period. (I don't know how much GitLab does automatically for a branch name change. Maybe the savings in branch-name-based access control updates is significant?)

An alternative for a good time to make the switch would be when forking release-2023.

But, personally, now is as good a time as any, and I don't mind chasing down a few broken links next week.

> On Mar 18, 2022, at 11:43 AM, Erik Lindahl <erik.lindahl at gmail.com> wrote:
> 
> Hi devs,
> 
> We have considered this in the past, but since we were then in a very active phase of development we postponed it - but this might be a good period to do it when we're not dashing against any particular hard deadline with tons of development.
> 
> Several large open source projects have switched from using master/slave terminology due to the historical origin of the names, and to move towards a more inclusive culture. One can of course argue it's merely words, but I prefer to see it the other way - precisely because it's just words and a very minor inconvenience for us, I would like us to avoid relying on words that strongly remind others of oppression and racism.
> 
> Most of these things can be handled through MRs as we go, but renaming our master branch will require one manual step for developers tracking the branch. I've pasted the required commands below. 
> 
> My *suggestion* would be that we do this e.g. this Sunday noon Swedish time (mostly because it should only be 30 seconds of resync), but we can of course also postpone it if people prefer to - just let us know in that case.
> 
> Cheers,
> 
> Erik
> 
> 
> Local actions required when master changes to main:
> 
> # Switch to the "master" branch:
> $ git checkout master
> 
> # Rename it to "main":
> $ git branch -m master main
> 
> # Get the latest commits (and branches!) from the remote:
> $ git fetch
> 
> # Remove the existing tracking connection with "origin/master":
> $ git branch --unset-upstream
> 
> # Create a new tracking connection with the new "origin/main" branch:
> $ git branch -u origin/main
> 
> 
> -- 
> Erik Lindahl <erik.lindahl at dbb.su.se>
> Professor of Biophysics, Dept. Biochemistry & Biophysics, Stockholm University
> Science for Life Laboratory, Box 1031, 17121 Solna, Sweden
> 
> Note: I frequently do email outside office hours because it is a convenient time for me to write, but please do not interpret that as an expectation for you to respond outside your work hours.
> -- 
> Gromacs Developers mailing list
> 
> * Please search the archive at http://www.gromacs.org/Support/Mailing_Lists/GMX-developers_List before posting!
> 
> * Can't post? Read http://www.gromacs.org/Support/Mailing_Lists
> 
> * For (un)subscribe requests visit
> https://maillist.sys.kth.se/mailman/listinfo/gromacs.org_gmx-developers or send a mail to gmx-developers-request at gromacs.org.



More information about the gromacs.org_gmx-developers mailing list