After our source control machine rebooted, the SVN path to our repository somehow changed:
Before: svn://machineName/OurProject
After: svn://machineName/someFolder/OurProject
How do I fix this?
After our source control machine rebooted, the SVN path to our repository somehow changed:
Before: svn://machineName/OurProject
After: svn://machineName/someFolder/OurProject
How do I fix this?
Has the path of the repository changed on the source machine? Has the HTTP server configuration changed?
On the SVN server, use the -r
flag to point to the correct root repos folder
svnserve -d -r /path/to/someFolder
It appears someone (intentionally or not) changed the path. To fix your working copy:
svn switch --relocate svn://machineName/OurProject svn://machineName/someFolder/OurProject