Difference between revisions of "Authors"

From relax wiki
Jump to navigation Jump to search
m (→‎authors.txt: Gna link fix.)
 
(14 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
{{historical svn}}
 +
__TOC__
 +
 
== Cloning Subversion ==
 
== Cloning Subversion ==
 
Based [http://john.albin.net/git/convert-subversion-to-git on this post]
 
Based [http://john.albin.net/git/convert-subversion-to-git on this post]
Line 7: Line 10:
 
</source>
 
</source>
 
==== authors.txt ====
 
==== authors.txt ====
'''authors.txt'''
+
Author information can be found at {{gna link|url=gna.org/project/memberlist.php?group=relax|text=gna project page.}}<br>
 +
The email addresses has been obscured, so replace " att " with "@" and " dott " with "."
 
<source lang="text">
 
<source lang="text">
bugman = Edward d'Auvergne <edward@nmr-relax.com>
+
bugman = Edward d Auvergne <edward att nmr-relax dott com>
edward = Edward d'Auvergne <edward@nmr-relax.com>
+
edward = Edward d Auvergne <edward att nmr-relax dott com>
 
+
han87 = Han Sun <hasu att nmr dott mpibpc dott mpg dott de>
han87 = han87 <han87>
+
macraild = Chris MacRaild <macraild att wehi dott edu dott au>
macraild = macraild <macraild>
+
michaelbieri = Michael Bieri <michael dott bieri att nmr-relax dott com>
michaelbieri = michaelbieri <michaelbieri>
+
semor = Sebastien Morin <sebastien att nmr-relax dott com>
semor = semor <semor>
+
varioustoxins = Gary Thompson <garyt att nmr-relax dott com>
varioustoxins = varioustoxins <varioustoxins>
 
 
</source>
 
</source>
  
 
== See also ==
 
== See also ==
 +
[[git_svn]]
 +
 
[[Category:git]]
 
[[Category:git]]

Latest revision as of 21:50, 6 October 2020

Caution  The information in this section is out of date but is kept for historical reasons. The relax source code is now hosted in a git rather than svn repository.

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

authors.txt

Author information can be found at gna project page.
The email addresses has been obscured, so replace " att " with "@" and " dott " with "."

bugman = Edward d Auvergne <edward att nmr-relax dott com>
edward = Edward d Auvergne <edward att nmr-relax dott com>
han87 = Han Sun <hasu att nmr dott mpibpc dott mpg dott de>
macraild = Chris MacRaild <macraild att wehi dott edu dott au>
michaelbieri = Michael Bieri <michael dott bieri att nmr-relax dott com>
semor = Sebastien Morin <sebastien att nmr-relax dott com>
varioustoxins = Gary Thompson <garyt att nmr-relax dott com>

See also

git_svn