[SVN]VisualSVNServer備份與還原
最近公司決定要將全部的WinXP重灌為Win7,而我的PC裡面有安裝VisualSVN記錄我所寫的程式碼,
所以來記錄一下,如何VisualSVNServer備份與還原,所以從網路上搜尋到下列網址:
人人IT網:http://fanli7.net/a/kaifaguanli/svn+cvs/2013/0309/320187.html
Vega的筆記本:http://vega02.blogspot.tw/2014/02/visualsvn-server.html
備份方法有兩種:
1.dump
備份:svnadmin dump {Repositorie路徑} > {備份目的路徑+檔案名稱}
還原:svnadmin load {Repositorie路徑} < {備份目的路徑+檔案名稱}
2.hotcopy
備份:svnadmin hotcopy {Repositorie路徑} {備份目的路徑}
還原:svnadmin hotcopy {備份目的路徑} {Repositorie路徑}