Difference between revisions of "Establishing the SVN repository"

From WormBaseWiki
Jump to navigationJump to search
(New page: Here's how the WormBase subversion repository was established. <nowiki> ssh brie3 cd /usr/local sudo mkdir svn sudo chgrp wormbase svn sudo chmod 2775 svn cd projects mkdir temp mv wormb...)
 
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
 
Here's how the WormBase subversion repository was established.
 
Here's how the WormBase subversion repository was established.
  
<nowiki>
+
<pre>
 
ssh brie3
 
ssh brie3
 
cd /usr/local
 
cd /usr/local
Line 13: Line 13:
 
cd temp
 
cd temp
 
svn import . svn+ssh://brie3.cshl.org/usr/local/svn -m 'initial import'
 
svn import . svn+ssh://brie3.cshl.org/usr/local/svn -m 'initial import'
 +
</pre>
 +
 +
 +
 +
[[Category:Developer documentation]]

Latest revision as of 22:57, 13 August 2010

Here's how the WormBase subversion repository was established.

ssh brie3
cd /usr/local
sudo mkdir svn
sudo chgrp wormbase svn
sudo chmod 2775 svn

cd projects
mkdir temp
mv wormbase temp/.    // the reimp code
cd temp
svn import . svn+ssh://brie3.cshl.org/usr/local/svn -m 'initial import'