cvsGnome Chemistry Utils - Subversion Repositories

 
 

Browsing the Subversion Repository

You can browse the Subversion repository of this group with your web browser. This gives you a good picture of the current status of the source files. You can also view the complete history of any file in the repository as well as differences among two versions.

Getting a Copy of the Subversion Repository

Anonymous / read-only Subversion access

This project's Subversion repository can be checked out anonymously as follows. The module you wish to check out must be specified as the <modulename>.

Access using the SVN protocol:

svn co svn://svn.savannah.nongnu.org/gchemutils/<modulename>

Access using HTTP (slower):

svn co http://svn.savannah.nongnu.org/svn/gchemutils/<modulename>

Typically, you'll want to use trunk for modulename. Refer to a project's specific instructions if you're unsure, or browse the repository with ViewVC.

Group member Subversion access via SSH

Member access is performed using the Subversion over SSH method.

The SSHv2 public key fingerprints for the machine hosting the source trees are:

1024 MD5:80:5a:b0:0c:ec:93:66:29:49:7e:04:2b:fd:ba:2c:d5 (RSA)
1024 SHA256:FYkx0iik+iBeCLRzvUyUSTRT98TEBBJoYuQsTXbyGL8 (RSA)

256 MD5:65:b8:1c:2f:82:7c:0e:39:e1:4a:63:f2:13:10:e8:9c (ECDSA)
256 SHA256:qRLLJ4w/GAeiDyYnbx4yWJbZXwGiYYxgNty7lAfUyuM (ECDSA)

256 MD5:14:7b:c8:98:dd:06:08:97:8c:00:9d:d2:ae:85:c8:82 (ED25519)
256 SHA256:o/oI4CKKcWc4cZvDFEdmOXsE3tiPP8bWa04h4bQjtV4 (ED25519)

Software repository (over SSH):

svn co svn+ssh://<membername>@svn.savannah.nongnu.org/gchemutils/<modulename>

Importing into Subversion on Savannah

If your project already has an existing source repository that you want to move to Savannah, check the conversion documentation and then submit a request for the migration in the Savannah Administration project.

Exporting Subversion tree from Savannah

You can access your subversion raw repository using read-only access via rsync, and then use that copy as a local SVN repository:

rsync -avHS rsync://svn.savannah.nongnu.org/svn/gchemutils/ /tmp/gchemutils.repo/
svn co file:///tmp/gchemutils.repo/ trunk
# ...

If you want a dump you can also use svnadmin:

svnadmin dump /tmp/gchemutils.repo/

Back to the top

Powered by Savane 3.13-cf05.
Corresponding source code