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

88 Answers

1 2 3 next
vote up 545 vote down check

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

link|flag
25  
If you have ever made a mistake, you need version control. Otherwise, you can do without it. – Rory MacLeod Sep 25 '08 at 13:37
57  
Having worked on solo projects: I have met the enemy and he is me. – Alan Sep 26 '08 at 2:08
11  
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 '08 at 17:54
11  
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
5  
@Galwegian : I'm sorry, I don't mean this to be ad hominem. I agree with you from a technical standpoint as we pretty much all do I think. From a human resources standpoint however, I just hate it when we developpers, as group, tend to forget that programmers are people and therefore, as such, only boundedly rational. There are also other criteria for decision making than purely technical ones. Forgetting that in general, I believe, has huge consequences in terms of productivity and results in bad management. – Yann Semet Jun 17 at 8:38
show 13 more comments
vote up 1 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 0 vote down

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

link|flag
vote up 4 vote down

Everybody is giving some variation of "there is no excuse" or "well maybe if you're stupid!", but this seems entirely inconsistent with what I see other people actually do.

For example, how many people here have all your email, digital photos, web browser bookmarks, and system configuration in a version control repository? I know some people do (hi Joey!), but most people I know, even most programmers, don't.

The comeback is probably going to be "well, I have backups, and I don't need to track changes to email, or branch my photos, or ...". Great! So let's try to extrapolate from that to when a reasonable person might think that version control is unnecessary:

  • a bunch of small, independent pieces of data
  • that are inherently temporal, and are rarely edited in-place, in the sense that changes consist primarily of adding new data
  • which might be large binary files, a weakness of VCSs
  • which might live in a program-specific format (like an SQLite db), for which it would take an extra step (or twelve) to get the data in a format that would actually be useful to track in your VCS
  • which are already backed up

That seems like a good starting point.

Of course, I want to track everything in VCS, but due to the above issues, it would take more effort than it's worth. I wish programs I used would store data in formats that made it easy to use a VCS, and I wish VCSs were better about tracking data which isn't just "all text files below a certain folder". (Text files were something Unix got right! Sadly we've got some kind of AT&T-MIT-Microsoft-Xerox hybrid architecture going on, which doesn't let the best of any philosophy really shine.) That's just not the world we live in, for better or worse.

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

masochism

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

Not sure if someone else has already said this, but perhaps:

"I'm working on gigantic binary files (raw HD video footage, etc) where the structure changes drastically when you save it. This means diffs provide no extra compression, so each revision would take a ton of (read: gigabytes of) space."

If you're talking about source code there are no excuses. Git, Mercurial or Bazaar would take a day to learn and a tiny amount of time to use, and they would pay for themselves a hundred times over the first time something went wrong.

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 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
2  
oh dear, please no. Daily WTF candidacy there. – Kent Fredric Aug 15 at 5:14
vote up 2 vote down

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

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

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 1 vote down

My boss won't let me? (true story, I do it secretly :S)

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

I thought it maybe worth adding quickly that if you're on a strict short term deadline and don't know how to use source control it's probably better not to go through the paces. yes it's easy to use, but it may not be worth it in the long run. (This happened to my brother recently as he go thrown in to a programming role he probably wasn' prepared for).

link|flag
vote up 3 vote down

Perhaps you use Plan 9 operating system. If I were using that OS with its native filesystem, I would not need source control.

link|flag
vote up 7 vote down

Small, and by small I mean less than a half hour of playing around in a new project, just to try out a method, run a quick test on a service, answer a forum question, etc.

I have literally hundreds of these tiny projects that I've done over the years. Most of them are just a way to try something out in a clean environment, before importing it into a larger (and source controlled) project. Every once in a while I go through the folder of these and delete old ones that I know I dont need anymore. Typically some of these apps last on my hard drive less than a week.

link|flag
1  
i agree. this is the one really legitimate case. I also have dozens of test projects full of junk code I was just experimenting with. Anything that turns into something gets transplanted to a real project and put in source control. The very idea of all my ramblings being archived gives me a headache. – LoveMeSomeCode Oct 1 at 14:54
vote up 11 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
1  
I think you'll find that the Linux kernel has been under source control since 2002. In fact, the aforementioned Mr Torvalds actually wrote his own source control system for it. (Git.) Admittedly it was a different picture ten years ago, when source control was either expensive or CVS, but a lot of the modern ones such as Git, Mercurial or Bazaar are much lower friction. To those that think "Where does it end" -- Must every project have backups? Must every IDE have an undo button? Must every project be saved to disk? The only code that doesn't need source control is throwaway code. – jammycakes May 31 at 16:49
1  
I'm not sure you can make the argument of "where does it end." In my mind, if you already have a source control system setup, there is little to no cost to use it, and it's a good practice to get into for so many reasons. Unit test code coverage, code reviews, etc are not as intuitively good and are not always appropriate (or at least, have not proven to be as useful as version control). The responses from other individuals on this site should suggest how useful a VCS is. – Jason Aug 13 at 16:05
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

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

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

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

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