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

后端 未结 4 911
忘了有多久
忘了有多久 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:55

    I used the following which helps skip messages with words like 'authorization' in them

    svn log --xml | grep /author | sort -u | perl -pe 's/.>(.?)<./$1 = /' > users.txt
    

提交回复
热议问题