Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Revision control and hosting comparison [closed]

I know that this question has been asked many times before in different guises and that I'm an ignorant n00b for thinking that I could add anything to the discussion. However, I'm interested not only in the version control system but also in its hosting options, compatible applications, and Windows compatibility.

If you don't have experience with more than one system, tell me what you use: version control system, code hosting, implementation (vc program), and OS.

I only have a few constraints:

  • I'd like to use a program that works well in both Linux and Windows. That means at least an equivalent command-line interface.
  • The implementations must be stable enough that I don't have to constantly re-compile on Linux and I never have to compile on Windows.
  • The version control must have at least one compatible free code hosting site (for open-source projects). If the hosting site itself is open-source, that would be ideal.
  • The version control standard must be open-source.

Sorry if I sound like a demanding brat asking for other people to make his decisions. I just want to learn from your experience so that I don't have to switch version-control systems repeatedly.

What major, Windows-compatible version control system would you recommend?

like image 340
Evan Kroske Avatar asked Dec 23 '22 09:12

Evan Kroske


1 Answers

First off, you might benefit from this recently published paper in the ACM Queue:
Making Sense of Revision-control Systems

I'll outline the two which I know the most about, others can tell you about the rest.

SVN:

  • Probably the best windows support out of all modern open source SCM's
  • Simple work flow similar to most standard SCM's
  • Many free open source hosts: http://code.google.com/projecthosting, http://unfuddle.com/about/tour/plans
  • http://www.svnhostingcomparison.com/
  • Many good clients. Tortis SVN, Subclipse, straight cli and many more.

GIT:

  • Extremely powerful SCM
  • Full source history in every checkout of the source tree.
  • Not the greatest windows support, but making great strides of improvement currently. http://code.google.com/p/msysgit/
  • Many free hosts: github, repo.or.cz
  • The current "cool kid" on the bock.

It sounds like you might just want to go with svn. It sounds like you just want to have stuff under version control, this way you won't have to worry about the learning curve associated with GIT.

Others to look at, but I didn't detail because of general lack of windows tools: Mercurial, Darcs, Bazaar. If you do check out mercurial you can use bitbucket and google code as a host.

like image 51
Brian Gianforcaro Avatar answered Dec 30 '22 22:12

Brian Gianforcaro