Is there a way to find all the changes that affect a specific line of code?
Accepted answer
In the Eclipse client, you can select the file in the Package Explorer, open the context menu, and run 'Team - Annotate' on the file. That will show a column on the left side of the editor that you can hover your mouse over to see who edited it last. (If you want to see the previous edit, select the preceding change set in the History view and run Annotate from the context menu)
You can also get blame in the command line by running 'lscm annotate'.
Comments
Geoffrey Clemm
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER Mar 05 '15, 12:56 a.m.Note that the "changes to a specific line" will always be somewhat ambiguous. All an SCM system knows is a series of file versions that have been checked in. Whether a given line is considered "the same", "modified", or "deleted" from one version to the next depends upon the specific diff tool you are using.