They originally picked it because it was more windows friendly than git.
Phoronix: Canonical's Bazaar Still In Stagnant State
With Canonical allocating its resources elsewhere, the Bazaar revision control system has fallen stagnant...
http://www.phoronix.com/vr.php?view=MTMyNzc
They originally picked it because it was more windows friendly than git.
If the system is finished and working why any more commits? If it's not broken don't fix it.
Michael is now officially on anti-Canonical vendetta.
When you have Git and Mercurial, Bazaar is simply redundant.
On related topic, Kiln (from Fog Creek / Stack Overflow guys) announced support for parallel Hg and Git repos. So every repo can be accessed with either Hg or Git clients. Sounds to me like a migration path from Hg to Git for their users.
http://www.joelonsoftware.com/items/2013/03/11.html
If it ain't broke, don't fix it.
In this case it seems to be just "Don't fix it!"
https://bugs.launchpad.net/bzr
2081 open bugs
212 high importance bugs
Bazaar has some important features:
- Serverless operation. All you need to make a public repository is an SSH or FTP account. (Hg apparently also has this.)
- Centralized mode and bound branches. You can still have a centralized repository like in SVN and work in branches on major features, which is actually the most useful model to the vast majority of projects.
- Commands which are understandable to the average human. Git requires several aliases to approach sensible behavior, encourages partial commits of uncompiled, untested code, and silently commits merges if there are no text conflicts (great recipe for breaking the build). Trying to learn Git commands from the manual is an impossible task. For example, "git push" is describes as "Update remote refs along with associated objects" - what the f*** is this supposed to mean???
Bazaar is IMO the best tool to use in environments such as scientific programming, where the collaborators are not willing to spend a week learning how to use Git without accidentally destroying their work, and you might have no control over your server.