Eclipse: How to show user who changed this line in CVS?
Asked Answered
I

1

7

Someone once showed me a cool IntelliJ Idea plugin that would show all the user commit information from CVS right there in the Java source editor.

It had a vertical bar on the right of the window and every code block changed/committed by a user was highlighted with different color and mouse-over would show the details about user and version etc.

I am craving for something similar in Eclipse.

Any pointers?

Incorruption answered 19/5, 2009 at 15:57 Comment(1)
FYI this is done on the cvs command line with 'cvs annotate filename'.Gonzalo
K
12

Are you looking for this?

Right-click on a file, choose "Team", "Show annotation" and you'll see who last edited which line of code.

Here is an illustration from the "What's New in Eclipse 3.2" article from onjava.com, which adds:

Hovering over a change block will show the developer name, date, and comments that were entered for that change. It will also highlight other sections of code in the rest of the file that were contributed in the same revision.


CVS Quick Diff annotations show color-based annotations of who did what in the file.
(source: onjava.com)

Kurman answered 19/5, 2009 at 15:59 Comment(2)
+1 and sorry to be late for the illustration (remember #722503 and #707694 ?)Goins
VonC strikes again! Nice link and nice picture, as usual.Kurman

© 2022 - 2024 — McMap. All rights reserved.