On Wed, 20 Jun 2007, Marco Costalba wrote:
now I have one more reason to switch from using git-rev-list to
git-log in qgit, file history annotation, that is currently based on
git-rev-list, will automatically gain a powerful feature.
Well, note my other email about how "--follow" does *not* play together
with "--parents", because the two do totally different kinds of filtering
of the commits. So yes, you can use it for file history annotation, but
not for the "graphical history" part that depends on parenthood etc.
That said, you really would be better off using
git blame -M --incremental
for the history annotation. It does the rename following *and* so much
more.
Linus