vote up 52 vote down
star
14

This question may seem backwards to all logical reasoning, but I encountered a team member who was working on a side project out of the main tree, and had decided ( rephrased )

I'm the only developer, we don't need version control, that's stupid

Now personally, the idea horrifies me, and I can't for one justify it.

So now my stance is clear, I want some legitimate answers why somebody can excuse themselves from using version control. The default answers will of course be "there is no excuse".

Not what I want to see. If you can't see an excuse, then just don't post. ( Feel free to downmod excuses others post that are illegitimate/bad and give reasoning )

flag
add comment

72 Answers

1 2 3 next
vote up 421 vote down
check

There are no good reasons not to use version control. Not one.

link|flag
3 
If you have ever made a mistake, you need version control. Otherwise, you can do without it. – Rory MacLeod Sep 25 at 13:37
9 
Having worked on solo projects: I have met the enemy and he is me. – Alan Sep 26 at 2:08
3 
Lets be pragmatic people. Plenty of code is written and maintained by non-professionals outside of source control (scientists for instance) and it works just fine. Different work environments have different emphasis on software best practices. – Brendan Nov 13 at 17:54
1 
@Brandan: No problem with it working - what happens when there is > 1 scientist doing the work? what happens when his flash SGI box's HDD's blow up, or his cat happens to hit "rm -r /" when walking over the keyboard.... – Nic Wise Nov 24 at 13:42
2 
I don't understand, haven't you read the question !? "Default answer: no excuse! -> not what I want to hear". Sounds clear to me. This is a perfectly valid question for she who seeks to understand her fellow developpers even if they are unexperienced, immature or simply suck. I'll give you that the benefits of source control are blatantly obvious even for 1 and that the decision to use it should be a no brainer. But if you can't think of a single reason why people would be reluctant, even though mistakenly, then perhaps you should move some energy from dogmatism to empathy/listening skills. – Yann Semet Jun 17 at 8:30
add / show 9 more comments
vote up 127 vote down

I can think of one:

I'm the only developer, we don't need version control, and I'm stupid

link|flag
1 
That was funny! LOL Sounded like something Homer Simpson would say. – hectorsosajr Sep 25 at 10:39
1 
Thanks to everybody that voted up this silly answer for my first 'Great Answer' badge. =) – Sergio Acosta Mar 11 at 7:35
add / show 1 more comment
vote up 73 vote down

Excuse for not using source control:

"The only source control system I am allowed to use is Visual Source Safe."

link|flag
1 
Best answer !!!! – zaca Sep 25 at 12:02
2 
As bad as SourceSafe is, its better than nothing. – Paul Batum Sep 25 at 12:12
2 
Hmm. I can't believe I just defended SourceSafe. Somebody shoot me. – Paul Batum Sep 25 at 12:12
2 
I'd rather rewrite ten years of code than use Source Safe! – Jrgns Sep 25 at 20:06
2 
If somebody would force me to use VSS then I'd probably quit that job. On the other hand if they'd offer $1000000 I'd think about it some more. – rslite Oct 7 at 11:40
add / show 12 more comments
vote up 67 vote down

A delightful mix of laziness and incompetence.

An anecdote I heard one time in regards to version control:

A younger programmer asked an elder about his code and his coding style, and how the older programmer would do certain things. The older programmer said 'Let's take a look at your code', so the younger took out his laptop, opened his editor, and showed him.

The older programmer looked at the code, thought about it for a bit, and then started editing it. He deleted the class internals, leaving only the structure, and then rearranged the structure, saying 'Here's how I would do it to make it more efficient and readable'. After he was done, he saved the file and gave it back to the younger programmer, who was ashen-faced.

'That... My code is gone!' said the younger programmer. 'But you have it in version control somewhere, right?' asked the elder. 'N.... no.' was the reply. 'Well then,' said the older, 'now you've learned two lessons.'

link|flag
2 
Don't give your laptop to anyone, ever. – nemo Oct 17 at 0:58
2 
The young programmer deserved losing his code for not using source control. The elder deserved a punch in the face, though. – Sergio Acosta Mar 10 at 1:20
add / show 2 more comments
vote up 47 vote down

The sense of danger gives my programming an edge

link|flag
5 
I get enough sense of danger from the procrastination on Stack Overflow causing me to bump deadlines. – CindyH Sep 25 at 22:59
add / show 1 more comment
vote up 30 vote down

