Why did my SVN repository move to a different path?
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?
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
精彩评论