The Elftoolchain project is in the process of migrating from its Trac instance to SourceForge's Allura platform. Please see SourceForge's announcement for additional information about the move.
One consequence of this move is that the location of the project's SVN repository location changes:
Old URL | http://elftoolchain.svn.sourceforge.net/svnroot/elftoolchain |
New URL | http://svn.code.sf.net/p/elftoolchain/code |
The following instructions may be of help in dealing with this change.
If you are a developer with a checked-out SVN tree, you can update the upstream repository location by using the svn switch
command.
% cd /ROOT/OF/YOUR/SVN/CHECKOUT % svn switch --relocate \ http://elftoolchain.svn.sourceforge.net/svnroot/elftoolchain \ http://svn.code.sf.net/p/elftoolchain/code
Elftoolchain project 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 script may be used to relocate a git-svn
repository.
% cd /ROOT/OF/YOUR/GIT-SVN/REPOSITORY % git-svn-relocate http://elftoolchain.svn.sourceforge.net/svnroot/elftoolchain \ http://svn.code.sf.net/p/elftoolchain/code