Possible 'excuses':-

  1. "My code is buggy, unstructured, and unreadable. It's simply not worth trying to keep"

  2. "Management will understand if my project slips by six month because I accidentally deleted something I shouldn't. They do it all the time."

  3. "If I delete my 5000 line source file by mistake, chances are the total rewrite may be better then the original. Eventually."

Feel free to add your own...

link|flag
add / show 2 more comments
vote up 24 vote down

Visual SourceSafe ate my dog.

link|flag
add / show 6 more comments
vote up 20 vote down

you want to leave no evidence :)

link|flag
3 
git squash does away with this excuse. – Abizern Dec 11 at 11:51
add comment
vote up 18 vote down

You hate your company and want to see them fail.

link|flag
add / show 1 more comment
vote up 17 vote down
  • It can give a false sense of security. Using a VCS does not imply that your data is safeguarded against system failures, because you need real backups for that.
  • For small toy projects the cost of learning a VCS may outweigh the benefits.
  • Introducing a VCS at a time when you're trying to meet a deadline introduces a risk of missed deadlines (however small it is).
link|flag
1 
No; the cost of not using source control outweighs the cost of using it - unless your source control system is so grotesquely unusable in which case, you need to use a different VCS. – Jonathan Leffler Apr 20 at 4:23
2 
And the risk of not using a VCS is that you won't meet your deadline because you couldn't revert to a better working version of the code after you screwed up some change because of the pressure of the impending deadline. – Jonathan Leffler Apr 20 at 4:24
add comment
vote up 14 vote down

My Dog Ate My Head?

That's about all I got? Since I told myself off for not using SCC at home (and losing all my previous code) I have NEVER looked back. I use it all the time, I check in all the time.

Why the hell would you not like to be able to:

  • Simplify backup of all your code?
  • Be able to mess with it more, knowing you can restore?
  • Realise that you completely borked some code and didn't notice and compare versions to see how you borked it?

All I got is "my dog ate my head".

link|flag
add / show 1 more comment
vote up 12 vote down

Excuse:

A side project is a prototype/throw-away exercise so to see how a concept or idea works in code. The code won't be kept around after learning from it.

link|flag
1 
Key word, excuse. If I had a nickel for every time I could have saved myself several hours by looking at a "throw-away", I would have a lot of nickels. – Guvante Sep 25 at 10:41
2 
I dont think ANY code is throw away code. Even if you dont use it, its a great learning experience to go back and look at that "throw away" code and see how you can do more with it. – Rob Cooper Sep 25 at 10:55
1 
Here every code that was written as prototype or proof-of-concept is still running. For years. So I think there's no such thing as throw-away code. – ComSubVie Sep 25 at 11:00
1 
That's actually not bad. As others have said if I had back all the throw-away code I've disposed of only to learn later on that I needed it. Ah, memories. . . . – Onorio Catenacci Sep 25 at 12:28
2 
Have a sandbox repo! – BCS Sep 25 at 17:48
add / show 3 more comments
vote up 9 vote down

"I am the 'Pantless Prima Donna'! I need none of your mortal tools! I am infallible. Version control is only for people who expect to get it wrong the first time!" :-P

Dilbert

link|flag
add comment
vote up 9 vote down

How about...

It's not really my code in the first place. I just copied and pasted it from a web tutorial. If I lose it, I can just find that web site and get it again. Besides, it doesn't work, anyway.

link|flag
1 
I suppose the web is your version control in this case. Hell, Google cache is probably more reliable than Vis SourceSafe! ;) – rally25rs Feb 18 at 1:25
add comment
vote up 6 vote down

You don't want to know why you made a certain change 3 weeks ago because theres NO way you could ever want to be able to simply check the change log, and you love pain and misery and prefer to do things the old-school way, with comments and pages of commented code.

You also like modifying code and having bugs you fixed earlier come back, and you like not knowing why.

You like the sense of "mystery" and "excitement" it adds to your life.

link|flag
add comment
vote up 5 vote down

No excuses. Even a single developer will benefit from having his/her code under version control.

link|flag
add comment
vote up 5 vote down

There are two main parts of version control.

  1. Having backups of old versions of 'files'
  2. Being able to diff / merge / etc on various versions

For part 1 there is no excuse I can think of. Part 2 however, there are situations you can argue against it since the way in which you're coding renders it useless.

I for example spend four weeks on a project where 'code' was stored in a binary format such that you couldn't diff or merge or do any of that good stuff.

