ranzy
ranzy

Reputation: 179

git or svn for web server?

What's better to put on a web server? I'm new to Revision Control so I wouldn't know. Also this project exists already but I would like to implement some revision control on it and put it on a web server because there are multiple people that work on the code and multiple computers. Thanks!

Upvotes: 2

Views: 209

Answers (4)

Mark O'Connor
Mark O'Connor

Reputation: 77981

Use subversion if you're new to version control. Lots of tutorials available to help you setup

Upvotes: 0

Vasilis Lourdas
Vasilis Lourdas

Reputation: 1179

Absolutely Git. If you read about its architecture and the way it works (through on-line books, there are several), you'll understand that it's ages ahead of subversion or cvs (yikes). Plus, it's super fast.

Upvotes: 2

tamasd
tamasd

Reputation: 5913

Use git. It is not harder to learn than SVN if you do not have any version control knowledge. It has some really awesome helper tools and built-in commands.

There are multiple ways to make your workflow with git. There are really good blogposts on the Internet if you search for git workflow.

Upvotes: 3

Kevin Sylvestre
Kevin Sylvestre

Reputation: 38032

The trend these days is GIT over SVN. If you are looking for a hosted service, check out http://github.com/.

Upvotes: 2

Related Questions