When my team first started out with SVN we all just used our first names when committing to the repository, however, now that our team has grown, we are running into issues
On the repository server, you can:
echo -n "msmith" > msmith.txt
svn log /svn -q | grep '^r[0-9]* | Mike |' | cut -f 1 -d' ' | xargs -n1 svnadmin setrevprop /svn svn:author msmith.txt -r
Here's what that's doing:
grep Mike
would do just fine, but if you had a user named Jul, you risk updating every commit made in July (more or less risk depending on your locale)