vote up 73 vote down star
22

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

87 Answers

prev 1 2 3
vote up 0 vote down

I tried installing VCS and it wouldn't install. I tried building it from scratch and the build failed. It was an earlier version of VCS, and it ran on an earlier version of an operating system and hardware that I no longer use. VCS had all of these dependencies, and shared libraries that it assumed were already installed. I could not get access to the older operating system and hardware anymore. I was basically locked out from accessing my source code because I couldn't run VCS anymore. VCS was no longer maintained by anyone. I wish I had a backup of my source code even without the older versions.

So, I wrote a command called ci (copy it) which would automatically increment a revision number, prompt for a comment, and tar my current project folder with the new revision number and include the comment in a little text file named CHANGES in the same project folder.

link|flag
1  
So in point of fact you wanted version control so much you rolled your own. – Peter Wone Sep 26 '08 at 1:33
show 2 more comments
vote up 0 vote down

The Pragmatic Programmer actually makes the case for using cvs for all config files on your system. I've not yet gone that far, but it's on my list.

link|flag
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
vote up 0 vote down

I have avoided checking my code into VCS systems many times.

First, if the project is disposable/only used once, the last thing I want is to have a project in source control where years later, I can't remember its purpose. You might respond, "That's what documentation is for", but that would be a disengenuous comment because why would you take time to document a disposable project unless you have a lot of time on your hands?

The same is true for prototypes. If a prototype fails to prove itself valid then it is disposable. However, if it proves itself true then I would agree that it is important to check it in.

If you're worried about backups, then put the code on the network server so it's backed up.

Consider the main functions of VCS: 1. Collaboration and 2. Change management. If you're the only developer, there is no need to collaborate, and if it's a disposable project, there's no reason to manage changes.

Your post would be better off describing the purpose of your co-worker's side project especially since it's off the main tree, otherwise, you offer a generalization that leads to the many overly cynical/critical comments that have been left.

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

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

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

link|flag
show 1 more comment
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

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 -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 -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.