Checking in of "commented out" code - Stack Overflow most recent 30 from stackoverflow.com 2010-03-21T02:37:44Z http://stackoverflow.com/feeds/question/758279 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code 47 Checking in of "commented out" code John http://stackoverflow.com/users/83091 2009-04-16T22:24:07Z 2009-12-21T08:06:07Z <p>Ok, here is something that has caused some friction at my current job and I really didn't expect it to. Organized in house software development is a new concept here and I have drawn up a first draft of some coding guidelines.</p> <p>I have proposed that "commented out" code should never be checked into the repository. The reason I have stated this is that the repository maintains a full history of the files. If you are removing the functional code then remove it altogether. The repository keeps your changes so it is easy to see what was changed.</p> <p>This has caused some friction in that another developer believes that taking this route is too restrictive. This developer would like to be able to comment out some code that he is working on but is incomplete. This code then would never have been checked in before and then not saved anywhere. We are going to be using TFS so I suggested that shelving the changes would be the most correct solution. It was not accepted however because he would like to be able to checkin partial changes that may or may not be deployed.</p> <p>We want to eventually get to a point where we are taking full advantage of Continuous Integration and automatically deploying to a development web server. Currently there is no development version of web servers or database servers but that will all be changed soon.</p> <p>Anyway, what are your thoughts? Do you believe that "commented out" code is useful to have in the repository?</p> <p>I'm very interested to hear from others on this topic.</p> <p>Edit: For clarity sake, we don't use private branches. If we did then I'd say do what you want with your private branch but don't ever merge commented out code with the trunk or any shared branches.</p> <p>Edit: There is no valid reason we don't use private or per user branches. It's not a concept I disagree with. We just haven't set it up that way yet. Perhaps that is the eventual middle ground. For now we use TFS shelving.</p> http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code/758288#758288 66 Answer by Rex M for Checking in of "commented out" code Rex M http://stackoverflow.com/users/67 2009-04-16T22:26:43Z 2009-05-04T23:02:21Z <p>There may be others with different experiences, but in mine checking in half-finished code is a horrible idea, period.</p> <p>Here are the principles I have learned and try to follow:</p> <ul> <li>Check in often - at least once, but preferably many times per day</li> <li>Only check in complete functionality</li> <li>If the first and second conflict (e.g. it takes more than a day to make the functionality work) then the task is too large - break it into smaller completable tasks.</li> </ul> <p>This means:</p> <ul> <li>Commented-out code should never be checked in since it is not functional</li> <li>Commenting is not a valid archival strategy, so whether it's code yet-to-be-finished or code that's being retired, commenting and checking in doesn't make any sense.</li> </ul> <p>So in summary, NO! If the code is not ready to go to the next stage (whichever that is for you: IntTest/QA/UAT/PreProd/Prod), it should not be committed to a trunk or multi-developer branch. Period.</p> <p>Edit: After reading the other answers and comments, I'll add that I don't think it's necessarily a good idea to <em>ban</em> commented code (not sure how you'd enforce that anyway). What I will say is that you should get everyone on your team to buy in to the philosophy I described above. The team I work on embraces it wholeheartedly. As a result, source control is a frictonless team-member, one that helps us get our job done.</p> <p>People who don't embrace that philosophy usually cause <a href="http://www.davecheong.com/2006/06/30/broken-windows-theory-in-software-and-your-personal-life/" rel="nofollow">broken windows</a> and are often frustrated by source control. They see it as a necessary evil at best, and something to avoid at worst; which leads to infrequent checkins, which means changesets are huge and hard to merge, which compounds frustration, makes checkins something to avoid even more, etc. This is ultimately an attitude thing, not really a process thing. It's easy to put up mental barriers against it; it's easy to find reasons why it won't work, just like it's easy to find reasons not to diet if you don't really want to. But when people <em>do</em> want to do it and are committed to changing their habits, the results are dramatic. The burden is on you to sell it effectively.</p> http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code/758291#758291 2 Answer by Cannonade for Checking in of "commented out" code Cannonade http://stackoverflow.com/users/73488 2009-04-16T22:27:42Z 2009-04-16T22:56:08Z <p>I absolutely agree that commented out code shouldn't be checked into the repository, that is what source code control is for.</p> <p>In my experience when a programmer checks in commented out code, it is because he/she is not sure what the right solution is and is happier leaving the alternate solution in the source in the hope that someone else will make that decision. </p> <p>I find it complicates the code and makes it difficult to read.</p> <p>I have no problem with checking in half finished code (so you get the benefit of source control) that isn't called by the live system. My problem is with finding sections of commented code with no explanation the dilemma was that resulted in the code being excluded.</p> http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code/758293#758293 14 Answer by Fortyrunner for Checking in of "commented out" code Fortyrunner http://stackoverflow.com/users/16828 2009-04-16T22:28:08Z 2009-04-16T22:28:08Z <p>I think <em>never</em> is too strong a condition.</p> <p>I tend to comment out, checkin, run the tests, have a think and then remove comments after the next release.</p> http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code/758294#758294 32 Answer by Jekke for Checking in of "commented out" code Jekke http://stackoverflow.com/users/5287 2009-04-16T22:28:21Z 2009-04-16T22:28:21Z <p>"Never" is rarely a good word to use in guidelines.</p> <p>Your colleague has a great example of when it might be appropriate to check in code that is commented out: When it is incomplete and might break the application if checked in while active.</p> <p>For the most part, commenting out <strong>dead</strong> code is unnecessary in a well-managed change-controlled system. But, not all commented code is "dead."</p> http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code/758304#758304 4 Answer by sgreeve for Checking in of "commented out" code sgreeve http://stackoverflow.com/users/27615 2009-04-16T22:32:00Z 2009-04-16T22:42:20Z <p>I broadly agree with the principle that commented out code shouldn't be checked in. The source control system is a shared resource, and your colleague is, to an extent, using it as his personal scratch pad. This isn't very considerate to the other users, especially if you subscribe to the idea of shared ownership of the codebase. </p> <p>The next developer to see that commented-out code would have no idea that it's a work in progress. Is he free to change it? Is it dead code? He doesn't know. </p> <p>If your colleague's change isn't in a state where it can be checked in, he needs to finish it, and/or learn to make smaller, incremental changes. </p> <p>"Checking in partial changes that may or may not be deployed" - presumably that also means may or may not be tested? That's a slippery slope to a very ropey code base. </p> http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code/758307#758307 1 Answer by ojrac for Checking in of "commented out" code ojrac http://stackoverflow.com/users/20760 2009-04-16T22:33:29Z 2009-04-16T22:33:29Z <p>I think "Never" is too strong a rule. I'd vote to leave some personal leeway around whether people check commented code in to the repository. The ultimate goal should be coder productivity, not "a pristine repository."</p> <p>To balance that laxness out, make sure everyone knows that commented out code has an expiration date. Anyone is allowed to delete the commented code if it's been around for a full week and never been active. (Replace "a week" with whatever feels right to you.) That way, you reserve the right to kill clutter when you see it, without interfering too directly with people's personal styles.</p> http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code/758311#758311 3 Answer by Kyle W. Cartmell for Checking in of "commented out" code Kyle W. Cartmell http://stackoverflow.com/users/69365 2009-04-16T22:34:59Z 2009-04-16T22:34:59Z <p>Perhaps the real question here is whether developers should be allowed to check in incomplete code?</p> <p>This practice would seem to be contradictory to your stated goal of implementing continuous integration.</p> http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code/758313#758313 11 Answer by Eddie for Checking in of "commented out" code Eddie http://stackoverflow.com/users/57752 2009-04-16T22:35:29Z 2009-04-21T14:33:54Z <p>I would certainly discourage, strongly, ever checking in commented-out code. I would not, however, absolutely ban it. <em>Sometimes</em> (if rarely) it is appropriate to check commented-out code into source control. Saying "never do that" is too restrictive.</p> <p>I think we all agree with these points:</p> <ul> <li>Never check dead code into source control</li> <li>Never check broken (non-functioning) code into source control, at least <strong>never</strong> to trunk and only very rarely to a private branch, YMMV</li> <li>If you have temporarily commented something out or broken something for debugging purposes, don't check the code in until you restore the code to its correct form</li> </ul> <p>Some of are saying there are other categories, such as <em>temporarily</em> removed code, or an incremental but incomplete improvement that includes a small amount of commented-out code as documentation of what comes next, or a <em>very short</em> (ideally 1 line) snippet of commented out code showing something that should <em>never</em> be re-added. Commented-out code should ALWAYS be accompanied by a comment that says why it is commented out (and not just deleted) and gives the expected lifetime of the commented-out code. For example, "The following code does more harm than good, so is commented out, but needs to be replaced before release XXX."</p> <p>A comment like the above is appropriate if you are delivering a hotfix to stop a customer's bleeding and you don't have the immediate opportunity to find the ultimate fix. After delivering the hotfix, the commented-out code is a reminder that you still have something that needs fixing.</p> <p>When do I check in commented-out code? One example is when I am tentatively removing something that I think there's a high probability will have to be re-added in the near future, in some form. The commented-out code is there to serve as a direct reminder that this is incomplete. Sure, the old version is in source control and you could just use a <strong>FIXME</strong> comment as a flag that something more is needed. However, sometimes (if not often) code is the better comment.</p> <p>Also, when a bug is fixed by removing one line (or more rarely, two lines) of code, I'll sometimes just comment out the line with a comment to <em>never</em> re-enable that code with a reason why. This sort of comment is clear, direct, and concise.</p> <p>Rex M said: 1) Only check in complete functionality, 2) [If] the task is too large - break it into smaller completable tasks.</p> <p>In response: Yes, this is the ideal. Sometimes neither option is achievable when you are working on production code and have an immediate, critical problem to fix. Sometimes to complete a task, you need to put a version of code in the field for a while. This is especially true for data gathering code changes when you're trying to find the root cause of a problem.</p> <p>For the specific instance being asked about in the more general question ... as long as the developer is checking commented-out code into a private branch that no-one will see but that developer (and perhaps someone the developer is collaborating with), it does little harm. But that developer should (almost) never deliver such code into trunk or an equivalent. Trunk should always build and should always function. Delivering unfinished code to trunk is almost always a very bad idea. If you let a developer check unfinished or temporary code into a private branch, then you have to rely on the developer to not forget to scrub the code before delivering into trunk.</p> <p>To clarify in response to comments to other answers, if code is commented out and checked in, my expectation that the code will function if uncommented drops with the length of time the code has been commented out. Obviously, refactoring tools will not always include comments in their refactoring. Almost always, if I put commented-out code into production, the code is there to serve as a refined comment, something more specific than prose, that something needs to be done there. It is not something that should have a long life.</p> <p>Finally, if you can find commented-out code in every source file, then something is wrong. Delivering commented-out code into trunk for <em>any</em> reason should be a rare event. If this occurs often, then it becomes clutter and loses its value.</p> http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code/758318#758318 10 Answer by James Schek for Checking in of "commented out" code James Schek http://stackoverflow.com/users/17871 2009-04-16T22:37:48Z 2009-04-16T22:37:48Z <p>Commented out code should <em>never</em> be checked-in for the purpose of maintaining history. That is the point of source control.</p> <p>People are talking a lot of ideals here. Maybe unlike everyone else, I have to work on multiple projects with multiple interruptions with the "real world" ocassionally interrupted my workday.</p> <p>Sometimes, the reality is, I have to check-in partially complete code. It's either risk losing the code or check-in incomplete code. I can't always afford to "finish" a task, no matter how small. But I will <em>not</em> disconnect my laptop from the network without checking-in all code.</p> <p>If necessary, I will create my own working branch to commit partial changes.</p> http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code/758325#758325 2 Answer by riney for Checking in of "commented out" code riney http://stackoverflow.com/users/90375 2009-04-16T22:40:50Z 2009-04-16T22:40:50Z <p>It depends. If it's being left there for purposes of illustration, maybe. It could possibly be useful during refactoring. Otherwise, and generally, no. Also, commenting out unfinished code is bound to be both failure-prone and a time sink. Better he break the code into smaller pieces and check them in when they work.</p> http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code/758339#758339 3 Answer by T.E.D. for Checking in of "commented out" code T.E.D. http://stackoverflow.com/users/29639 2009-04-16T22:47:20Z 2009-04-17T14:25:42Z <p>This shows a fundamental difference in two schools of thought: Those who only check in working code that they are satisfied with and feel is worthy of saving, and those who check in their work so the revision control is there to backstop them against data loss.</p> <p>I'd charactarize the latter as "those who like to use their revision control system as a poor-man's tape backup", but that would be tipping my hand as to which camp I'm in. :-)</p> <p>My guess is that you are of the "good code" camp, and he is of the "working code" camp.</p> <p>[EDIT]</p> <p>From the comments, yes I guessed right.</p> <p>As I said, I'm with you, but as near as I can tell this is a minority opinion, both here on stackoverflow and where I work. As such, I don't think you can really enshrine it in your development standards as the only way to operate. Not if you want the standards followed anyway. One thing a good leader knows is to never give an order they <em>know</em> won't be followed.</p> <p>btw: <em>Good</em> editors will help with keeping old versions. For example, in Emacs I set kept-old-versions and kept-old-versions to 10, which has it keep around the last 10 saves of my files. You might look into that as a way to help your argument against the revision-control-as-backup crowd. However, you won't ever win the argument.</p> http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code/758341#758341 0 Answer by DJ for Checking in of "commented out" code DJ http://stackoverflow.com/users/10492 2009-04-16T22:48:48Z 2009-04-16T22:48:48Z <p>I don't know - I always comment out the <strong>original</strong> lines before I make changes - it helps me revert them back if I change my mind. And yes I do check them in. </p> <p>I do however strip out any old commented code from the previous check-in.</p> <p>I know I could look at the diff logs to see what's changed but it's a pain - it's nice to see the last changes right there in the code. </p> http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code/758345#758345 -1 Answer by jw for Checking in of "commented out" code jw http://stackoverflow.com/users/84859 2009-04-16T22:50:56Z 2009-04-16T22:50:56Z <p>I think there are better alternatives to commented-out code.</p> <p>One option which allows this other developer to check in temporary or experimental code is to have per-developer #defines (assuming you're using a language that supports it).</p> <p>I have worked at places where every coder had their own #define, matching their username, which they could use for things that only they were interested in. Eventually when the code was ready for prime-time, the #if checks were removed.</p> <p>For instance you might have</p> <pre><code>#if JOEBLO // This code is experimental // ... code goes here ... #endif // JOEBLO </code></pre> <p>Regarding <a href="http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code/758288#758288">Rex M's answer</a>, I think there are sometimes cases when the incremental check-in you want to make (to record progress) does not function well enough to enable for everyone. In such cases, the #define is useful.</p> <p>Another alternative is to locally use a DVCS like Mercurial to track your changes, then when you get to a stable "ready for the public" state, you push those changes out to the team. Be careful of submitting too much at once, though.</p> http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code/758349#758349 3 Answer by jean for Checking in of "commented out" code jean http://stackoverflow.com/users/65712 2009-04-16T22:52:11Z 2009-04-16T22:52:11Z <p>My view: if developers are working on their own branches, or in their own sandbox area, then they should be able to check in whatever they want. It's when they check code into a shared branch (a feature branch, or a team's branch, or of course MAIN/trunk) that the code should be as pristine as possible (no commented out code, no more FIXMEs, etc).</p> http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code/758357#758357 4 Answer by Robert Gould for Checking in of "commented out" code Robert Gould http://stackoverflow.com/users/15124 2009-04-16T22:55:38Z 2009-04-16T22:55:38Z <p>When you need to add a small feature or bug fix like NOW, within the next 3 minutes and you have to fix a file you have some half developed code on I'd say it's ok, practical needs rule over pragmatic ideals on the battlefield.</p> http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code/758381#758381 3 Answer by Joshua for Checking in of "commented out" code Joshua http://stackoverflow.com/users/14768 2009-04-16T23:02:35Z 2009-04-16T23:02:35Z <p>In my experience, developer switches are commented out code.</p> <p>Sometimes, new back-ends are built in parallel, with the activating switchs commented out in source control.</p> <p>Some bizarre feature we need once on a blue moon but no customer will ever need is often implemented that way. These things usually carry a high risk of security or data integrity bypass so we don't want them active outside of development. Requiring a developer who would use it to uncomment the code first seems to be the easiest way of getting it.</p> http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code/758400#758400 1 Answer by gbrandt for Checking in of "commented out" code gbrandt http://stackoverflow.com/users/62488 2009-04-16T23:08:06Z 2009-04-16T23:08:06Z <p>Repositories are backup of code. If I am working on code but it is not completed, why not comment it out and check it in at the end of the day. That way if my hard drive dies overnight I will not have lost any work. I can check out the code in the morning uncomment it and keep on going.</p> <p>The only reason I would comment it out is because I would not want to break the overnight build.</p> http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code/758479#758479 0 Answer by Mark Simpson for Checking in of "commented out" code Mark Simpson http://stackoverflow.com/users/83891 2009-04-16T23:45:26Z 2009-04-16T23:45:26Z <p>A nice compromise is to write a little tool that dumps your checked out/modified files to a network backup drive. That way, you can modify til your heart's content and have your work backed up, but you never have to check in experimental or unfinished code.</p> http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code/758502#758502 6 Answer by Gordon J Milne for Checking in of "commented out" code Gordon J Milne http://stackoverflow.com/users/0 2009-04-16T23:54:25Z 2009-04-16T23:54:25Z <p>In general, checking in commented-out code is wrong as it creates confusion amongst those who are not the original author and need to read or amend the code. In any event, the original author often ends up confused about the code after 3 months have passed.</p> <p>I espouse the belief that the code belongs to the company, or team, and that it is your responsibility to make things easy for your peers. Checking in commented-out code without also adding a comment about why it is being retained is tantamount to saying:</p> <blockquote> <p><em>I don't mind if you end up all confused over why this stuff is here. My needs are more important that yours which is why I have done this. I do not feel any need to justify to you, or anyone else, why I have done this.</em></p> </blockquote> <p>For me commented-out code is <em>normally</em> a big f**k you from a less that thoughtful co-worker.</p> http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code/758568#758568 1 Answer by dasil003 for Checking in of "commented out" code dasil003 http://stackoverflow.com/users/8376 2009-04-17T00:23:37Z 2009-04-17T00:23:37Z <p>There is clearly a tension between 1) checking in early, and 2) always maintaining the repository in a working state. If you have more than a few developers, the latter is going to take increasing precedence, because you can't have one developer crapping all over everyone else for his own personal workflow. <em>That said</em>, you shouldn't underestimate the value of the first guideline. Developers use all different kinds of mental fenceposts, and individualized workflows are one way that great developers squeeze out those extra Xs. As a manager your job not to try to understand all these nuances—which you will fail at unless you are a genius and all your developers are idiots—but rather enable your developers to be the best they can be through their own decision-making.</p> <p>You mention in the comment that you don't use private branches. My question for you is why not? Okay, I don't know anything about TFS, so maybe there are good reasons. However after using git for a year, I've gotta say that a good DVCS totally diffuses this tension. There are cases where I find commenting out code to be useful as I'm building a replacement, but I will lose sleep over it if I'm inflicting it on others. Being able to branch locally means I can keep meaningful commits for my individual process without having to worry about (or even notify) downstream developers of temporary messes.</p> http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code/758577#758577 0 Answer by James Black for Checking in of "commented out" code James Black http://stackoverflow.com/users/67566 2009-04-17T00:26:32Z 2009-04-17T00:26:32Z <p>I think that checking in commented out code should be valid as, just because the new change passed tests it may be more helpful to see what was there before and see if the new change is really an improvement.</p> <p>If I have to go back several versions to see an earlier change that now leads to a performance hit then that would be very annoying.</p> <p>Sometimes the commented out code is a good history, but, put dates as to when the code was commented out. Later, someone that is working near there can just delete the commented out code as it has been proven not to be needed.</p> <p>It would also be good to know who commented out that code so that if some rationale is needed then they can be asked.</p> <p>I prefer to write new functionality, ensure the unit tests pass, check it in, then allow others to use it and see how it works.</p> http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code/758580#758580 1 Answer by MikeJ for Checking in of "commented out" code MikeJ http://stackoverflow.com/users/10676 2009-04-17T00:27:15Z 2009-04-17T00:27:15Z <p>Just echoing the chorus. Discourage this at all costs. It makes the code harder to read and leaves folks wondering whats good/bad about that code that isnt even part the application at the present time. You can always find changes by comparing revisions. If there was some major surgery and code was commented out en-masse the dev should have noted it in the revision notes on checkin/merge.</p> <p>incomplete/experimental code should be in a branch to be developed to completion. the head/trunk should be the mainline that always compiles and is whats shipping. once the experimental branch is complete it/accepted it should be merged into the head/mainline. There is even an IEEE standard (IEEE 1042) describing this if you need support documentation.</p> http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code/758586#758586 5 Answer by thursdaysgeek for Checking in of "commented out" code thursdaysgeek http://stackoverflow.com/users/22523 2009-04-17T00:29:08Z 2009-04-17T00:29:08Z <p>Another reason for checked in commented out code:</p> <p>You're modifying existing code, and found a subtle bug, one that is easy to overlook, and perhaps might even look correct at first glance. Comment it out, put the fix in its place, and add comments for what is going on, and why it was modified. Check that in, so that your comments on the fix are in the repository. </p> http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code/758645#758645 11 Answer by Loren Pechtel for Checking in of "commented out" code Loren Pechtel http://stackoverflow.com/users/10659 2009-04-17T01:02:54Z 2009-04-17T01:02:54Z <p>One case where I leave commented out code:</p> <pre><code>// This approach doesn't work // Blah, blah, blah </code></pre> <p>when that is the obvious approach to the problem but it contains some subtle flaw. Sure, the repository would have it but the repository wouldn't warn anyone in the future not to go down that road.</p> http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code/763322#763322 1 Answer by Thomas Corriol for Checking in of "commented out" code Thomas Corriol http://stackoverflow.com/users/92401 2009-04-18T11:48:36Z 2009-04-18T11:48:36Z <p>I think checking-in commented code in a source code control system should be done with extreme caution, especially if the language tags used to comment the code are written by blocks, i.e.:</p> <pre><code>/* My commented code start here My commented code line 1 My commented code line 2 */ </code></pre> <p>Rather than on an individual line basis, like:</p> <pre><code>// My commented code start here // My commented code line 1 // My commented code line 2 </code></pre> <p>(you get the idea)</p> <p>The reason I would use extreme caution is that depending of the technology, you should be very careful about the diff/merge tool you are using. With certain source code control system and certain language, the diff/merge tool can be easily confused. The standard diff/merge of ClearCase for example is notoriously bad for merging .xml files.</p> <p>If it happens that the commenting blocks lines are not merge properly, presto your code will become active in the system when it shouldn't be. If the code is incomplete and break the build, that is probably the least evil, as you will spot it immediately.</p> <p>But if the code passes the build, it may become active when it shouldn't be there, and from a CM perspective, that could be a nightmare scenario. QA generally test what should be there, they don't test for code that is not supposed to be there, so your code may end up in production before you know it, and by the time it would be realized the code is there when it shouldn't, the cost in maintenance have multiplied many folds (as the "bug" will be discovered in production or by the customer, worst place or time ever).</p> http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code/790653#790653 0 Answer by thomasrutter for Checking in of "commented out" code thomasrutter http://stackoverflow.com/users/53212 2009-04-26T11:09:48Z 2009-04-26T11:09:48Z <p>If the developer has commented out some code because it is not yet complete, then the correct "source control" way to deal with this would be for that developer to keep it in a separate branch of his own, until that code <em>is</em> ready to check in.</p> <p>With a DVCS (like git, bazaar, or mercurial) this is dead easy as it requires no changes in the central repository. Otherwise, perhaps you could talk about giving developers their own branches on the server if they are working on specific features that will take them a long enough time (ie, days).</p> <p>There is nothing wrong with checking in commented out code in some situations, it's just that this is one situation where there may be a better way to do it, so the developer can track changes to his source <em>even though</em> it isn't ready to be checked in to the main repository.</p> http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code/979385#979385 0 Answer by Arafangion for Checking in of "commented out" code Arafangion http://stackoverflow.com/users/52273 2009-06-11T04:57:54Z 2009-06-11T04:57:54Z <p>Clearly, the developer who is checking in commented-out code should be working in a separate branch, merging in changes from the trunk branch as neccessary.</p> <p>It is up to the VCS system to assist the developer in this workflow (git is one excellent VCS system that works with this very nicely).</p> http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code/1155136#1155136 0 Answer by Kelly French for Checking in of "commented out" code Kelly French http://stackoverflow.com/users/135078 2009-07-20T18:31:17Z 2009-07-23T15:39:07Z <p>[M.A.S.H. Theme] (apologies to the composer)<br /> Source control is painless<br /> It takes on all your changes<br /> and I can take or leave it if I please. </p> <p>"<a href="http://codewright.blogspot.com/2005/11/scars-we-bear.html" rel="nofollow">Scar Tissue</a>" is what I call commented-out code. In the days before the widespread use of version-control systems, <a href="http://codewright.blogspot.com/2005/12/codewright-and-code-monkey.html" rel="nofollow">Code Monkeys</a> would leave commented out code in the file in case they needed to revert functionality.</p> <p>The only time it is acceptable to check-in "scar tissue" is </p> <ol> <li>If you have a private branch <strong>and</strong></li> <li>You don't have time to make the code compile without errors <strong>and</strong></li> <li>You are going on a long vacation <strong>and</strong></li> <li>You don't trust your VCS, like if you use Visual Source Safe <strong>OR</strong>.<br /> [EDIT] </li> <li>You have a subtle bug that might be reintroduced if the incorrect code isn't left in as a reminder. (good point from other answers).</li> </ol> <p>There is almost no excuse for #4 because there are plenty of freely available and robust VCS systems around, <a href="http://whygitisbetterthanx.com/" rel="nofollow">Git being the best example</a>. </p> <p>Otherwise, just let the VCS be your archive and code distributor. If another developer wants to look at your code, email him the diffs and let him apply the stuff he wants directly. In any event, the merge doesn't care why or how the coding of two files diverged.</p> <p>Because it is code, scar-tissue can be more distracting even than a well-written comment. By its very nature as code, you make the maintenance programmer expend mental cpu-cycles figuring out if the scar-tissue has anything to do with his changes. It doesn't matter whether the scar is a week old or 10 years old, leaving scar-tissue in code imposes a burden upon those who must decypher the code afterwords. </p> <p>[EDIT] I'd add that there are two major scenarios that need to be distinguished:</p> <ul> <li>private development, either coding a personal project or checking in to a private branch</li> <li>Maintenance development, where the code being checked in is intended to be put into production. </li> </ul> <p>Just say "NO" to scar-tissue!</p> http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code/1155171#1155171 0 Answer by TokenMacGuy for Checking in of "commented out" code TokenMacGuy http://stackoverflow.com/users/65696 2009-07-20T18:38:58Z 2009-07-20T18:38:58Z <p>I would prefer to see possibly broken, accessible code that isn't being used yet checked in over the same code being completely unavailable. Since all version control software allows some sort of 'working copy' separate from the trunk, it's really a much better idea to use those features instead. </p> <p>New, non-functional code is fine in the trunk, because it is new. It probably doesn't break anything that already works. If it does break working code, then it should just go in a branch, so that other developers can (if they need to) check that branch out, and see what's broken. </p> http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code/1938802#1938802 0 Answer by Pavel Radzivilovsky for Checking in of "commented out" code Pavel Radzivilovsky http://stackoverflow.com/users/73656 2009-12-21T08:06:07Z 2009-12-21T08:06:07Z <p>In C++, I use <code>#if 0</code> for commented code and find it legitimate. <strong>Refactoring</strong> tools still work on it, so technically it is almost maintained. And, it's distinctly <strong>colored</strong> by syntax highlighting.</p> <p>I think such feature would be useful for all:</p> <ul> <li>this code is not operational</li> <li>it still belongs here</li> <li>and it must be very visible at this very point, because it is relevant.</li> </ul> <p>Always delete commented code if it has no <strong>real comment</strong> explaining what is so special about this code and why is it so important, despite being inoperational.</p>