Actually, 2 tips about Git History view in Eclipse today:
(1) Faster loading of History view in Eclipse
Sometimes in Eclipse, viewing the History of a file, folder, repository or branch can take several seconds to load. Git promises faster access to the History of source changes because they are local, and this is generally true. But when there are thousands of files and many years of history, including occasional refactoring and restructuring, the History view can lose some of that speed.
One simple setting change made our History views in Eclipse faster:
In Eclipse, select Window -> Preferences.
In the tree-view of categories, navigate to Team -> Git -> History
Uncheck the preference for “Follow Renames”
Click OK.
This made a big speed improvement in our History view’s load time.
But it comes with a cost:
It limits the History view to only as far back as when a file was moved. In our project's case, moving to Git some time ago also brought a major file and package restructuring. Changing this setting means that the History view will stop at that point because that move, in Git-speak, is a Rename. With Follow Renames unselected, the history load will stop there.
That cost is acceptable in my project's context: we now leave the option unchecked for faster History of recent changes. Then, when the time comes that we need a deeper look into the History, select the option and do the research, then unselect it when done.
(2) Precise Dates of Changes
If you don’t like the relative dates in the History view, things like “9 days ago” or “3 months ago”, you can change the display to show you the precise date and time of the commits, such as “2016-12-28 15:01:28”
Use the same Preferences screen described above for this setting:
In Eclipse, select Window -> Preferences.
In the tree-view of categories, navigate to Team -> Git -> History
Uncheck the preference for “Relative Dates”
Click OK.
And if you have read this far, here is a Bonus:
Second way to control these settings, with fewer clicks:
Both of the above settings, the Follow Renames and the Relative Dates can be changed directly from the History tab itself.
From the History view tab in Eclipse:
Click on the down-triangle in the upper right corner
Select “Show” which will pop up a sub-menu
Uncheck the preference for “Relative Dates” or “Follow Renames”