vote up 74 vote down star
23

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

89 Answers

prev 1 2 3
vote up 0 vote down

Excuse:

I'm using VB3 and source control breaks frx compatibility!

link|flag
vote up 0 vote down

Honestly, the only time I've ever not wanted to use source control was when I was coding some actionscript on a Mac. We use subversion (f'in awesome, it is) and the SVN plugin for Finder was less than functional. I simply LOVE the Windows Explorer TortoiseSVN extension, and it's not that painful to use the command line on a linux box either. I find terminal on the Mac to be frustrating at times, however, probably because it just feels so disconnected from the rest of the OS.

link|flag
vote up 0 vote down

VSS has reliability problems, I keep hearing. I admit it lost something on me once in five years. Even if it's one of five, it's better than no source control at all. In fact, I almost wish it would do that because then I'd be able to persuade management to buy (or allow use of) something better.

As for one-off code, I recently got off my back a kludge that was supposed to last a few months six years ago and just kept growing and growing.....

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

How about this?

"Source Control systems keep a permanent record of every mistake/bug I have ever made and then later fixed. I am a poor programmer than frequently needs to clean up the crime scene."

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

you're the best coder in the world (and all your teammates as well) - then it's just needless

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

How about this

  1. I don't need version control because I have incremental backup system.

  2. I am an ABAP programmer... :)

link|flag
vote up 0 vote down

Excuse given to me: "I never make mistakes and won't need to restore previous versions."

Now that I'm using TFS, I can safely say, I get nervous writing code while not using it.

link|flag
vote up 0 vote down

I can't find a version control system which works with punch cards.

link|flag
vote up 0 vote down

I maintain a complete version history of each file, within the file itself. I always comment out old code instead of changing it, that way I have a visual history. Example:

// float calcInterest(float value) {
//    return 0.0125 * value;
// }

// never return a negative amount 2009-05-01
// float calcInterest(float value) {
//    return Math.abs(0.0125 * value);
// }

// increase in interest rates 2009-06-03
float calcInterest(float value) {
    return Math.abs(0.015 * value);
}

The beauty is in the simplicity!

link|flag
1  
oh dear, please no. Daily WTF candidacy there. – Kent Fredric Aug 15 at 5:14
vote up 0 vote down

Actual reasons against the adoption of version control,

  • Because it is a new concept to learn which is more complicated than a shared folder

Reasons which make version control less compelling,

  • Shared folders copied locally, although have less functionality, do actually work fine for certain codebases
  • Certain types of coding projects have relatively little use for versioning, namely code that is isolated and static i.e. written by a single programmer using very little shared code, that does not need to be developed once working
  • Because the admins won't allow it across the network

For the casual programmers - those to whom programming is just a tool, such as many of the people I work with (scientists) - much of the work is hackish and small scale with relatively little shared code, there may be a dozen other things that are more likely to fail outside the code which could also be eliminated with better practices.

As a colleague put it, "we don't get published for writing beautiful code".

link|flag
show 5 more comments
vote up 0 vote down

Because I trusted Bill when he said,

640K ought to be enough for anybody.

.....and I just ran out of space...

link|flag
vote up 0 vote down

masochism

link|flag
vote up 0 vote down

If the person is adamant about not using source control, then I hope that they atleast back up regulary to an external device.

link|flag
vote up 0 vote down

This project is for my personal use and I don't care if I lose it.

link|flag
vote up 0 vote down

I have actually heard a good answer to this question.

I did not know what it was, and I do not know how to set it up

If you are new to programming, you just would not even know source control existed. And all the tools out there, have a learning curve involved. Those sorts of programmers at least have an excuse for not using source control.

But still, always use source control.

link|flag
vote up -1 vote down

I use Apple's Time Machine and I work alone, so that works for me.

link|flag
show 5 more comments
vote up -1 vote down

Security implications: I need to store passwords in my source code. Company policy forbids giving other employees (including other developers) the opportunity to read those passwords.

link|flag
1  
You already have more problems than not using vcs ... – Jim T Sep 25 '08 at 11:44
2  
Don't store passwords in your source code - that's a worse error than not using VCS – belugabob Sep 25 '08 at 11:46
show 1 more comment
vote up -1 vote down

I'm a professional programmer and I don't have to justify my working practices when they don't impact on anyone else.

link|flag
1  
If someone else owns your work product (or is an agent of an entity that owns your work product), they have a legitimate means to be concerned if your work practices take less than due care of preserving the product they pay for. – Charles Duffy Sep 25 '08 at 11:48
2  
Sorry, you can't have it both ways: Either you are a professional programmer (and therefore, your working practices have a significant impact on your code, which has a significant impact on your client), or your working practices don't have impact on anyone else (but writing code by yourself for yourself doesn't make you a professional programmer). – Piskvor May 29 at 18:47
show 1 more comment
vote up -1 vote down

False security: If I delete my local source, assuming that it is in the SCC, and the server hosting the SSC crashes, the whole thing is gone.

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

Copying directories of code around is the same thing as version control and it's free!

link|flag
1  
Subversion(SVN) IS version control and it's free! – levhita Sep 25 '08 at 18:11
1  
Git is version control and it's free. It's also crazy fast, and easier to manage. – Dan Udey Sep 25 '08 at 18:18
show 1 more comment
vote up -1 vote down

It's redundant.

I plan to create regular backups of my hard drive instead.

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

Source code is for wimps

link|flag
vote up -1 vote down

My Answer: You program on a mac that uses Time Machine or you can't use Subversion (I personally use both.)

The excuse someone above gave that using VCS isn't going to help if your system crashes is just dumb (for one thing you can still usually recover data from corrupt hard drives).

Never ever host your version control system on the same computer/hard drive you use to develop.

If you're worried about bigger disasters then host or backup your version control data to an external source. It's really not that hard considering how many times you'll throw up if you lose the past 5 years of work.

One time I thought I lost about 3 years of work and I nearly got sick. A few months later I managed to recover it from the trash folder on another hard drive. My relief did not compensate for the reaction to thinking I lost it all.

link|flag
vote up -1 vote down

You are a programmer in a developing nation sharing an OLPC with the rest of your community, there is no internet access, and the computer lacks adequate space to support a version control system.

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

You don't need version control if you are Chuck Norris, else its definitely required!

link|flag
vote up -1 vote down

With just 1 person coding, there is no need for VC because....he/she believes in a personal god that will save his/her A55!

link|flag
vote up -1 vote down

"I am just lazy and want to spend more time browsing youtube!"

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

I have been writing programs for the last eight years and have never needed a version control system.

link|flag
vote up -2 vote down

You've been kidnapped and are being forced to code for the Nazis

(happened to me more than once)

link|flag
prev 1 2 3

Your Answer

Get an OpenID
or

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