show/hide this revision's text 2 I made a mistakeL bzr can actually log differennce between two branches

It seems to be that the three big open source players are bzr, git and hg (I discard non open source ones because I have never used them, but that can be a valid option, specially on windows).

As some mentioned, git does work natively (e.g. without cygwin) on windows. Git is the most powerful, and has a lot of traction. It will (it already is) be a key player, because it is used by several key open source projects (linux, Xorg, a lot of freedesktop stuff, RoR, and more to come for sure).

bzr is the one I know the most, and works reasonably well. The basic command set are the same as for subversion (commit, log, blame, etc....). Bzr seems more solid on windows thanks to unicode support which seems more integrated in bzr (every path is treated as unicode internally). I use bzr all the time to share between my main machine on linux and windows VM. Also, bzr has support for many network protocols (dumb http, ftp, sftp, etc...).

Hg is implemented in python, as bzr, meaning it is practically more portable than git (which is C + shell scripts). Hg looks similar to bzr, but has more corner cases and a bit more fragile wrt errors (not corruption or anything, but for example, by default, hg needs some env variables set on mac os X, things like that).

Concerning the branch model: hg and git follow the model of many branches in one repository, one branch at a time. By that, I mean that in a repository, at any moment, you have only one working tree corresponding to one branch. This means that switching between branches is easy and fast, and sharing repository data is easier.

bzr follows a different model than hg and git, that is you have one directory per branch (if you have one branch b1 and one branch b2, the two branches will be two different directories, a bit like when you checkout from svn). It means it is easier to use external tools (one working tree per branch), but IMHO, it is less powerful than hg/git model, because at least in git case, you can do very advanced stuff between branches(like , and I think part of it is because of having the same repository between the two branches(like logging only the commits from branch1 which are not in branch2)branch2; bzr can do it too, but if each branch has its own repository, I guess this can have an impact on the performances).

Another difference is that in bzr, the mainline is considered special. You can change which branch is the mainline at any moment (it is not less distributed than git or hg in that regard), but it has consequences on how the log is displayed, and in the revision number at the UI level. Besides revid which are unique for any revision, bzr mostly use revno, which are simple integer like for subversion. Of course, those numbers are not distributed (if you change your branch, the revno change), but that means it looks easier.

I am a big user of bzr, I have used it for more than two years for every project of mine. But more recently, I have been using git (for svn projects through git-svn), and I like it more and more. The branch model of git is more powerful IMHO. I find the bzr revno confusing, because when you merge branches, your numbers do not really make sense anymore, you have 172 coming after 174.1 or things like that. Also, bzr is slow compared to hg, and painfully slow compared to git (at least on linux). We are talking about order of magnitude. The two areas where bzr is really slow are big histories (ten of thousand of commits) and network; bzr scales ok for big working trees. OTOH, bzr has launchpad for bug tracking, and although launchpad has its (many) warts, it is getting better and better; you don't have much free options for git or hg if you want bug tracking. Also, I find bzr the one which has the best error system: when it fails, you almost always know why; git error message can be cryptic.

The GUI tools on windows are pretty bad for all of them. TortoiseHG is a joke.

To sum up:

  • git: fastest, most powerful, lot of developers/users behind it
  • bzr: easy to use, more support for centralized development, maybe less confusing for users used to svn/cvs, slow, good support on windows.
  • hg: a bit of the middle between git and bzr.
  • all suck at GUI tools on windows
show/hide this revision's text 1

It seems to be that the three big open source players are bzr, git and hg (I discard non open source ones because I have never used them, but that can be a valid option, specially on windows).

As some mentioned, git does work natively (e.g. without cygwin) on windows. Git is the most powerful, and has a lot of traction. It will (it already is) be a key player, because it is used by several key open source projects (linux, Xorg, a lot of freedesktop stuff, RoR, and more to come for sure).

bzr is the one I know the most, and works reasonably well. The basic command set are the same as for subversion (commit, log, blame, etc....). Bzr seems more solid on windows thanks to unicode support which seems more integrated in bzr (every path is treated as unicode internally). I use bzr all the time to share between my main machine on linux and windows VM. Also, bzr has support for many network protocols (dumb http, ftp, sftp, etc...).

Hg is implemented in python, as bzr, meaning it is practically more portable than git (which is C + shell scripts). Hg looks similar to bzr, but has more corner cases and a bit more fragile wrt errors (not corruption or anything, but for example, by default, hg needs some env variables set on mac os X, things like that).

Concerning the branch model: hg and git follow the model of many branches in one repository, one branch at a time. By that, I mean that in a repository, at any moment, you have only one working tree corresponding to one branch. This means that switching between branches is easy and fast, and sharing repository data is easier.

bzr follows a different model than hg and git, that is you have one directory per branch (if you have one branch b1 and one branch b2, the two branches will be two different directories, a bit like when you checkout from svn). It means it is easier to use external tools (one working tree per branch), but IMHO, it is less powerful than hg/git model, because at least in git case, you can do very advanced stuff between branches (like logging only the commits from branch1 which are not in branch2).

Another difference is that in bzr, the mainline is considered special. You can change which branch is the mainline at any moment (it is not less distributed than git or hg in that regard), but it has consequences on how the log is displayed, and in the revision number at the UI level. Besides revid which are unique for any revision, bzr mostly use revno, which are simple integer like for subversion. Of course, those numbers are not distributed (if you change your branch, the revno change), but that means it looks easier.

I am a big user of bzr, I have used it for more than two years for every project of mine. But more recently, I have been using git (for svn projects through git-svn), and I like it more and more. The branch model of git is more powerful IMHO. I find the bzr revno confusing, because when you merge branches, your numbers do not really make sense anymore, you have 172 coming after 174.1 or things like that. Also, bzr is slow compared to hg, and painfully slow compared to git (at least on linux). We are talking about order of magnitude. The two areas where bzr is really slow are big histories (ten of thousand of commits) and network; bzr scales ok for big working trees. OTOH, bzr has launchpad for bug tracking, and although launchpad has its (many) warts, it is getting better and better; you don't have much free options for git or hg if you want bug tracking. Also, I find bzr the one which has the best error system: when it fails, you almost always know why; git error message can be cryptic.

The GUI tools on windows are pretty bad for all of them. TortoiseHG is a joke.

To sum up:

  • git: fastest, most powerful, lot of developers/users behind it
  • bzr: easy to use, more support for centralized development, maybe less confusing for users used to svn/cvs, slow, good support on windows.
  • hg: a bit of the middle between git and bzr.
  • all suck at GUI tools on windows