Get All SVN Commiters from a Repository or Working Copy
Short – but unfortunatly to long for Twitter. With this little snippet you can get all commits from an svn working copy, repository or from a pure log:
svn log | ruby -e "puts STDIN.read.split(/\n/).select{|l| l =~ /^r\d+/}.map{|l| l.split('|')[1].strip}.uniq.sort"
Who has any guess why I did need this?
Aaron:
To get all involved persons in a given svn repository. Nice snipped, saved
30 Januar 2010, 10:29 pmJohannes Thönes:
Yes, obviously. But why do I need this information?
31 Januar 2010, 1:05 pm