Do I really need version control? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-21T21:34:23Z http://stackoverflow.com/feeds/question/250984 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/250984/do-i-really-need-version-control 17 Do I really need version control? Ionut Staicu 2008-10-30T17:14:43Z 2009-11-18T05:44:08Z <p>Hi. I read all over the internet (various sites and blogs) about version control. How great it is and how all developer NEED to use it because is a god bless.</p> <p>Here is the question: do I really need this? I'm a front end developer (usually just html/css/javascript) and I NEVER had a problem like "OMG, my files from yesterday!" I've tried to use it, installed svn and tortoise, I understand the concept behind VC but... I can't use it (weird for me).</p> <p>Ok, so... That's bad? I usually work alone (freelancer) and I had no client that asked me to use svn (but never is too late for this, right?). So, should I start and struggle to learn to use svn (or something similar?) Or it's just a waste of time?</p> <p>Thanks!</p> <p><hr /></p> <p>Related question: <a href="http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control#132522">Good excuses NOT to use version control</a></p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/250988#250988 32 Answer by edg for Do I really need version control? edg 2008-10-30T17:15:46Z 2008-10-30T17:56:38Z <p>There are lots of benefits, yes you need it.</p> <p><a href="http://stackoverflow.com/questions/3553/one-piece-of-advice">One piece of advice</a></p> <p><a href="http://stackoverflow.com/questions/59561/what-toolstechniques-can-benefit-a-solo-developer">What tools/techniques can benefit a solo developer?</a></p> <p><a href="http://stackoverflow.com/questions/138621/best-version-control-for-lone-developer">Best Version control for lone developer</a></p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/250991#250991 25 Answer by Mark Cidade for Do I really need version control? Mark Cidade 2008-10-30T17:16:11Z 2008-10-30T17:16:11Z <p>You don't need version control any more than a trapese artist needs a safety net. It's like backing up your hard drive—most of the time it seems redundant as nothing happens but it <strong>will</strong> be needed eventually. There's no maybes here. It <strong>will</strong> happen. And you can never predict when and the past is a poor indicator as to when it will happen. It may happen only <em>once</em> ever in the future but even if you know it'll happen once you won't know how bad it will be. </p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/250993#250993 9 Answer by Tigraine for Do I really need version control? Tigraine 2008-10-30T17:16:15Z 2008-10-30T17:16:15Z <p>Yes!</p> <p>Do it. It won't hurt you.. </p> <p>I usually switch from Laptop to PC and back and it's absolutely great to have your code somewhere in a central repository.</p> <p>Sometimes it's great to go just revert to the latest revision because you screwed up something that would be too difficult to fix.. </p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/250998#250998 6 Answer by Galwegian for Do I really need version control? Galwegian 2008-10-30T17:16:56Z 2008-10-30T17:16:56Z <p>Convincing opinion here: <a href="http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control#132522">good-excuses-not-to-use-version-control</a></p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/250999#250999 0 Answer by Elie for Do I really need version control? Elie 2008-10-30T17:17:11Z 2008-10-30T17:17:11Z <p>If you are working on your own, and are performing backups on a regular basis, VC may not be needed (unless you count your backups as version history). As soon as you start working with another developer, you should get version control in place so that you don't start over-writing each other's work.</p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/251002#251002 3 Answer by chills42 for Do I really need version control? chills42 2008-10-30T17:17:46Z 2008-10-30T17:17:46Z <p>Try a DVCS like <a href="http://git.or.cz/" rel="nofollow">git</a> or <a href="http://bazaar-vcs.org/" rel="nofollow">bazaar</a>. They are incredibly easy to set up, easy to use, and offer all the important features of SVN, CVS, etc.</p> <p>The key is that you can revert back to a working version when you break something, which is often much faster than undoing the change manually.</p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/251003#251003 3 Answer by swilliams for Do I really need version control? swilliams 2008-10-30T17:17:48Z 2008-10-30T17:17:48Z <p>Branching doesn't seem useful to you? Have you never wanted to just try something out to see if it would work? I do a lot of plain old html/css stuff too, and I find that invaluable. There is literally no danger in branching to test something, seeing if it works, and deciding "meh" and then just rolling back.</p> <p>I've never needed to get to a backup (knock on wood), but I find just the rolling back functionality invaluable.</p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/251005#251005 1 Answer by Null303 for Do I really need version control? Null303 2008-10-30T17:17:52Z 2008-10-30T17:17:52Z <p>Even if you don't need it right now, it is something you will need whenever you work in a team.</p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/251009#251009 3 Answer by Corbin March for Do I really need version control? Corbin March 2008-10-30T17:19:06Z 2008-10-30T17:19:06Z <p>A few perks as a freelancer:</p> <ul> <li>Know definitively what you changed in every single file and when (as long as you check in often)</li> <li>Rollback to any version in your past. Surprising how often this is valuable.</li> <li>Track a set of changes as a 'release'. This way you know what each client is currently using and what's in development.</li> <li>Backup</li> <li>The ability to easily share a project if you suddenly aren't solo</li> </ul> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/251011#251011 1 Answer by chris for Do I really need version control? chris 2008-10-30T17:19:34Z 2008-10-30T17:19:34Z <p>Yes you need it. </p> <p>At the very least, for a single developer shop, you need to move code into a ProjectName-Date-Time directory several times a day.</p> <p>That is, write a script that will automatically back up your working directory at lunch and at quitting time, without overwriting other back ups.</p> <p>This can grow pretty fast, so eventually you'll want to save only the differences between files, which is what a VC application does.</p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/251014#251014 1 Answer by Adam for Do I really need version control? Adam 2008-10-30T17:20:28Z 2008-10-30T17:20:28Z <p>Having a history of changes to your html/css/javascript can be a godsend. Being able to compare your front-end to the code a month, or several months ago can really go a long way in figuring out why suddenly the template is all askew. </p> <p>Plus if you ever want/need to get help on your project(s), you'll have an easy system to distribute, track, and deploy updated content.</p> <p>Definitely do it, you'll thank yourself once you get used to it.</p> <p>Checkout (one time) Update (beginning of day) Commit (end of task/change after testing)</p> <p>That's all there is to it. Don't commit EVERY single modification that you're refreshing in the browser, just the one's you want to go live.</p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/251021#251021 2 Answer by Vern Takebayashi for Do I really need version control? Vern Takebayashi 2008-10-30T17:22:34Z 2008-10-30T17:22:34Z <p>Since you usually work alone, I would say that it is a good idea to use version control. One of the main benefits I have found in using version control (Subversion in my case), is that when working alone it gives me more confidence in trying a new approach to the problem. You can always branch to a new method or framework of solving the problem and see if you like it better. If it turns out that this branch doesn't work, you can just abandon it and go back to the old method. This also makes it easier to try out the different solutions side by side.</p> <p>So, if you have ever seen a different approach to solving a problem and you wanted to try it out, I would definitely use version control as a tool to make this easier.</p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/251022#251022 1 Answer by Dining Philanderer for Do I really need version control? Dining Philanderer 2008-10-30T17:22:36Z 2008-10-30T17:22:36Z <p>Think if it like a backup. It is a little irritating until the day you need it. Then the amount of work you lose is directly proportional to the frequency of your backups.</p> <p>Another benifit is being able to look at old ways you did things that may have become obsolete in a certain spot but could be usefull in another. Just cut and paste the old code that you got when doing a compare.</p> <p>That is unless you like reinventing the wheel you already reinvented...</p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/251023#251023 2 Answer by Keith for Do I really need version control? Keith 2008-10-30T17:22:41Z 2008-10-30T17:22:41Z <p>I wouldn't hire a contractor without them integrating into our processes. They would have to access code via our SVN, and would be unlikely to get paid without meeting unit testing and code review requirements.</p> <p>If contracting I'd make sure to have solid experience of both VSS (check-in/out) and CVS (merge &amp; conflict) models.</p> <p>Working on your own you have a great opportunity to play and learn with the latest - I'd be trying out Git.</p> <p>As a lone developer you can think of source control as an unlimited undo - one that works across sessions and reboots.</p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/251024#251024 1 Answer by CYBRFRK for Do I really need version control? CYBRFRK 2008-10-30T17:22:51Z 2008-10-30T17:22:51Z <p>When things can go wrong they will. It is very nice to have the ability to reference code you may have deleted a month ago, or to recover the entire project after a hardware failure or upgrade.</p> <p>There may also be a point in the future when the project is worked on by more than you. The ability to prevent (or control) branching and versioning is a must in an environment like that.</p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/251025#251025 1 Answer by Ali A for Do I really need version control? Ali A 2008-10-30T17:22:55Z 2008-10-30T17:22:55Z <p>Must must must must must must. You must use version control.</p> <p>This is of the deepest importance.</p> <p>If you don't understand why now, you will one day.</p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/251026#251026 13 Answer by Kenny for Do I really need version control? Kenny 2008-10-30T17:23:10Z 2008-10-30T17:23:10Z <p>It's like asking, do I really need a condom? How safe do you need to be?</p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/251094#251094 3 Answer by Joe The Software Developer for Do I really need version control? Joe The Software Developer 2008-10-30T17:45:31Z 2008-10-30T17:45:31Z <p>Easy question. The answer is yes.</p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/251101#251101 0 Answer by Ionut Staicu for Do I really need version control? Ionut Staicu 2008-10-30T17:46:16Z 2008-10-30T17:46:16Z <p>WOW! So many answers! Thank you guys! I really don't know which one to pick ! Ok, you convinced me guys! Now... What system should i use? SVN? CVS? GIT? Other? Which one? I preferably want something to run on local server (best scenario on windows, but linux - on vmware - can be a great variant) and with VERY small curve of learning.</p> <p>Thanks again !</p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/251121#251121 61 Answer by Bill Karwin for Do I really need version control? Bill Karwin 2008-10-30T17:53:45Z 2009-11-18T05:44:08Z <p>Here's a scenario that may illustrate the usefulness of source control even if you work alone.</p> <blockquote> <p>Your client asks you to implement an ambitious modification to the website. It'll take you a couple of weeks, and involve edits to many pages. You get to work.</p> <p>You're 50% done with this task when the client calls and tells you to drop what you're doing to make an urgent but more minor change to the site. You're not done with the larger task, so it's not ready to go live, and the client can't wait for the smaller change. But he also wants the minor change to be merged into your work for the larger change.</p> <p>Maybe you are working on the large task in a separate folder containing a copy of the website. Now you have to figure out how to do the minor change in a way that can be deployed quickly. You work furiously and get it done. The client calls back with further refinement requests. You do this too and deploy it. All is well.</p> <p>Now you have to merge it into the work in progress for the major change. What did you change for the urgent work? You were working too fast to keep notes. And you can't just diff the two directories easily now that both have changes relative to the baseline you started from.</p> </blockquote> <p>The above scenario shows that source control can be a great tool, even if you work solo. </p> <ul> <li>You can use branches to work on longer-term tasks and then merge the branch back into the main line when it's done.</li> <li>You can compare whole sets of files to other branches or to past revisions to see what's different. </li> <li>You can track work over time (which is great for reporting and invoicing by the way).</li> <li>You can recover any revision of any file based on date or on a milestone that you defined.</li> </ul> <p><strong>Edit:</strong> for solo work, Subversion is recommended. CVS is all but antiquated, and GIT is more useful for distributed teams. A good book is "<a href="http://www.pragprog.com/titles/svn2/pragmatic-version-control-using-subversion" rel="nofollow">Pragmatic Version Control using Subversion, 2nd Edition</a>" by Mike Mason.</p> <p><strong>Update:</strong> If you prefer git, a good book is "<a href="http://www.pragprog.com/titles/tsgit/pragmatic-version-control-using-git" rel="nofollow">Pragmatic Version Control Using Git</a>" by Travis Swicegood.</p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/251142#251142 0 Answer by for Do I really need version control? 2008-10-30T17:59:57Z 2008-10-30T17:59:57Z <p>I think you've made the right decision to use some kind of version control. For simplicity, I'd go with SVN (ignore CVS as SVN is basically a "better" CVS)</p> <p>SVN can work with "local" repositories right on the filesystem and on lots of platform so you don't have to bite off too much in infrastructure (servers, networks, etc)</p> <p>Great resource for SVN: <a href="http://svnbook.red-bean.com" rel="nofollow">http://svnbook.red-bean.com</a></p> <p>I don't know much about GIT, but it being open source and gain lots of mindshare probably has alot of similar advantages!</p> <p>Borrowing a quote from somewhere: You might not need it now, but when you do, you'll be glad you did.</p> <p>Happy versioning!</p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/251143#251143 0 Answer by Ionut Staicu for Do I really need version control? Ionut Staicu 2008-10-30T18:00:04Z 2008-10-30T18:00:04Z <p>Another thing that i don't get it... Should i "checkout" on every single save? Or only once in a while?</p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/251171#251171 1 Answer by Max Howell for Do I really need version control? Max Howell 2008-10-30T18:07:15Z 2008-10-30T18:07:15Z <p>When your client phones up in a panic because something is broken on the live site and it's a regression, you'll be glad you can just open TortoiseSVN and see what it was you did last Tuesday that caused the breakage.</p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/251179#251179 0 Answer by Natron for Do I really need version control? Natron 2008-10-30T18:09:45Z 2008-10-30T18:09:45Z <p>Although old and crude, we have found Microsoft Visual SourceSafe to work. It works great for keeping version history. If you are not to worried about branching, which being the solo developer you may not, it might just fit the bill.</p> <p>As far as checking in, finding a good checkpoint can be a challenge, but checking in on every save will only make versioning hard to track.</p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/251200#251200 0 Answer by Pulsehead for Do I really need version control? Pulsehead 2008-10-30T18:15:38Z 2008-10-30T18:15:38Z <blockquote> <p>"Do I really need version control?"</p> </blockquote> <p>Yes. Unless you write perfect code that never needs to get changed.</p> <p>An example: I had a requirement. I built up a webpage, spent a day or so on the page, it's Section 508 compatibility (this was about 6-7 years ago), and uploaded to the website. Next the requirement was changed drastically. I spend another day working on the page (and Hayuge Excel files didn't convert into accessible HTML easily). About a week later, client switches asks that we go back to Version A. Source control would have done this in about 10 minutes. As it was, I had to blow another %$#^^&amp;$# day on the task.</p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/263244#263244 1 Answer by Brian for Do I really need version control? Brian 2008-11-04T20:04:17Z 2008-11-04T20:04:17Z <p>It's really odd. Ever since I started using version control, I've very occasionally had the need to look up old copies of my code and use them. I never needed to do this before...probably because the idea of doing didn't really stick. It's easy not to notice those times when you could have found version control helpful.</p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/309940#309940 0 Answer by 6eorge Jetson for Do I really need version control? 6eorge Jetson 2008-11-21T19:45:58Z 2008-11-21T19:45:58Z <p>Once you start working on a team that references ever upgrading "components" from muliple callers/applications, version control will be an absolute must. In that environment, there is no way that you can keep up w/ all the permutations of possible change.</p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/1005643#1005643 0 Answer by rmartinez for Do I really need version control? rmartinez 2009-06-17T07:45:38Z 2009-06-17T07:45:38Z <p>Yes, you need version control either for development purposes or simply for storing your documents. This way, you can go back in time if you're required to do so in order to revert changes or mistake made on a code or documents.</p>