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

vote up 2 vote down

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

Source control system for single developer

link|flag
vote up 2 vote down

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|flag
show 1 more comment
vote up 2 vote down

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|flag
show 2 more comments
vote up 2 vote down

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

link|flag
vote up 1 vote down

Your VCS system is a hassle to use. Too much trouble for this small project

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

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

link|flag
vote up 1 vote down

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

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

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

link|flag
vote up 1 vote down

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

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

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

link|flag
vote up 1 vote down

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

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

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

masochism

link|flag
vote up 1 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'm too lazy to learn how to use it?

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

"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|flag
show 1 more comment
vote up 0 vote down

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

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

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

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

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

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

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

Your Answer

Get an OpenID
or

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