svn.rst
changeset 1777 d9b134f80a66
parent 1531 330085d06687
child 1778 2ea02b27659d
equal deleted inserted replaced
1776:968d01052142 1777:d9b134f80a66
    10 ==========================
    10 ==========================
    11 
    11 
    12 The per-user configuration area currently contains three files two
    12 The per-user configuration area currently contains three files two
    13 configuration files ('config' and 'servers').
    13 configuration files ('config' and 'servers').
    14 
    14 
    15   /etc/subversion
    15   ``/etc/subversion``
    16                 Unix system wide configurations.
    16     Unix system wide configurations.
    17   $HOME/.subversion
    17   ``$HOME/.subversion``
    18                 Unix per-user configuration area.
    18     Unix per-user configuration area.
    19   %APPDATA%\Subversion
    19   ``%APPDATA%\Subversion``
    20                 Windows per-user configuration area.
    20     Windows per-user configuration area.
    21 
    21 
    22 Copy repo from SourceForge to GoogleCode.
    22 Coping repository.
    23 =========================================
    23 ==================
    24 ::
    24 
       
    25 Making local repository copy::
       
    26 
       
    27   $ svnadmin create $SVNROOT
       
    28   $ svnsync init file://$SVNROOT svn://$REMOTE
       
    29   $ svnsync synchronize file://$SVNROOT
       
    30 
       
    31 Note that you can't relocate working copy to new repository copy becase of::
       
    32 
       
    33   $ svn relocate file://$SVNROOT
       
    34   svn: E195009: The repository at 'file:///home/user/devel/repo-copy' has uuid 'b064fe9f-b7ba-459e-afdf-3429ad89a318', but the WC has '11827c6b-1af5-4614-8a8b-dda7fb34cd94'
       
    35 
       
    36 Coping repository from SourceForge to GoogleCode::
    25 
    37 
    26   $ svnsync init https://PROJ.googlecode.com/svn https://PROJ.svn.sourceforge.net/svnroot/PROJ
    38   $ svnsync init https://PROJ.googlecode.com/svn https://PROJ.svn.sourceforge.net/svnroot/PROJ
    27   $ svnsync --username NAME --password PASSWORD \
    39   $ svnsync --username NAME --password PASSWORD \
    28                 sync https://PROJ.googlecode.com/svn https://PROJ.svn.sourceforge.net/svnroot/PROJ
    40                 sync https://PROJ.googlecode.com/svn https://PROJ.svn.sourceforge.net/svnroot/PROJ
    29 
    41