I also spend a much larger amount of time (shudder, I don't like to think about it) 'coding' on a project which was essentially configuration into a web application which pushed stuff into a DB we didn't control. No source control possible there either. Or backups of old files.

Oh, how fun that was..

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

"In my free time, I like bondage, having hot wax pour in my mouth, and sticking forks in my eyes. I'd like to bring some of my hobbies into work, but as the work council objects, I had to find an alternative"

link|flag
add comment
vote up 4 vote down

You may not want version tracking in a highly classified, highly paranoid environment, where who/when/why and what-came-before, are exactly what you want to expunge.

(I have never actually encountered this, and I have worked on classified projects.)

Think CIA black op, or presidential campaign.

link|flag
1 
so you create the repo inside a hidden encrypted volume that exists on a second hard disk in the same machine. You version track until the work is done. then dump everything but the final version. – kdmurray May 11 at 3:11
add / show 1 more comment
vote up 3 vote down

I see only developer's personal gain of you being tied to him as he may be the only one to remember changes within versions.. if i got the question right ^^

link|flag
add comment
vote up 3 vote down

Some might think that it's job security. I disagree, but I've seen that line of thinking manifested that way.

link|flag
add comment
vote up 3 vote down

"I'm the only developer, we don't need version control, that's stupid"

That's putting your job on the line, period. Suppose his computer DOES crash, all his work is gone, so in effect, this person hasn't worked at all in the last few days, weeks, months (years???). Is slacking off like this tolerated in your company? I hope not.

Not using Source Control is like having this code in the initialization routine of the application you're developing:

if (Random(1234567) == 0)
{
 DeleteSourceCode();
}

Would you bet on that never to happen?

link|flag
1 
Yeah, but backing up the SVN server regularly is a heck of a lot easier than backing up developers' laptops regularly. – Adam Jaskiewicz Nov 13 at 18:43
add / show 3 more comments
vote up 3 vote down

ClearCase -- this is a very good reason not to use source control ... (but I used the demo version of Perforce instead :-) )

link|flag
add / show 1 more comment
vote up 3 vote down

There is only one version of my code. Just one.

link|flag
add comment
vote up 2 vote down

...maybe if they're holding a gun to your Dog's head?

But, then I think you have bigger problems.

link|flag
add comment
vote up 2 vote down

Your VCS system is a hassle to use. Too much trouble for this small project

link|flag
add / show 3 more comments
vote up 2 vote down

To me this seems like repeating the same (very popular) topic as in:

Source control system for single developer

link|flag
add comment
vote up 2 vote down

If your IDE has source-control like features, you may be able to get away with no source control... Netbeans, for example, has a "local history" feature that will keep a history of every save you make to your project files. You can perform diff's and reverts back to local history much like source control. For a solo developer, this may give them the basic set of features they want out of source control.

If your choice is between Visual Source Safe and manually performing version control (i.e. manually making snapshots via the file system), I would opt for no version control... VSS to this day still has reliability problems (at least for me).

Even with a version control (or local history), you still need to backup... I've seen way too many developers keep their CVS/SVN repo on on their development machine (often a laptop), or check-in to a server with no backups...

All that said, I always use version control... and my paranoia extends to having redundant backups of the source control server as well as offsite backups.

link|flag
add comment
vote up 2 vote down

"For the first 10 years of kernel maintenance, we literally used tarballs and patches, which is a much superior source control management system than CVS is" --Torvalds

If you've got quick/easy/automatic backups, you've already got 95% of what most of us use VC for. Somebody with a local DVCS repository on his HD but no backups is actually in much worse shape.

Using a VCS does have a real cost, and it's usually a small one but not always. Every VCS I've ever used, I've had days where I had to fight with it for hours just to get it to do something that should have been simple.

To those that think "There are no good reasons not to use version control", where does it end? Must every project have 100% unit test code coverage? Must every project have code reviews? Coding standards? A complete functional spec?

There's a whole spectrum of programming projects in the world. Not everybody is writing code for the space shuttle. Sometimes being able to diff my code from 11:00am and 11:30am is simply not that important.

Some are merely managing globally-distributed teams of thousands writing operating system kernels.

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

If it is a one off thing which is going to be thrown out after an hour, I would not use a source control.

But unfortunately all one off things I am asked to do in my company magically turns around after a week and I am asked to fix something in the (lost?) code and make it a part of the project.

link|flag
add / show 1 more comment
1 2 3 next

Your Answer

Get an OpenID
or

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