[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Savannah-cvs] administration/content/gnu-content git/index.tx...
From: |
Sylvain Beucler |
Subject: |
[Savannah-cvs] administration/content/gnu-content git/index.tx... |
Date: |
Thu, 16 Aug 2007 20:49:31 +0000 |
CVSROOT: /web/administration
Module name: administration
Changes by: Sylvain Beucler <Beuc> 07/08/16 20:49:31
Modified files:
content/gnu-content/git: index.txt
content/gnu-content/svn: index.txt
Log message:
Git fix + clean-up of MichaelC's original SVN instructions
CVSWeb URLs:
http://web.cvs.savannah.gnu.org/viewcvs/administration/content/gnu-content/git/index.txt?cvsroot=administration&r1=1.4&r2=1.5
http://web.cvs.savannah.gnu.org/viewcvs/administration/content/gnu-content/svn/index.txt?cvsroot=administration&r1=1.1&r2=1.2
Patches:
Index: git/index.txt
===================================================================
RCS file: /web/administration/administration/content/gnu-content/git/index.txt,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- git/index.txt 26 Jun 2007 22:23:03 -0000 1.4
+++ git/index.txt 16 Aug 2007 20:49:29 -0000 1.5
@@ -1,7 +1,7 @@
<?php global $project; ?>
<h4>Anonymous checkout:</h4>
-<pre>git clone git://git.<?php echo $project->getTypeBaseHost() .
$project->getTypeDir('git'); ?></pre>
+<pre>git clone git://git.<?php echo $project->getTypeBaseHost() .
preg_replace(':/srv/git:', '', $project->getTypeDir('git')); ?></pre>
<h4>More information</h4>
<a
href="http://savannah.gnu.org/maintenance/UsingGit">http://savannah.gnu.org/maintenance/UsingGit</a>
Index: svn/index.txt
===================================================================
RCS file: /web/administration/administration/content/gnu-content/svn/index.txt,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- svn/index.txt 23 Jun 2007 10:55:41 -0000 1.1
+++ svn/index.txt 16 Aug 2007 20:49:31 -0000 1.2
@@ -1 +1,61 @@
-Hum, site administrators should explain here
(etc/site-specific-content/svn/index.txt) the way people are supposed to access
repositories.
+ <h3>Anonymous / read-only Subversion access</h3>
+<p>
+This project's Subversion repository can be checked out through anonymous
+Subversion with the following instruction set. The module you wish
+to check out must be specified as the <I>modulename</I>.
+</p>
+
+
+<?php
+//'
+ global $project;
+
+// if ($project->CanUse("svn")) {
+ print '<h4>Access using the SVN protocol:</h4>';
+ print '<tt>svn co
svn://svn.'.$project->getTypeBaseHost()."/<em>project</em>/<em>modulename</em></tt><br
/>";
+ print '<h4>Access using HTTP (slower):</h4>';
+ print '<tt>svn co
http://svn.'.$project->getTypeBaseHost()."/svn/<em>project</em>/<em>modulename</em></tt>";
+// }
+?>
+
+<p>In most cases, you'll want to use the <tt>trunk</tt>
+module. Refer to a projects specific Subversion instructions if you're
+unsure, or browse the repository with ViewVC.</p>
+
+<h3>Project Member Subversion Access via SSH </h3>
+
+<p>Member access is performed using the Subversion over SSH method.</p>
+
+<p>
+The SSHv2 public key fingerprints for the machine hosting the cvs
+trees are:
+
+<pre>
+RSA: 1024 80:5a:b0:0c:ec:93:66:29:49:7e:04:2b:fd:ba:2c:d5
+DSA: 1024 4d:c8:dc:9a:99:96:ae:cc:ce:d3:2b:b0:a3:a4:95:a5
+</pre>
+</p>
+
+<?php
+//'
+global $project;
+
+$username = user_getname();
+if ($username == "NA") {
+ // for anonymous user :
+ $username = '<<em>membername</em>>';
+}
+
+//if ($project->CanUse("svn")) {
+ print '<h4>Software repository (over SSH) :</h4>';
+ print '<tt>svn co
svn+ssh://'.$username.'@svn.'.$project->getTypeBaseHost().
+ "/<em>project</em>/<em>modulename</em></tt>";
+//}
+
+?>
+
+<h3>Import your Subversion tree</h3>
+
+<p>If your project already has an existing CVS repository that you
+want to move to Savannah, make an appointment with us for the
+migration on the <a
href=http://savannah.gnu.org/projects/administration>Savannah
Administration</a> project.</p>
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Savannah-cvs] administration/content/gnu-content git/index.tx...,
Sylvain Beucler <=