mv
to do this.
mv repos newnamerepos
But this is only half the story. Any working copies that 'point' to this repository formerly known as
repos
but now known as newnamerepos
will now be 'orphaned' and no longer know how to communicate with the repository.The answer is in Subversion Book under the section on
svn switch
. The answer is the --relocate
option.
svn switch --relocate svn://128.129.130.22/repos \
svn://128.129.130.22/newnamerepos
Make sure to specify only the URL part of the path to repository.
No comments:
Post a Comment