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

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

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

Source control system for single developer

link|improve this answer
feedback

Version control makes most sense when there are versions to go back to. For very early in a project, and for throw away programs, there usually isn't anything to go back to. I usually only check stuff into version control once my program does something

link|improve this answer
show 1 more comment
feedback

I've got one... seriously:

I can re-create all the code that was not in source control faster than anyone can retrieve it from source control.

It can and does happen to very very small amounts of code.

link|improve this answer
show 2 more comments
feedback

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

link|improve this answer
feedback

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

link|improve this answer
show 2 more comments
feedback

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

link|improve this answer
feedback

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|improve this answer
7  
oh dear, please no. Daily WTF candidacy there. – Kent Fredric Aug 15 '09 at 5:14
1  
+1 for the laugh – kriss Jul 12 '10 at 19:44
feedback

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

link|improve this answer
feedback

Hey, leave me alone, I'm not a programmer, I just came in to repair plumbing...

link|improve this answer
feedback

For me, reason #1 is the following:

A bad behavior without consequences, is repeated.

I wrote about the subject on this post: Why developers don’t use a Version Control System (CVS, SVN, Git, Hg, ...)?

All examples are from real people, but changed a little to avoid

link|improve this answer
feedback
  • Source control costs time and/or money which I (or manager) don't want to invest.
  • I had a bad experience with SourceSafe corrupting my files once.
  • There is no source control system which perfectly adapts to my needs.
link|improve this answer
feedback

You hate your job and want to get fired.

Or maybe your company cannot fire you and they can only "let you go" which means severance package?

link|improve this answer
feedback

Not exactly an answer to your question but I like these stories from The Daily WTF in regards to Version Control.

link|improve this answer
feedback

For tiny program or projects, used just as a proof of concept. Not using version control saves you the trouble of creating a repository and configuring it.

link|improve this answer
2  
$ mkdir newdir $ cd newdir $ hg init There, I've configured my new repository. – Matthew Schinckel Nov 9 '08 at 0:30
show 2 more comments
feedback

The only reason I can think of why a developer who is aquainted with source control, and works at a company that uses it for other projects, would want to keep a project separate is that he's somehow ashamed of it. He doesn't want people to scrutinize his code, or he doesn't want others to know the details of the project.

link|improve this answer
1  
We used Subversion on another server - not wanting our stuff in the official SCS doesn't mean we didn't want version control. We couldn't afford to release unready code, PHB would have assumed control and doomed it. – Peter Wone Sep 26 '08 at 1:31
show 2 more comments
feedback

Good excuses include:

  • you like living on the edge
  • you enjoy rewriting code
  • you don't work in a fast-paced environment
  • your boss doesn't care what you do and how long it takes, as long as it gets done... eventually
link|improve this answer
feedback

If I had enough reputation I'd mark you down for the title. You made my hair stand on end reading that title!

link|improve this answer
feedback

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

There is truely no single good reason.

I even use source control for private use, e.g. when coding just for fun, trying out some new technology, or something else. I would even use version control for all other files I've got, but that would be quite of an amount of storage and it wouldn't make sense mostly for binaries.

link|improve this answer
feedback

I think it would be a great excuse if you were clinically insane.

link|improve this answer
feedback

If the given project is of such minor importance that completely breaking it or losing it forever would be of essentially no consequence.

Note that a program used by more than one person will almost never satisfy that criteria.

link|improve this answer
feedback

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

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

link|improve this answer
feedback

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

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

link|improve this answer
show 1 more comment
feedback

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|improve this answer
show 1 more comment
feedback

Because I trusted Bill when he said,

640K ought to be enough for anybody.

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

link|improve this answer
show 1 more comment
feedback

masochism

link|improve this answer
feedback

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

Your Answer

 
or
required, but never shown

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