up vote 182 down vote favorite
55
share [g+] share [fb]

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 )

link|improve this question
5  
dropbox for a VERY VERY simple version controlling for a lazy newbie? – zengr Jul 10 '10 at 0:16
feedback

92 Answers

Real men don't use source control.

link|improve this answer
feedback

I think the best excuse for not using version control are

A) Ignorance: Not being aware of such a thing.

B) Not being able to figure out how to set it up and having no one to show you how!

link|improve this answer
show 1 more comment
feedback

vim has a recovery mode right?

link|improve this answer
feedback

I'm too lazy to learn how to use it?

link|improve this answer
feedback

i don't need to revert back, so i don't need version control !

link|improve this answer
feedback

"There is no VCS on my iPhone/Blackberry/other small device/Apple ][, where I do all my development."

On the serious side, indeed, starting from scratch to learn to use such system can be hard, even more if delays are tight, but it is time well spent, like writing comments or making unit tests...

I admit it took to me some time to decide to learn to use SVN and to install it (I used other VCS at work, at least!). So either I did changes and sometime regretted not to be able to go back to a state where it worked; or I used primitive means like copying a state of a source in another directory or to some archive or to a name like MySource-1.1.c...
Kludges, of course, which bite later.

Of course, then, you have to discipline yourself and commit on important steps.

link|improve this answer
show 1 more comment
feedback

excuse:

I don't have time to set up / learn how to use version control because I'm too busy to rewrite code that I accidentally deleted.

link|improve this answer
feedback

You MUST always use source version control, specially if your are part of a team. Not in a million year should this be left out of any software development project!

link|improve this answer
feedback

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|improve this answer
show 3 more comments
feedback

If you a masochist that loves to re-write and redesign applications, then I would avoid using source control.

Unless of course you have an actual job in software development, in which case it's unlikely you are a masochist that loves to re-write and redesign applications.

link|improve this answer
feedback

I thought long and hard, even looked at my own situation at work. I just couldn't think of a good reason. I tried, I really did...

link|improve this answer
feedback

The only time you need to use version control is if a) your code is important, and b) you are fallible. If either of those is false, then no, you don't need version control.

link|improve this answer
feedback

Source code is for wimps

link|improve this answer
feedback

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|improve this answer
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
feedback

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|improve this answer
feedback

Excuse:

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

link|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
show 3 more comments
feedback

How about this

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

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

link|improve this answer
feedback

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|improve this answer
feedback

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

link|improve this answer
feedback

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 that frequently needs to clean up the crime scene."

link|improve this answer
show 1 more comment
feedback

Would you code without an undo feature in your editor?

(I did, the other day; I was editing Visual Studio macros and the undo feature broke for some reason. It's an absolute nightmare to realize you miscorrected something and can't just undo to get it back.)

Version control is akin to a multisession historical undo.

link|improve this answer
feedback

Good answers all -- gave me a chuckle. I suspect anyone who's developed software with one other person in their life learns version control religion in a hurry. However, I recently wrote an article on revision control (from an OS- and VC-agnostic standpoint) and mentioned that while there are few situations I'd want to not use VC, someone on stackoverflow did bring up what I thought was a legitimate reason: suppose you're working on a legal case where all your stuff is discoverable. You might not want the opposition to be able to see all that development information, mistakes, etc.

link|improve this answer
show 1 more comment
feedback

Actual reasons against the adoption of version control,

  • Because it is a new concept to learn which is more complicated than a shared folder
  • Botched merges insert all sorts of 'diff' guff into files
  • Extra software to configure/maintain on workstations for sysadmins
  • It adds an extra step to the development process

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|improve this answer
show 5 more comments
feedback

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|improve this answer
show 4 more comments
feedback

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|improve this answer
feedback

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|improve this answer
3  
You already have more problems than not using vcs ... – Jim T Sep 25 '08 at 11:44
3  
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 2 more comments
feedback

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

link|improve this answer
2  
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 '09 at 18:47
show 1 more comment
feedback

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

link|improve this answer
2  
Subversion(SVN) IS version control and it's free! – levhita Sep 25 '08 at 18:11
4  
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
feedback

Your Answer

 
or
required, but never shown

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