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

1 2 next
vote up 79 vote down check

I'm just gonna pile on here and say YES. Like 17 of 26 said

Not having some sort of source control is pure insanity.

This is truth. I've done small projects both with and without source control (not my choice). Without, it just sucks. There is no canonical version of the project, you never know who has what and merging changes is an exercise in pain.

Really though, anything over about 5 lines of code should be under version control of some sort.

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

When I wish to go to the shops, I take my car to transport the shopping home. It is not necessary to put gas in my car. I could choose to push the car instead, but why would I?

Likewise with choosing not to use version control....

link|flag
vote up 2 vote down

Version Control YES, you always need to perform version control.

SVN? no.. me, I use Git.

link|flag
vote up 0 vote down

Subversion is overkill for very small groups and should not be thought of as a replacement for proper project management. Long story short- if people don't have a schedule and proper communication, use of version control is not much better not using and can cause more problems than it aims to solve. Questions you should answer while implementing version control:

  • Who is responsible for managing the repository?
  • Do you have a release schedule? How do you communicate merging changes?
  • What is the difference between your current source management (files, copies on a filesystem) and what you aim to accomplish with subversion?(hint, if you don't have a clear answer, don't use it).
  • How specifically will your use of subversion be incorporated in your project management plans?
link|flag
vote up 2 vote down

Simple answer YES.

Not to reiterate, but it cannot be said enough. You SHOULD HAVE source control. Subversion is ridiculously easy and almost zero overhead once it is setup. It literally shouldn't take more than 5-20 minutes to setup. You have other choices too, like GIT. So just pick one, and put your source in there - end of answer. :)

link|flag
vote up 0 vote down

Source Control YES. Subversion NO

Subversion is appropriate for really complex stuff that needs to handle branching REALLY well. Otherwise it is not worth the effort of learning and maintaining it.

There's plenty of other more straightforward source control at a small size (I personally recommend PerForce)

BTW I would rank Creating a build system is more important than version control.

Now, with so few people it IS possible to manage source control by splitting up your work files carefully, but this does not give you version control (which is essentially automatically built into any source control you will find) At the very very least you need to be able to look back and find a version of your file from a few weeks.

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

I strongly recommend source code control no matter what the size of the team. I have had too many late night sessions where I broke my code and did not have source code control to go to for older working versions.

link|flag
vote up 1 vote down

Yes, source control is a must.

I use Sourcegear Vault which is free for a single developer.

link|flag
vote up 2 vote down

YES, but only for developer teams where size is > 0

When i shut down my IDE/text editor/whatever and come back the next day to realize i want to undo may last boneheaded mistake, Source control is there for me to fall back on, or use to branch and perform some wild experiment on my code. Without source control I cannot do these things so freely.

For teams of size > 1 you have a central backup, you have team wide undo, it's easier (possible) to work distributed, which when team size exceeds 1 is really what you're doing anyway no matter how far away your team mates are.

link|flag
vote up 1 vote down

Source control will give you peace of mind. I'm a mISV, and lost my system hard drive earlier this week. My code is in several Subversion repositories. I had just finished re-organizing the code, so that I could just check out and go.

I'm waiting for the new hard drive to arrive. I have the peace of mind that when the new hard drive gets here, I will be able to continue enhancing my product where I left off.

link|flag
vote up 1 vote down

Everyone who is saying that source control for 1-2 developers is a must is completely, completely right. Trust us :-)

Back in college I had a professor who made us use source control. We all kicked and screamed, because CVS seemed way too complicated and sounded like overkill for student projects. Eventually we all came around, and even for simple projects from then on I'd put them all in source control. I've continued that to this day, and have saved myself from many hours of frustration.

link|flag
vote up 11 vote down

Version control will save your ass. A professional developer not using version control is one of the few things that inarguably falls under the category of software malpractice.

Even if you are a lone developer it will

  • Let you get back to when a feature worked
  • Automatically maintain a backup: check it in and it's backed up.
  • Let you undo your local changes when you have gotten yourself tied in a knot.
  • Let you go back to the version that is running in production, in the test environment or on a particular customer's environment for debugging.
  • If used properly it will also let you see all changes related to a fix for a particular problem which can be an invaluable debugging tool.

If you are more than one developer it will keep one programmer from overwriting the changes made another programmer which will happen no matter how careful you are.

These are just the basics that should help you win any argument about whether or not to use version control.

link|flag
vote up 1 vote down

I would argue for git, for two primary reasons

  1. trivial to set up repo. cd into the directory, git init, and you're done
  2. logging! using a vcs of any kind makes it easy / obvious / simple to log why you're making changes. having a dvcs in particular makes it really fast and easy to see when, what, and why one made changes. Since a dvcs has long information locally, it's fast and easy to look up, unlike svn on remote machines.

[these are apparently true for Mercurial as well. They sure the heck aren't so easy for subversion.]

link|flag
1  
Same can be said of other DVCSes e.g. Mercurial -> hg init – Jacob Sep 18 '08 at 1:34
vote up 1 vote down

you need source control if at least ONE of the following is true:

1) there are more than ONE developer

2) the project is more than ONE mounth long

3) the project has more than 5000 lines of code

so, if you are two persons you need to use version control. Also if you are alone but your project reach a not trivial complexity... you need version control!

