Difference between revisions of "Authors"
Jump to navigation
Jump to search
(Created page with "== Cloning Subversion == Based [http://john.albin.net/git/convert-subversion-to-git on this post] === Retrieve a list of all Subversion committers === svn log -q | awk -F '|...") |
|||
Line 3: | Line 3: | ||
=== Retrieve a list of all Subversion committers === | === Retrieve a list of all Subversion committers === | ||
− | svn log -q | awk -F '|' '/^r/ {sub("^ ", "", $2); sub(" $", "", $2); print $2" = "$2" <"$2">"}' | sort -u > authors | + | svn log -q | awk -F '|' '/^r/ {sub("^ ", "", $2); sub(" $", "", $2); print $2" = "$2" <"$2">"}' | sort -u > authors.txt |
==== trunk Result ==== | ==== trunk Result ==== | ||
+ | '''authors.txt''' | ||
<source lang="text"> | <source lang="text"> | ||
bugman = Edward d'Auvergne <edward@nmr-relax.com> | bugman = Edward d'Auvergne <edward@nmr-relax.com> | ||
Line 18: | Line 19: | ||
==== relax_disp result ==== | ==== relax_disp result ==== | ||
+ | '''authors.txt''' | ||
<source lang="text"> | <source lang="text"> | ||
</source> | </source> | ||
− | |||
− | |||
== See also == | == See also == | ||
[[Category:git]] | [[Category:git]] |
Revision as of 20:14, 21 July 2013
Contents
Cloning Subversion
Based on this post
Retrieve a list of all Subversion committers
svn log -q | awk -F '|' '/^r/ {sub("^ ", "", $2); sub(" $", "", $2); print $2" = "$2" <"$2">"}' | sort -u > authors.txt
trunk Result
authors.txt
bugman = Edward d'Auvergne <edward@nmr-relax.com>
edward = Edward d'Auvergne <edward@nmr-relax.com>
han87 = han87 <han87>
macraild = macraild <macraild>
michaelbieri = michaelbieri <michaelbieri>
semor = semor <semor>
varioustoxins = varioustoxins <varioustoxins>
relax_disp result
authors.txt