Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse with EGit, git-blame info is hard to see

using Eclipse Indigo Service Release 2, with EGit plugin and JDK 1.7. I've seen that it should support blame annotations, but I can't get it to show like I see here on Eclipse Wiki.

Here's how it looks for me, you can't see the pointer but I'm hovering over the vertical brown line:

enter image description here

Anyone know how to expand the annotations view?

like image 846
localhost Avatar asked Apr 18 '12 11:04

localhost


People also ask

How can I see my Git commits in Eclipse?

To review the changes before pushing, you can look at the History view. E.g. when you have unpushed commits on the master branch, you will see origin/master in the history pointing to the latest commit that is known on the remote repository. On top of that, you will see your local commits and the label for master.

What is EGit in Eclipse?

EGit is an Eclipse Team provider for the Git version control system. Git is a distributed SCM, which means every developer has a full copy of all history of every revision of the code, making queries against the history very fast and versatile.

How do you annotate codes in Eclipse?

In essence, you right click on the margin and select annotate. After which in the margin you see who the last people were who made modifications to the code per line (like git's blame).


1 Answers

Right-click on the brown line, Revisions -> Show Author.

like image 131
tmikulcek Avatar answered Sep 24 '22 10:09

tmikulcek