I have used git svn clone -A authors.txt ...
to clone an svn repository.
My authors.txt
had entries like this:
svnid = Firstname Lastname <Firstname.Lastname@example.com>
That worked fine and in git log
the authors look like:
Author: Firstname Lastname <firstname.lastname@example.com>
Now when I do git svn rebase -A authors.txt
the authors for the new entries look like this:
Author: svnid <svnid@12345678-1234-1234-1234-123456789abc>
I used the accepted answer from "Retroactively Correct Authors with Git SVN?"
to fix it, but after the next git svn rebase -A authors.txt
the authors are destroyed again.
What can I do to preserve the proper author names?
EDIT: I'm using git version 1.7.6.msysgit.0 on Windows obviously.