link|flag
vote up 1 vote down

The original 'rcs' tool is still out there and still works (on unix and windows/dos) and is possibly the simplest of these tools, which is why I'd recommend it for a two-man team working on the same system (eg same office, same fileserver or unix host). It's only worth getting into a client/server model like subversion if you're working in separate environments.

link|flag
vote up 0 vote down

I'm just throwing this out there, but I believe PERFORCE is free for up to 2 developers. Don't know how easy it is to set up.

I would guess you'd want something that's easy to set up and use.

link|flag
vote up 1 vote down

Yes, if you are a professional developer then you absolutely need to be using version control!

link|flag
vote up 2 vote down

Anyone who isn't doing version control is simply doing it wrong.

link|flag
vote up 1 vote down

try mercurial (hg) instead of svn

link|flag
vote up 1 vote down

VSS is fine but mucho dinero.

link|flag
vote up 2 vote down

Regardless if you are a single developer, or a group of developers you must do the following before you start coding ANYTHING:

  1. Set up a version control system. Use whatever system you like, git, SVN, Mercurial. It doesn't matter as long as you know how to use it.
  2. Set up a collaborative documentation system. Use a Wiki or a trac, or any other such system you know how to use.
  3. Set up the build system. Use Make, ANT, Maven, or any other build system you know how to build.
  4. Write the first test cases.

Don't code a single line of the main app until you have done these four

link|flag
vote up 0 vote down

Is Visual SourceSafe an option? I am a single programmer and have been using it as a repositry for the last while with no problems but I keep hearing about horror stories. Is it really that bad?

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

I'd attempt to be the first to answer NO. It takes time to learn how to use it effectively. And it can be confusing to new users. Rolling back? Merging your changes together? being able to branch your project? or be sure that all this stuff you are deleting now is NOT going to be lost forever? Its helpful in only a few cases, and I'm not 100% sure that the 10 minutes it takes to find SVN or TortoiseSVN and download it, + the 30 min to learn a little about the use is worth it.

OTOH: Is. Your. partner. *)&%$#. crazy?

We have several possible tools for use at work. No broad support for either CVS or SVN but rather a commercial relative for most things.. I use tortoiseSVN on my pc to handle my own WORD documents and spreadsheets, and I find that the MERGE capability really helps when others edit my spreadsheets and send them back to me. (I tend to do the merge by saving the different versions as an xml spreadsheet. ) or to back up changes when I use a doc or spreadsheet on more than one PC.

However ARGUING about it doesn't work. Show her/him how to install it, and demonstrate a little editing of the same document. Or let them train themselves at software carpentry.

link|flag
vote up 0 vote down

Yes, even if you are the only person source control is a must. Of course you will not be using it to control who is working on which files, but having the ability to role back if you make a big mistake in your code is really a no-brainer.

link|flag
vote up 0 vote down

Source control doesn't cost you anything but the time of setting it up. It's just a no-brainer.

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

Subversion isn't. But source control is.

link|flag
vote up 9 vote down

I am a "one man band" programmer and I finally started using version control when I found myself copying whole applications and putting them into a folder called "backup" and then later naming them something like "20080122-backup". I imagine a lot of people start this way. So the question is not whether or not you should use version control but rather should you do it the right way or should you hack together some half-assed homemade facsimile?

link|flag
vote up 1 vote down

Version control should be the first thing you think about when starting a project. Second is automatic builds, third is testing, fourth is incorporating your tests with your builds.

link|flag
vote up 2 vote down

Version Control is the most important tool that a programmer has, even more important than the actual programming languages. No matter how many users you have, source control should always be required. I don't know how many times I've made a breaking change and then needed to go back and work on old code or at least just see how the original code functioned. I work in small teams and we use SVN Notifier to let us know when things are commited. This allows us to review each others work and you don't get the dreaded "Have you checked your code in yet?" questions all the time. Using source control from the beginning will eliminate many headaches (overwrites, lost code, fights over who changed what) that you may face.

link|flag
vote up 16 vote down

Subversion -- absolutely not. It is centralized and merging support is not so good.

Version control -- absolutely YES! Even solo developer needs it!

And small and fast moving, mobile teams needs distributed version control, so pick one of the following:

  • git
  • mercurial
  • darcs

Yes, there is a learning curve. Go distributed, you can learn it. And yes, you can thank me later.

And where those distributed repositories live? Here are some ideas:

  • in your personal USB memory stick (and dont limit yourself to one USB stick, distribute them also into multiple locations, like safety deposit box in your bank)
  • another in safe place (offsite, different location, other side of net) where fires, earthquakes or tornadoes cannot harm your source simultaneously) as a backup
  • one in centralized server, yours or something like github
  • multiple copies in developer machines
  • staging repository somewhere near staging server
  • production repository somewhere near production site
link|flag
7  
Why not Subversion? There's only two of them, and they don't have any source control experience. Distributed vcs could be overkill both for their purposes and in terms of the learning curve. – Matt Sep 14 '08 at 2:14
1  
Merging support seems to have improved a lot with the release of 1.5, and distributed version control does seem an added layer of complexity alright. – kaybenleroll Sep 15 '08 at 22:19
show 2 more comments
1 2 next

Your Answer

Get an OpenID
or

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