What is the format of an authors file for git svn, specifically for special characters like backslash or underscore?

后端 未结 4 942
忘了有多久
忘了有多久 2020-12-25 15:03

I am trying to clone Papercut, an smtp server emulator

I\'m getting the list of SVN authors with svn log -q https://papercut.svn.codeplex.com/svn | grep -e \'^

4条回答
  •  臣服心动
    2020-12-25 15:51

    I had same problem, but with user apache. In authors file a had line like this.

    apache = Apache
    

    or

    apache = Apache <>
    

    But when I set it to

    apache = Apache 
    

    My repo started cloned normaly. Please be sure that you set all you authors names and email correctly, with follow format

    svn_user_name = JustNameInGit 
    

    Every field is obligatory!!!

提交回复
热议问题