I'm looking at starting to maintain some of my personal work in a VCS. Alas, I have only used a windows-only one, and that doesn't help much on my Linux laptop. With that said, does anyone have any particular favorites?
Mercurial, Git, CVS, SVN, and Bazaar all look like distinct possibilities, but finding good compare/contrast info is a bit trickier.
4 replies to this topic
#1
Posted 30 March 2011 - 03:50 PM
|
|
|
#2
Posted 30 March 2011 - 06:45 PM
I've used several, but my favorite is Mercurial. I researched it back when I actually needed some VCS, and I found it the most appealing one.
#3
Posted 30 March 2011 - 06:57 PM
I at work and at home I use GIT. There are some great client tools for it if and it is fairly intuitive. Works with both linux and windows as well. My main machine at work is win7 our server is Centos, and my laptop is Ubuntu! Works between all of them. Git and Mercurial are moth distributed as u probably know..... but I found that GIT can easily mimic a server client setup when using something like Github or a personal git server repo. Just depends on how u set it up. If u dont mind sharing ur code then github has a free opensource storage so u can have a centralized code reop or pay a little monthly fee and get a secured closed source repo!
#4
Posted 31 March 2011 - 01:18 AM
I've a bit of experience with a few so I can contribute some review.
Git would be my first choice, it is Unix-centric but can run on Windows with a bit reduced speed due to its heavy reliance on scripting languages such as Perl.
From what I can read and tell these would be the main characterists:
Mercurial is Python and requires an interpreter (or possible TortoiseHg as an alternative), with a clean setup and emphasis on simple remote branching and serving I believe, although I can not find a main page on its features.
Git would be my first choice, it is Unix-centric but can run on Windows with a bit reduced speed due to its heavy reliance on scripting languages such as Perl.
From what I can read and tell these would be the main characterists:
- Strong support for non-linear development work(Emphasis on rapid branching, merging, development branches)
- Repositories can be published via HTTP, FTP, rsync, or a Git protocol over either a plain socket or ssh.
- Distributed development (Distributed revision control system unlike CVS or SVN)
- Efficient handling of large source projects
- Well defined model for incomplete merge strategies
- Communication with SVN if required, including offline communications with itself
- Supports tracking and versioning of all metadata such as directory trees and renames.
- Can store binary deltas with an algorithm nearing speed of textual deltas.
- Atomic committing, either all is committed successfully or nothing is.
- Consistent data handling for all file formats, binary or textual in compression styles.
- Hackability
- Has a dedicated Apache module which can aid in stability and interoperability, leveraging HTTP compression and authentication that Apache can provide..
Mercurial is Python and requires an interpreter (or possible TortoiseHg as an alternative), with a clean setup and emphasis on simple remote branching and serving I believe, although I can not find a main page on its features.
Be sure to read the updated FAQ! || Health is achieved through the same 10,000 steps.
If a suggested code/method fails, informing us is less important than telling us why or what errors occurred.
If a suggested code/method fails, informing us is less important than telling us why or what errors occurred.
#5
Posted 31 March 2011 - 06:23 PM
Thanks, Alexander. I've got a feeling I'd choose Mercurial over Bazaar, but the two sound similar.
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users


Sign In
Create Account

Back to top










