SVN 主機搬移後 Client 端的處理方式 (relocate)
當 svn 主機 IP 更動,或者更換網址,底下 Client 端的工作版本就無法依據之前的 Check out 網址更新,以下針對在 Windows 的 TortoisesSVN 以及 Linux 底下的 svn 分別說明實際處理方式.
- Windows 的 TortoisesSVN
- Linux 的 svn
如果使用 Linux 的 svn 命令列方式,則採用 svn switch 命令語法
switch --relocate FROM TO [PATH...]
例如: /home/trybox/trybox_source 內原本 Check Out 的 SVN 來源是 http://61.67.71.95/repos/trybox/Source 希望更改成正確的 SVN 網址 http://tryboxap1.ichiayi.com/repos/trybox/Source 以下是實際執行程序
cd /home/trybox/trybox_source svn cleanup svn switch --relocate http://61.67.71.95/repos/trybox/Source http://tryboxap1.ichiayi.com/repos/trybox/Source .