Reputation: 1822
We're bringing some of our web development in-house and one of my goals is to get it under version control. Right now I'm looking mostly towards HG and Git, respectively. Bazaar was knocked out of the running due to some flaky behavior.
The biggest points on my mind are:
I've got a few questions as well:
Upvotes: 2
Views: 347
Reputation: 9003
This is going to be a very opinionated answer section. I will still say that Hg has better windows support. I do prefer Git from a back-end and technical standpoint, but the frontends are still quite lacking. There is no API support and the only way to interact with it is via parsing console io. Really, it all comes down to personal preference. It doesn't quite matter what you choose, they will both suite you wonderfully compared to traditional methods.
Now, as for your questions
hg serve
and an http server will spawn for you viewing pleasure. This is completely doable with Git, but will require some configuration.Again, I simply suggest you do your homework. Both will work great. It's just a matter of personal preference and supported applications at this point.
Upvotes: 7