Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>You (really) asked 2 related questions:</p> <ul> <li>Can I redirect <code>somename.domain.com</code> to <code>anothername.somedomain.com</code>?</li> <li>Can SVN-clients use old name, but intecat with new host?</li> </ul> <p>And short answers will be</p> <ul> <li>Yes</li> <li>No</li> </ul> <p><strong>Longer versions</strong></p> <p>For redirecting old hostname to new you have and can use at least two variations (with the same final result)</p> <ul> <li>At the DNS level and CNAME record, which will alias new name to new:</li> </ul> <p><code>somename.domain.com. IN CNAME anothername.somedomain.com</code></p> <p>on request of somename will answer with data from anothername</p> <ul> <li>In the Apache's config for host of location somename you can add redirect to anothername Apache's</li> </ul> <p><strong>But</strong>: it will work only on browsers's level - when you'll try to use this redirected location as target for any Subversion's command, you'll get error "Repository moved, please relocate" and you <strong>must</strong> relocate all old resources to new URL.</p> <p>Good news for your</p> <p>All externals definition are written as svn-properties inside source repo, you can get list of these externals (with values) and update with the new values, and this operation (theoretically) can be automated</p> <p><code>svn propget -R svn:externals . &gt; FILE</code> in the root of working copy for getting externals</p> <p><code>svn propset svn:externals --target FILE</code> for defining new externals in batch</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload