Good excuses NOT to use version control - Stack Overflow most recent 30 from stackoverflow.com2009-11-21T22:32:52Zhttp://stackoverflow.com/feeds/question/132520http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control73Good excuses NOT to use version controlKent Fredric2008-09-25T10:32:12Z2009-09-23T22:28:08Z
<p>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 )</p>
<blockquote>
<p>I'm the only developer, we don't need
version control, that's stupid</p>
</blockquote>
<p>Now personally, the idea horrifies me, and I can't for one justify it. </p>
<p>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". </p>
<p>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 ) </p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132522#132522528Answer by Galwegian for Good excuses NOT to use version controlGalwegian2008-09-25T10:32:54Z2008-09-25T10:32:54Z<p>There are no good reasons not to use version control. Not one.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132524#1325246Answer by petr k. for Good excuses NOT to use version controlpetr k.2008-09-25T10:34:02Z2008-09-25T10:34:02Z<p>No excuses. Even a single developer will benefit from having his/her code under version control.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132529#1325294Answer by Nescio for Good excuses NOT to use version controlNescio2008-09-25T10:34:37Z2008-09-25T10:34:37Z<p>...maybe if they're holding a gun to your Dog's head?</p>
<p>But, then I think you have bigger problems.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132534#132534168Answer by Sergio Acosta for Good excuses NOT to use version controlSergio Acosta2008-09-25T10:35:22Z2008-09-25T10:35:22Z<p>I can think of one:</p>
<blockquote>
<p>I'm the only developer, we don't need version control, <strong>and I'm</strong> stupid</p>
</blockquote>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132543#1325431Answer by Adrian for Good excuses NOT to use version controlAdrian2008-09-25T10:39:05Z2008-09-25T10:39:05Z<p>Your VCS system is a hassle to use. Too much trouble for this small project</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132545#13254534Answer by alexmcchessers for Good excuses NOT to use version controlalexmcchessers2008-09-25T10:39:33Z2008-09-25T10:39:33Z<p>Visual SourceSafe ate my dog.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132548#13254817Answer by Martin OConnor for Good excuses NOT to use version controlMartin OConnor2008-09-25T10:40:13Z2008-09-25T10:40:13Z<p>Excuse:</p>
<p>A side project is a prototype/throw-away exercise so to see how a concept or idea works in code. The code won't be kept around after learning from it.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132549#1325494Answer by Skuta for Good excuses NOT to use version controlSkuta2008-09-25T10:41:17Z2008-09-25T10:41:17Z<p>I see only developer's personal gain of you being tied to him as he may be the only one to remember changes within versions.. if i got the question right ^^</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132555#1325550Answer by Blorgbeard for Good excuses NOT to use version controlBlorgbeard2008-09-25T10:42:24Z2008-09-25T10:42:24Z<p>I'm too lazy to learn how to use it?</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132574#13257423Answer by Joeri Sebrechts for Good excuses NOT to use version controlJoeri Sebrechts2008-09-25T10:51:32Z2008-09-25T10:51:32Z<ul>
<li>It can give a false sense of security. Using a VCS does not imply that your data is safeguarded against system failures, because you need real backups for that.</li>
<li>For small toy projects the cost of learning a VCS may outweigh the benefits.</li>
<li>Introducing a VCS at a time when you're trying to meet a deadline introduces a risk of missed deadlines (however small it is).</li>
</ul>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132575#13257515Answer by Rob Cooper for Good excuses NOT to use version controlRob Cooper2008-09-25T10:51:37Z2008-09-25T10:51:37Z<h1>My Dog Ate My Head?</h1>
<p>That's about all I got? Since I told myself off for not using SCC at home (and losing all my previous code) I have <strong>NEVER</strong> looked back. I use it all the time, I check in all the time.</p>
<p>Why the hell would you not like to be able to:</p>
<ul>
<li>Simplify backup of all your code?</li>
<li>Be able to mess with it more, knowing you can restore?</li>
<li>Realise that you completely borked some code and didn't notice and compare versions to see how you borked it?</li>
</ul>
<p>All I got is "my dog ate my head".</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132580#132580115Answer by Matt Howells for Good excuses NOT to use version controlMatt Howells2008-09-25T10:52:49Z2008-09-25T10:52:49Z<p>Excuse for not using source control:</p>
<p>"The only source control system I am allowed to use is Visual Source Safe."</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132599#1325990Answer by CiNN for Good excuses NOT to use version controlCiNN2008-09-25T10:57:24Z2008-09-25T10:57:24Z<p>i don't need to revert back, so i don't need version control !</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132615#1326158Answer by Kent Fredric for Good excuses NOT to use version controlKent Fredric2008-09-25T11:01:44Z2008-09-25T11:01:44Z<p>You <strong>don't</strong> want to know why you made a certain change 3 weeks ago because theres <em>NO</em> way you could ever want to be able to simply check the change log, and you love pain and misery and prefer to do things the old-school way, with comments and pages of commented code. </p>
<p>You also like modifying code and having bugs you fixed earlier come back, and you like not knowing why. </p>
<p>You like the sense of "mystery" and "excitement" it adds to your life. </p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132616#132616-1Answer by Toytown Mafia for Good excuses NOT to use version controlToytown Mafia2008-09-25T11:01:46Z2008-09-25T11:01:46Z<p>I use Apple's Time Machine and I work alone, so that works for me.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132619#1326192Answer by cnu for Good excuses NOT to use version controlcnu2008-09-25T11:02:29Z2008-09-25T11:02:29Z<p>If it is a one off thing which is going to be thrown out after an hour, I would not use a source control. </p>
<p>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. </p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132628#13262838Answer by Roddy for Good excuses NOT to use version controlRoddy2008-09-25T11:05:25Z2009-08-18T11:51:20Z<p>Possible 'excuses':-</p>
<ol>
<li><p>"My code is buggy, unstructured, and
unreadable. It's simply not worth
trying to keep"</p></li>
<li><p>"Management will
understand if my project slips by
six month because I accidentally
deleted something I shouldn't. They
do it all the time."</p></li>
<li>"If I delete my
5000 line source file by mistake,
chances are the total rewrite may be
better than the original.
Eventually."</li>
</ol>
<p>Feel free to add your own...</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132645#1326450Answer by PhiLho for Good excuses NOT to use version controlPhiLho2008-09-25T11:09:52Z2008-09-25T11:09:52Z<p>"There is no VCS on my iPhone/Blackberry/other small device/Apple ][, where I do all my development."</p>
<p>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...</p>
<p>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...<br />
Kludges, of course, which bite later.</p>
<p>Of course, then, you have to discipline yourself and commit on important steps.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132651#1326515Answer by SCdF for Good excuses NOT to use version controlSCdF2008-09-25T11:11:23Z2008-09-25T11:11:23Z<p>There are two main parts of version control.</p>
<ol>
<li>Having backups of old versions of 'files'</li>
<li>Being able to diff / merge / etc on various versions</li>
</ol>
<p>For part 1 there is no excuse I can think of. Part 2 however, there are situations you can argue against it since the way in which you're coding renders it useless. </p>
<p>I for example spend four weeks on a project where 'code' was stored in a binary format such that you couldn't diff or merge or do any of that good stuff.</p>
<p>I also spend a much larger amount of time (<em>shudder</em>, I don't like to think about it) 'coding' on a project which was essentially configuration into a web application which pushed stuff into a DB we didn't control. No source control possible there either. Or backups of old files.</p>
<p>Oh, how <em>fun</em> that was..</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132653#132653-1Answer by Treb for Good excuses NOT to use version controlTreb2008-09-25T11:11:36Z2008-09-25T11:11:36Z<p>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.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132659#132659-1Answer by Mike F for Good excuses NOT to use version controlMike F2008-09-25T11:13:17Z2008-09-25T11:13:17Z<p>I'm a professional programmer and I don't have to justify my working practices when they don't impact on anyone else.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132674#1326742Answer by Suma for Good excuses NOT to use version controlSuma2008-09-25T11:15:58Z2008-09-25T18:22:27Z<p>To me this seems like repeating the same (very popular) topic as in:</p>
<p><a href="http://stackoverflow.com/questions/45400/source-control-system-for-single-developer">Source control system for single developer</a></p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132688#1326880Answer by Vertigo for Good excuses NOT to use version controlVertigo2008-09-25T11:19:12Z2008-09-25T11:19:12Z<p>excuse:</p>
<p>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.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132746#1327460Answer by Benjol for Good excuses NOT to use version controlBenjol2008-09-25T11:35:56Z2008-09-25T11:35:56Z<ul>
<li>Source control costs time and/or money which I (or manager) don't want to invest.</li>
<li>I had a bad experience with SourceSafe corrupting my files once.</li>
<li>There is no source control system which perfectly adapts to my needs.</li>
</ul>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132765#132765-1Answer by Treb for Good excuses NOT to use version controlTreb2008-09-25T11:40:47Z2008-09-25T13:30:29Z<p>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.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132789#13278928Answer by David McLaughlin for Good excuses NOT to use version controlDavid McLaughlin2008-09-25T11:47:51Z2008-09-25T11:47:51Z<p>You hate your company and want to see them fail.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132822#1328220Answer by Brian G for Good excuses NOT to use version controlBrian G2008-09-25T11:53:28Z2008-09-25T11:53:28Z<p>You hate your job and want to get fired. </p>
<p>Or maybe your company cannot fire you and they can only "let you go" which means severance package?</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132906#1329060Answer by Marcos Bento for Good excuses NOT to use version controlMarcos Bento2008-09-25T12:08:36Z2008-09-25T12:08:36Z<p>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!</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132910#13291014Answer by Andrew Edgecombe for Good excuses NOT to use version controlAndrew Edgecombe2008-09-25T12:10:03Z2008-09-25T12:10:03Z<p>"I am the 'Pantless Prima Donna'! I need none of your mortal tools! I am infallible. Version control is only for people who expect to get it wrong the first time!" :-P</p>
<p><img src="http://members.whattheythink.com/images/dt040608.gif" alt="Dilbert" /></p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/133018#13301880Answer by Ian Hopkinson for Good excuses NOT to use version controlIan Hopkinson2008-09-25T12:31:24Z2008-09-25T12:31:24Z<p>The sense of danger gives my programming an edge</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/133039#1330391Answer by Onorio Catenacci for Good excuses NOT to use version controlOnorio Catenacci2008-09-25T12:35:16Z2008-09-25T12:35:16Z<p>Not exactly an answer to your question but I like these stories from <a href="http://thedailywtf.com/" rel="nofollow">The Daily WTF</a> in regards to Version Control. </p>
<ul>
<li><a href="http://thedailywtf.com/Articles/Source-Control-Mastery.aspx" rel="nofollow">Source Control Mastery</a> </li>
<li><a href="http://thedailywtf.com/Articles/The_Best-est_Version_Control.aspx" rel="nofollow">The Best-est Version Control</a></li>
</ul>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/133102#1331025Answer by Chris Noe for Good excuses NOT to use version controlChris Noe2008-09-25T12:45:51Z2008-09-25T22:30:53Z<p>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.</p>
<p>(I have never actually encountered this, and I have worked on classified projects.)</p>
<p>Think CIA black op, or presidential campaign.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/133299#1332994Answer by Chris Ballance for Good excuses NOT to use version controlChris Ballance2008-09-25T13:25:05Z2008-09-25T13:25:05Z<p>Some might think that it's job security. I disagree, but I've seen that line of thinking manifested that way.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/133784#1337840Answer by databyss for Good excuses NOT to use version controldatabyss2008-09-25T14:42:35Z2008-09-25T14:42:35Z<p>If you a masochist that loves to re-write and redesign applications, then I would avoid using source control.</p>
<p>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.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/134747#1347471Answer by Jonas for Good excuses NOT to use version controlJonas2008-09-25T17:35:31Z2008-09-25T17:35:31Z<p>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.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/134786#1347860Answer by Redbeard 0x0A for Good excuses NOT to use version controlRedbeard 0x0A2008-09-25T17:42:43Z2008-09-25T17:42:43Z<p>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...</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/134798#134798-1Answer by marc for Good excuses NOT to use version controlmarc2008-09-25T17:45:34Z2008-09-25T17:45:34Z<p>Copying directories of code around is the same thing as version control and it's free!</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/134801#13480137Answer by mike511 for Good excuses NOT to use version controlmike5112008-09-25T17:46:51Z2008-09-25T17:46:51Z<p><strong>you want to leave no evidence :)</strong></p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/134819#1348191Answer by Joshua Carmody for Good excuses NOT to use version controlJoshua Carmody2008-09-25T17:50:28Z2008-09-25T17:50:28Z<p>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.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/134846#1348469Answer by Michael Stum for Good excuses NOT to use version controlMichael Stum2008-09-25T17:54:28Z2008-09-25T17:54:28Z<p>"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"</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/134848#134848-1Answer by mgb for Good excuses NOT to use version controlmgb2008-09-25T17:54:38Z2008-09-25T22:53:00Z<p>Source code is for wimps</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/134963#1349630Answer by Kon M for Good excuses NOT to use version controlKon M2008-09-25T18:10:05Z2008-09-25T18:10:05Z<p>Good excuses include:</p>
<ul>
<li>you like living on the edge</li>
<li>you enjoy rewriting code</li>
<li>you don't work in a fast-paced environment</li>
<li>your boss doesn't care what you do and how long it takes, as long as it gets done... eventually</li>
</ul>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/135002#135002106Answer by Dan Udey for Good excuses NOT to use version controlDan Udey2008-09-25T18:17:13Z2008-09-25T18:17:13Z<p>A delightful mix of laziness and incompetence.</p>
<p>An anecdote I heard one time in regards to version control:</p>
<blockquote>
<p>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.</p>
<p>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.</p>
<p>'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.'</p>
</blockquote>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/135013#1350130Answer by Andy Lester for Good excuses NOT to use version controlAndy Lester2008-09-25T18:18:44Z2008-09-25T18:18:44Z<p>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.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/135385#135385-1Answer by steven424 for Good excuses NOT to use version controlsteven4242008-09-25T19:20:31Z2008-09-25T19:20:31Z<p>It's redundant.</p>
<p>I plan to create regular backups of my hard drive instead.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/135519#1355191Answer by Wedge for Good excuses NOT to use version controlWedge2008-09-25T19:39:52Z2008-09-26T20:30:51Z<p>If the given project is of such minor importance that completely breaking it or losing it forever would be of essentially no consequence.</p>
<p>Note that a program used by more than one person will almost never satisfy that criteria.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/136068#1360681Answer by Adam Gibbins for Good excuses NOT to use version controlAdam Gibbins2008-09-25T20:59:33Z2008-09-25T20:59:33Z<p>If I had enough reputation I'd mark you down for the title. You made my hair stand on end reading that title!</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/136652#1366524Answer by steffenj for Good excuses NOT to use version controlsteffenj2008-09-25T22:40:54Z2008-09-25T22:40:54Z<p>"I'm the only developer, we don't need version control, that's stupid"</p>
<p>That's putting your job on the line, period. Suppose his computer DOES crash, all his work is gone, so in effect, this person <strong>hasn't worked at all</strong> in the last few days, weeks, months (years???). Is slacking off like this tolerated in your company? I hope not.</p>
<p>Not using Source Control is like having this code in the initialization routine of the application you're developing:</p>
<pre><code>if (Random(1234567) == 0)
{
DeleteSourceCode();
}
</code></pre>
<p>Would you bet on that never to happen?</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/136717#1367170Answer by Mark Stock for Good excuses NOT to use version controlMark Stock2008-09-25T22:55:11Z2008-09-25T22:55:11Z<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/137067#1370671Answer by James Schek for Good excuses NOT to use version controlJames Schek2008-09-26T00:18:15Z2008-09-26T00:18:15Z<p>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.</p>
<p>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).</p>
<p>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...</p>
<p>All that said, I <strong><em>always</em></strong> use version control... and my paranoia extends to having redundant backups of the source control server as well as offsite backups.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/137130#13713014Answer by aardvark for Good excuses NOT to use version controlaardvark2008-09-26T00:36:46Z2008-09-26T00:36:46Z<p>How about...</p>
<blockquote>
<p>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.</p>
</blockquote>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/137416#1374165Answer by Pat for Good excuses NOT to use version controlPat2008-09-26T02:31:15Z2008-09-26T02:31:15Z<p>ClearCase -- this is a very good reason not to use source control ... (but I used the demo version of Perforce instead :-) )</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/137494#1374942Answer by Matthias Wandel for Good excuses NOT to use version controlMatthias Wandel2008-09-26T02:55:07Z2008-09-26T02:55:07Z<p>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 <em>something</em></p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/138516#1385163Answer by ksuralta for Good excuses NOT to use version controlksuralta2008-09-26T09:49:14Z2008-09-26T09:49:14Z<p>It's just an "Hello World!" application. We don't need version control for that!</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/138601#1386010Answer by Sindri for Good excuses NOT to use version controlSindri2008-09-26T10:11:11Z2008-09-26T10:11:11Z<p><a href="http://rads.stackoverflow.com/amzn/click/020161622X" rel="nofollow">The Pragmatic Programmer</a> 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.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/138602#1386021Answer by cretzel for Good excuses NOT to use version controlcretzel2008-09-26T10:11:18Z2008-09-26T10:11:18Z<p>There is truely no single good reason. </p>
<p>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.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/138717#1387171Answer by Oak for Good excuses NOT to use version controlOak2008-09-26T10:57:15Z2008-09-26T10:57:15Z<p>I think it would be a great excuse if you were clinically insane.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/154215#1542150Answer by Eduardo Molteni for Good excuses NOT to use version controlEduardo Molteni2008-09-30T17:57:12Z2008-09-30T17:57:12Z<p>Excuse:</p>
<blockquote>
<p>I'm using VB3 and source control breaks frx compatibility!</p>
</blockquote>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/155533#1555332Answer by dlamblin for Good excuses NOT to use version controldlamblin2008-09-30T23:11:14Z2008-09-30T23:11:14Z<p>I've got one... seriously:</p>
<blockquote>
<p>I can re-create all the code that was
not in source control faster than
anyone can retrieve it from source
control.</p>
</blockquote>
<p>It can and does happen to very very small amounts of code.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/188482#1884820Answer by Brendan for Good excuses NOT to use version controlBrendan2008-10-09T18:16:04Z2009-08-14T20:07:48Z<p>Actual reasons against the adoption of version control,</p>
<ul>
<li>Because it is a new concept to learn which is more complicated than a shared folder</li>
</ul>
<p>Reasons which make version control less compelling,</p>
<ul>
<li>Shared folders copied locally, although have less functionality, <i>do actually work</i> fine for certain codebases</li>
<li>Certain types of coding projects have relatively little use for versioning, namely code that is <em>isolated</em> and <em>static</em> i.e. written by a single programmer using very little shared code, that does not need to be developed once working</li>
<li>Because the admins won't allow it across the network</li>
</ul>
<p>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.</p>
<p>As a colleague put it, "we don't get published for writing beautiful code".</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/242303#242303-1Answer by Mike White for Good excuses NOT to use version controlMike White2008-10-28T05:17:57Z2008-10-28T05:17:57Z<p>My Answer: You program on a mac that uses Time Machine or you can't use Subversion (I personally use both.)</p>
<p>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).</p>
<p>Never ever host your version control system on the same computer/hard drive you use to develop.</p>
<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/275370#2753700Answer by Chris for Good excuses NOT to use version controlChris2008-11-08T23:27:46Z2008-11-08T23:27:46Z<p>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.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/275435#2754350Answer by John Doe for Good excuses NOT to use version controlJohn Doe2008-11-09T00:41:57Z2008-11-09T00:41:57Z<p>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 <em>would</em> do that because then I'd be able to persuade management to buy (or allow use of) something better.</p>
<p>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.....</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/520817#5208170Answer by JohnFx for Good excuses NOT to use version controlJohnFx2009-02-06T15:51:38Z2009-02-06T15:51:38Z<p>How about this?</p>
<p>"Source Control systems keep a permanent record of every mistake/bug I have ever made and then later fixed. I am a poor programmer than frequently needs to clean up the crime scene."</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/559429#559429-2Answer by Ric Tokyo for Good excuses NOT to use version controlRic Tokyo2009-02-18T01:03:31Z2009-02-18T01:03:31Z<p>You've been kidnapped and are being forced to code for the Nazis</p>
<p>(happened to me more than once)</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/559438#5594382Answer by alamodey for Good excuses NOT to use version controlalamodey2009-02-18T01:08:59Z2009-02-18T01:08:59Z<p>There is only one version of my code. Just one.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/559449#559449-1Answer by cmsjr for Good excuses NOT to use version controlcmsjr2009-02-18T01:12:09Z2009-02-18T01:12:09Z<p>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. </p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/559460#55946011Answer by Ken for Good excuses NOT to use version controlKen2009-02-18T01:16:49Z2009-02-18T01:16:49Z<p>"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</p>
<p>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.</p>
<p>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.</p>
<p>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?</p>
<p>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.</p>
<p>Some are merely managing globally-distributed teams of thousands writing operating system kernels.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/559514#5595146Answer by Neil N for Good excuses NOT to use version controlNeil N2009-02-18T01:36:19Z2009-02-18T01:36:19Z<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/766865#7668653Answer by Joshua for Good excuses NOT to use version controlJoshua2009-04-20T04:14:14Z2009-04-20T04:14:14Z<p>Perhaps you use Plan 9 operating system. If I were using that OS with its native filesystem, I would not need source control.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/1005851#10058511Answer by PintSizedCat for Good excuses NOT to use version controlPintSizedCat2009-06-17T08:43:04Z2009-06-17T08:43:04Z<p>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).</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/1271671#1271671-1Answer by Kirtan for Good excuses NOT to use version controlKirtan2009-08-13T12:34:07Z2009-08-13T12:34:07Z<p>You don't need version control if you are Chuck Norris, else its definitely required!</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/1271856#12718560Answer by Brian for Good excuses NOT to use version controlBrian2009-08-13T13:09:53Z2009-08-13T13:09:53Z<p>I have avoided checking my code into VCS systems many times. </p>
<p>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?</p>
<p>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.</p>
<p>If you're worried about backups, then put the code on the network server so it's backed up. </p>
<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/1271950#12719501Answer by boris callens for Good excuses NOT to use version controlboris callens2009-08-13T13:28:35Z2009-08-13T13:28:35Z<p>My boss won't let me?
(true story, I do it secretly :S)</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/1272503#12725030Answer by Kai for Good excuses NOT to use version controlKai2009-08-13T14:56:00Z2009-08-13T14:56:00Z<p>you're the best coder in the world (and all your teammates as well) - then it's just needless </p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/1272554#12725540Answer by THEn for Good excuses NOT to use version controlTHEn2009-08-13T15:04:31Z2009-08-13T15:22:18Z<p>How about this</p>
<ol>
<li><p>I don't need version control because
I have incremental backup system.</p></li>
<li><p>I am an ABAP programmer... :)</p></li>
</ol>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/1272646#1272646-1Answer by Andy for Good excuses NOT to use version controlAndy2009-08-13T15:16:57Z2009-08-13T15:16:57Z<p>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!</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/1275704#12757040Answer by Stevoni for Good excuses NOT to use version controlStevoni2009-08-14T02:11:33Z2009-08-14T02:11:33Z<p>Excuse given to me:
"I never make mistakes and won't need to restore previous versions."</p>
<p>Now that I'm using TFS, I can safely say, I get nervous writing code while not using it.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/1275741#12757410Answer by brianegge for Good excuses NOT to use version controlbrianegge2009-08-14T02:26:56Z2009-08-14T02:26:56Z<p>I can't find a version control system which works with punch cards.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/1275760#12757601Answer by brianegge for Good excuses NOT to use version controlbrianegge2009-08-14T02:33:00Z2009-08-14T02:33:00Z<p>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:</p>
<pre><code>// 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);
}
</code></pre>
<p>The beauty is in the simplicity!</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/1280002#12800020Answer by Godzila for Good excuses NOT to use version controlGodzila2009-08-14T20:23:35Z2009-08-14T20:23:35Z<p>"I am just lazy and want to spend more time browsing youtube!"</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/1280045#12800451Answer by Steve Losh for Good excuses NOT to use version controlSteve Losh2009-08-14T20:32:33Z2009-08-14T20:32:33Z<p>Not sure if someone else has already said this, but perhaps:</p>
<blockquote>
<p>"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."</p>
</blockquote>
<p>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.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/1280120#12801200Answer by Egwor for Good excuses NOT to use version controlEgwor2009-08-14T20:46:09Z2009-08-14T20:46:09Z<p>Because I trusted Bill when he said, </p>
<blockquote>
<p><em>640K ought to be enough for anybody.</em></p>
</blockquote>
<p>.....and I just ran out of space...</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/1293358#12933581Answer by m_oLogin for Good excuses NOT to use version controlm_oLogin2009-08-18T11:46:17Z2009-08-18T11:46:17Z<p>masochism </p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/1342284#13422840Answer by Chris Kugler for Good excuses NOT to use version controlChris Kugler2009-08-27T16:41:28Z2009-08-27T16:41:28Z<p>If the person is adamant about not using source control, then I hope that they atleast back up regulary to an external device. </p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/1342607#13426073Answer by Ken for Good excuses NOT to use version controlKen2009-08-27T17:37:40Z2009-08-27T17:37:40Z<p>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 <em>do</em>.</p>
<p>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.</p>
<p>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:</p>
<ul>
<li>a bunch of small, independent pieces of data</li>
<li>that are inherently temporal, and are rarely edited in-place, in the sense that changes consist primarily of adding new data</li>
<li>which might be large binary files, a weakness of VCSs</li>
<li>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</li>
<li>which are already backed up</li>
</ul>
<p>That seems like a good starting point.</p>
<p>Of course, I <em>want</em> 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.</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/1468863#14688631Answer by Dave for Good excuses NOT to use version controlDave2009-09-23T22:28:08Z2009-09-23T22:28:08Z<p>This project is for my personal use and I don't care if I lose it.</p>