I am trying to clone Papercut, a smtp server emulator
I get a list of SVN authors with svn log -q https://papercut.svn.codeplex.com/svn | grep -e '^r'| awk 'BEGIN {FS="|"};{print $2}'|sort|uniq svn log -q https://papercut.svn.codeplex.com/svn | grep -e '^r'| awk 'BEGIN {FS="|"};{print $2}'|sort|uniq svn log -q https://papercut.svn.codeplex.com/svn | grep -e '^r'| awk 'BEGIN {FS="|"};{print $2}'|sort|uniq , which gives me
RNO\_MCLWEB SND\krobertson_cp
I created the authors.txt file with the format SVN_User = UserName <Email> , but when I ran
git svn clone --no-metadata -A authors.txt https://papercut.svn.codeplex.com/svn papercut
he complains "Author: RNO \ _MCLWEB is not defined in the authors.txt file"
I tried putting \ in front of '\' and '_' to try to escape from them, and add quotes around the name, but it didn't work.
I cannot find a better description of the authors.txt file format than SVN_User = UserName <Email>
git git-svn codeplex
jasonpenny Jan 29 '10 at 2:43
source share