←back to thread

848 points thefilmore | 2 comments | | HN request time: 0.441s | source
Show context
thrdbndndn ◴[] No.43970048[source]
Correct me if I'm wrong, IIRC the previous "master" branch is `mozilla-central`.

Now it has "main" and "autoland", what are they? Which one is the equivalent of mozilla-central before?

replies(1): >>43970194 #
chme ◴[] No.43970194[source]
Not a firefox dev, but pretty sure its 'main'

The "new" git default branch name is 'main' and 'autoland' existed before next to 'mozilla-central' and is the one where commits usually appear first.

replies(1): >>43970427 #
1. jamienicol ◴[] No.43970427[source]
I am a Firefox developer, and you're spot on. Previously there were separate hg repos for central, beta, release. I think ESRs too. And autoland. Now they're all branches in the same repo, and central is renamed main.

Commits land in autoland and get backed out if they cause test failures. That's merged to main ~twice per day when CI is happy

replies(1): >>43970612 #
2. thrdbndndn ◴[] No.43970612[source]
Thanks for the clarification!

I've mostly encountered these branches/repos when checking commits linked to Bugzilla tickets, and I don't recall seeing "autoland" show up too much in those cases.