case #1: If you have source control, then delete it.
case #2: If you don't have source control, then get source control and see case #1 above.
To me when I see commented code, I think to myself that the developer that made the change wasn't sure he was doing the right thing. He should spend the time to make sure instead of having a backup policy of having the commented code to revert back to. And if in the end you aren't sure if you're making the right change, put a comment that describes what you changed and why you're unsure if it's the right way, and delete the code still. Don't comment out the block of code.
Code is hard enough to read and follow as is, you don't want to clutter code and make it even harder to understand what it's currently doing by having big blocks of commented code.
If someone needs to look at the history he can look at the history via the source control.
sometimes you need to add the feature back in and the developer adding it back in may not know to check source control history
That's what logs are for in source control systems. They allow you to search comments and file history. Also this seems to be more of an organizational concern. You could assign tasks to more appropriate developers or have discussions within the team. The person assigning the task should know who to assign it to or what to reference.
Also if you think you'll be adding it back in, consult your manager and make sure you are making the right change for what they want to do.
If you really think a big part of the code will be reused again, you can branch or tag your repository and then make the changes. You can reference back to that branch or tag later.
sometimes the code represents unique functionality that can be a handy reference, seeing it all in one place can help provide clues to deciphering the active code.
Create some kind of internal knowledge base or reference with the insightful code. Having logic where it doesn't belong anymore makes code harder to read and understand.