vote up 93 vote down star
14

I am trying to debate the point that version control is important for either one or two developers.

More specifically, I work in a department in which there are typically two PHP developers, using a shared framework. He argues that there is no value added in us having Subversion installed on our development system, whereas I argue that it is nice to occasionally be able to roll back to see previous code, especially when there are unexplainable errors occurring that are hard to pin-point in some of the classes.

I think Subversion offers the easiest way to create and track changes, for various reasons, including debugging. Would Subversion save any time?

flag
show 1 more comment

42 Answers

prev 1 2
vote up 13 vote down

Version control is only necessary where the number of programmers is > 0.

Use whatever system works and you're comfortable with but if you do development then you need version control (ideally set up in such a way that the source is on at least two machines even before you worry about backups).

Beyond that - look for a system that lets you commit early and commit often.

I'm almost - odd though it may sound - heading towards the view that every project, even a 1 dev one - should be looking at continuous integration i.e. having this system built and tested, from scratch, each time changes are committed or at least on a regular basis. Why? This a) gives you confidence that you have a buildable system in VCS and b) makes sure that you actually have a clean builds to test and deploy.

link|flag
show 2 more comments
vote up 1 vote down

Even with a small team, version control like Subversion is important, not just to be able to compare between revisions but also to roll back to a previously working version.

But all of this comes with added complexity. Instead of just saving the code, it has to be checked into the system. Every major version control system has tools to easily check code in, and many will integrate directly with IDEs. However, this doesn't change the fact that there are additional steps that must be taken when saving code files. There is overhead in placing code in a version control system, but having working code to roll back to when a problem occurs can make up for this extra overhead.

link|flag
show 1 more comment
vote up 2 vote down

Of course version control is necessary even for a one man project.

The option to save contexts and not just changes in the code is the great thing that source control does, you go from "file this and that changed in line blah" to "I added a new option to do ..." which is really valuable.

Don't listen to me though there's a great article that rands wrote about this

Capturing Context

link|flag
vote up 2 vote down

YES!

Sorry for yelling :-)

Version control is not only usefull for rolling back versions. It will give a lot of safety against rolling out older versions of files or accidentally overwriting newer versions with older versions etc.

One thing I'm only now getting used to that's really usefull is the ability to branch and merge different versions. If you have a deadline coming up but you're working on a new feature that's not ready for prime time you can just branch before you started adding that feature. Create a deliverable version without that feature and merge those two after the deadline passes without problems.

link|flag
vote up 1 vote down

There will be some time-loss when you set up the system and instuct the other developers - especially if they are not familiar with versioncontrol (or subversion in specific).

But the benefits of being able to roll-back to a previous (working) version and the possibility to do a easy diff of checked in files will be more than worth it.

The biggest problem is that the rewards -like most things- come after the 'hard work'. :)

Note, a different, but more lightweight solution may be enabeling 'Shadow Copy' on Windows, if that's your server os (although I guess it won't be). The plus of this is that you won't be bothering your co-developers with learning subversion, but you will be able to revert to a older version when needed...

link|flag
vote up 197 vote down

You always, always want to have some sort of Source Control even if you are working on a project by yourself.

Having a history of changes is vital to being able to see the state of a codebase at any given time. There are a variety of reasons for looking back in a project history which range from just being able to rollback a bad change to providing support for an old release when the customer just wants a patch to fix a bug rather than upgrading to a newer version of the software.

Not having some sort of source control is pure insanity.

link|flag
10  
My homework is in source control. Not just the CS stuff, the math, the econ, the ethics, the English, EVERYTHING. Heck, if it's a computer file that I created, it in source control. – BCS Sep 20 '08 at 0:06
show 2 more comments
vote up 2 vote down

Version Control can have the following advantages:

  1. Rollback is always handy as you mentioned
  2. With some you can pin a previous version and run off of it without rolling back
  3. Helps prevent two people from working on a page at the same time which can cause several problems

But then again it also has its downfalls if you dont choose a good one

link|flag
vote up 3 vote down

I have a project that only I work on and Version Control makes my life so much easier. For example, say I decide to implement a new feature. For whatever reason though, I decide to trash it - maybe I wrote it wrong, maybe I changed my mind about implementing it, whatever. All I have to is revert to a previous version from SVN instead of manually reverting each file involved.

link|flag
vote up 2 vote down

Absolutely. There's really no other way to deal with rollbacks to a known good state when the coding path you ventured down turns out to be dense with wolves.

And you can back it up.

link|flag
vote up 37 vote down

I am ONE programmer and I find it invaluable, as I sometimes want to roll things back, or compare something to an earlier version.

Also, I version documents from users and things like that.

It's a great way to track your development.

link|flag
vote up 4 vote down

I don't know about Subversion in particular, but I believe that every project, even one with a single developer, should use version control. I would look at a few options (CVS, SubVersion, git, Bazaar, Visual SourceSafe) and see which one(s) meet your team's desires the best.

link|flag
show 3 more comments
vote up 68 vote down

Definite yes.

Even if you are a single programmer, you need version control. The simplicity with which you can compare the code to any snapshot in time is priceless.

My advice - go for it!

[Once I was living without version control. Now I cannot anymore.]

link|flag
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.