I converted a Subversion repository to Git using git svn but unfortunately only now noticed that some of the author information was wrong. The converted repository is not shared with anybody yet, so I'd like to rewrite the commit logs in it - if possible.
How can I rewrite a git repository so that the log for all his commits show e.g.
Author: John Doe <[email protected]>
instead of
Author: John Do <[email protected]>
I tried to do this myself, and it seems that git-filter-branch is what I need. I didn't manage to make it do this, though.