Revision: 63
http://svn.sv.gnu.org/viewvc/?view=rev&root=administration&revision=63
Author: rwp
Date: 2014-02-09 21:19:47 +0000 (Sun, 09 Feb 2014)
Log Message:
-----------
Update AdminSvnImport notes.
It was disconcerting not to have any feedback from wget when using -nv
for a long time. Avoiding using -nv (--no-verbose) provides feedback
and is friendlier.
It isn't necessary to explicitly chmod g+w the repository files as
that is the default.
Modified Paths:
--------------
trunk/sviki/AdminSvnImport.mdwn
Modified: trunk/sviki/AdminSvnImport.mdwn
===================================================================
--- trunk/sviki/AdminSvnImport.mdwn 2014-02-08 19:44:39 UTC (rev 62)
+++ trunk/sviki/AdminSvnImport.mdwn 2014-02-09 21:19:47 UTC (rev 63)
@@ -11,16 +11,15 @@
ssh vcs
screen
cd /root/vcs-imports
- wget -nv http://url/to/theirproject.dump.bz2
+ wget http://url/to/theirproject.dump.bz2
proj=THEIRPROJECT
bzcat theirproj.dump.bz2 | svnadmin load /srv/svn/$proj/
>/tmp/$proj.svimport.out 2>/tmp/$proj.svimport.err
tail /tmp/$proj.svimport.err
tail /tmp/$proj.svimport.out
rm theirproj.dump.bz2
- chmod g+w -R /srv/svn/$proj/db/re*
-Sometimes we may be given a tar of their svn repository. In this case,
-please ask for a proper svn dump (produced by `svnadmin dump`). Using a
+Sometimes we may be given a tar of their svn repository. In this case,
+please ask for a proper svn dump (produced by `svnadmin dump`). Using a
direct tar is not recommended because we may not be using the same
versions of SVN, and sometimes the format changes with the new versions
of SVN.