The Elftoolchain project is moving from Trac to SourceForge's Allura platform.
As part of the move, the location of the project's SVN repository has changed.
Old location | http://elftoolchain.svn.sourceforge.net/svnroot/elftoolchain |
New location | https://svn.code.sf.net/p/elftoolchain/code/trunk |
You can run svn switch
to migrate a checked-out SVN source tree:
% cd /ROOT/OF/YOUR/SVN/CHECKOUT
% svn switch --relocate \
http://elftoolchain.svn.sourceforge.net/svnroot/elftoolchain \
https://svn.code.sf.net/p/elftoolchain/code/trunk elftoolchain-code
Developers would need to use a svn+ssh://
URL:
% svn --username YOURLOGIN switch --relocate \
https://elftoolchain.svn.sourceforge.net/svnroot/elftoolchain \
svn+ssh://YOURLOGIN@svn.code.sf.net/p/elftoolchain/code/
For git-svn
users, the [git-svn-relocate][1]
script may be used to relocate a git-svn repository.
% git-svn-relocate OLD-URL NEW-URL