22

At my current project we use SVN, but today I noticed a colleague of mine uses another version of version control as well.

Example:
V1:
console.log('Hello, world!');

V2:
//console.log('Hello, world!');
document.write('Hello, World!');

V3:
//console.log('Hello, world!');
window.alert('Hello, world!');
//document.write('Hello, World!');

Every singletime Ive to remove 40 lines of comments before Im able to follow the code and refactor it.

Comments
  • 0
    We used to use SVN. I can relate. Sadly, even after moving to Git, people have the same tendency.

    ~~refactor~~
  • 1
    Ok, not with comments, but for example when I am puting in the resource steings, I almost always leave the hardcoded stuff in comments for another version, so I can find them easier in case of fuckups..
Add Comment