Based on http://john.albin.net/git/convert-subversion-to-git
This step is not necessary if you already have such a file.
I already created a cleanup file for mozilla.org, the result is in this test repository.
Clone the SVN repository
svn co http://svn.mozilla.org/projects/mozilla.com/trunk/locales/ mozillaorg_svn
Lists the authors in the repository and redirect the output to a text file
svn log -q mozillaorg_svn | awk -F '|' '/^r/ {sub("^ ", "", $2); sub(" $", "", $2); print $2" = "$2" <"$2">"}' | sort -u > authors_mapping.txt
Clone the repository with Git
git svn clone http://svn.mozilla.org/projects/mozilla.com/trunk/locales/ --no-metadata -A authors_mapping.txt mozillaorg_git
If "git svn" is not recognized as a valid command, install the package 'git-svn'.
cd mozillaorg_git
git svn fetch -A ../authors_mapping.txt
git reset --hard refs/remotes/git-svn
git push origin master