I'm an absolute newbie when it comes down to subversion and SVN (don't even know the difference). As I'm developing a pretty big website I'm looking for a way to take care of different versions (PHP, CSS, JavaScript files and MySQL database) and to make backups. I would like to use a web based system so I have an external backup. I'm not working in a team on this project, so features around this are not necessary. I'm working on Windows Vista. At this moment I zip my files and and upload them to box.net. But I'm sure there are better ways to accomplish this. Any suggestions?
|
|
Subversion (aka SVN) and http://tortoisesvn.net/
You aren't required to even have the subversion repository off of your own machine - though backing it up is more important since you still depend on the safety of your own hard drive. |
|||||
|
|
I recommend git. Some people say it's difficult for newbies, but I don't think that's true at all. I got up to speed with it in no time by just following the official tutorial, and I'm really a beginner when it comes to version control. |
|||||||||
|
|
I use Subversion myself, as previously mentioned by Topbit, use http://tortoisesvn.net/ so you can commit / update without having to go to a command prompt. There are plenty of subversion hosts, I'd recommend http://www.unfuddle.com. Which is free for one project and comes with other cool things to help with project management. |
|||||
|
|
I recommend svn as well, partially on the strength of its documentation. http://svnbook.red-bean.com/en/1.5/index.html You can use it without knowing anything at all about branches, which can't be said for git. Subversion and svn are different names for the same thing. The full name is subversion, but the command line program is svn, and it's a common abbreviation. It's possible that your web host provides a subversion server -- dreamhost does. |
|||
|
|
|
I've heard good things about Beanstalk, but haven't had a chance to use it myself. |
|||
|
|
|
Pay for a github or bitbucket account and use mercurial or git. Mercurial might work better on windows and bitbucket does allow 1 private repo on the free account I think. |
|||
|
|
|
I like Mercurial for tasks like this. Advantages:
(Possible) Disadvantages:
|
|||
|
|
|
Just to give you some resources, here's a micro-overview of Version Control Systems (VCS): The "traditional" VCS has a server that holds the repository (change history). In this scheme, the client (you) gets revisions of files from that repository and "checks in" (ie uploads) changes to the server. Examples of this type of VCS are:
Then there are Distributed Version Control Systems (DVCS), which are a fairly recent development. Here, there is no server. Every client (such as you) has a copy of the repository. People make copies of a repository, make some changes, then merge those changes with other repos. Examples of these are:
There are many others as well - Darcs, Monotone, Plastic SCM, etc. etc. Some links: |
|||
|
|
|
Like most of the others, I'd recommend using SVN - just ignore features like "Branching" for now. Use TortoiseSVN (Windows) for starters. Take a look at SlikSVN, which is a host-service for SVN repositories (for your "external" requirements) - if you don't have you own server, SlikSVN is great to get started (at a reasonable price). |
|||
|
|
|
Ditto @Kirschstein. We use http://unfuddle.com. Super-easy to get started and if you use TortoiseSVN as a Windows Explorer plug in, it couldn't be simpler. |
|||
|
|
|
For backup use external hard drive. For all my projects (web/desktop development) I use SVN. |
|||
|
Backups are very different from Source Control. For introduction to (advanced) source control, read following "classic" article: http://oreilly.com/catalog/practicalperforce/chapter/ch07.pdf |
|||
|
|