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

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

Excuse:

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

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

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

It's just an "Hello World!" application. We don't need version control for that!

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

ClearCase -- this is a very good reason not to use source control ... (but I used the demo version of Perforce instead :-) )

link|flag
show 1 more comment
vote up 15 vote down

How about...

It's not really my code in the first place. I just copied and pasted it from a web tutorial. If I lose it, I can just find that web site and get it again. Besides, it doesn't work, anyway.

link|flag
1  
I suppose the web is your version control in this case. Hell, Google cache is probably more reliable than Vis SourceSafe! ;) – rally25rs Feb 18 at 1:25
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 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 4 vote down

"I'm the only developer, we don't need version control, that's stupid"

That's putting your job on the line, period. Suppose his computer DOES crash, all his work is gone, so in effect, this person hasn't worked at all in the last few days, weeks, months (years???). Is slacking off like this tolerated in your company? I hope not.

Not using Source Control is like having this code in the initialization routine of the application you're developing:

if (Random(1234567) == 0)
{
 DeleteSourceCode();
}

Would you bet on that never to happen?

link|flag
2  
Yeah, but backing up the SVN server regularly is a heck of a lot easier than backing up developers' laptops regularly. – Adam Jaskiewicz Nov 13 '08 at 18:43
show 3 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 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

It's redundant.

I plan to create regular backups of my hard drive instead.

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

A delightful mix of laziness and incompetence.

An anecdote I heard one time in regards to version control:

A younger programmer asked an elder about his code and his coding style, and how the older programmer would do certain things. The older programmer said 'Let's take a look at your code', so the younger took out his laptop, opened his editor, and showed him.

The older programmer looked at the code, thought about it for a bit, and then started editing it. He deleted the class internals, leaving only the structure, and then rearranged the structure, saying 'Here's how I would do it to make it more efficient and readable'. After he was done, he saved the file and gave it back to the younger programmer, who was ashen-faced.

'That... My code is gone!' said the younger programmer. 'But you have it in version control somewhere, right?' asked the elder. 'N.... no.' was the reply. 'Well then,' said the older, 'now you've learned two lessons.'

link|flag
12  
Don't give your laptop to anyone, ever. – James McMahon Oct 17 '08 at 0:58
20  
The young programmer deserved losing his code for not using source control. The elder deserved a punch in the face, though. – Sergio Acosta Mar 10 at 1:20
7  
Where did ctrl-z go? – hasen j Jun 7 at 3:03
7  
I am missing the punch line: "And the young programmer was enlightened". – Stefano Borini Aug 13 at 12:38
show 2 more comments
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 -1 vote down

Source code is for wimps

link|flag
vote up 8 vote down

"In my free time, I like bondage, having hot wax pour in my mouth, and sticking forks in my eyes. I'd like to bring some of my hobbies into work, but as the work council objects, I had to find an alternative"

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

you want to leave no evidence :)

link|flag
5  
git squash does away with this excuse. – Abizern Dec 11 '08 at 11:51
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 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 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 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 4 vote down

Some might think that it's job security. I disagree, but I've seen that line of thinking manifested that way.

link|flag
vote up 5 vote down

You may not want version tracking in a highly classified, highly paranoid environment, where who/when/why and what-came-before, are exactly what you want to expunge.

(I have never actually encountered this, and I have worked on classified projects.)

Think CIA black op, or presidential campaign.

link|flag
3  
so you create the repo inside a hidden encrypted volume that exists on a second hard disk in the same machine. You version track until the work is done. then dump everything but the final version. – kdmurray May 11 at 3:11
show 1 more comment
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 84 vote down

The sense of danger gives my programming an edge

link|flag
4  
haaaaaaaaaaaaaaaaaaaaaaaaa – Sara Chipps Sep 25 '08 at 17:46
18  
I get enough sense of danger from the procrastination on Stack Overflow causing me to bump deadlines. – CindyH Sep 25 '08 at 22:59
show 1 more comment

Your Answer

Get an OpenID
or

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