Reputation: 581
I am accessing some source code controlled in RCS on Windows.
How can I find out in which revision particular lines of source code were last changed? The feature is variously called 'blame' or 'annotate' depending on the VCS.
The http://blame.sourceforge.net/ project sounds like its Linux only.
Upvotes: 4
Views: 759
Reputation: 263507
CVS and RCS use the same file format.
Install CVS, create an empty CVS repository, manually copy the RCS *,v
file(s) into the CVS repository, and run cvs annotate
.
See also this question: How to install CVS in Windows 7.
Upvotes: 2
Reputation: 24627
No, there is no built-in functionality. As an alternative, here are some workarounds:
Upvotes: 2