Is there a way to revert to a certain revision while keeping the changes in comments. for example :-
Revision 33:-
public class A{
private aa;
private bb;
private cc;
}
Revision 34:-
public class A{
private aa;
private bb;
private cc;
private dd;
}
and then there are many other revisions. Now if i revert changes from revision 34, I want the my local copy to look like this:-
Revision 120:-
public class A{
private aa;
private bb;
/* changes from revision 34 reverted by XXXX on YYYY
* Following changes were reverted:-
*private cc;
*/
}
Is is possible to do this?