svn remote repository의 URL이 변경 되었을 때(svn 서버 URL 변경)
command line 환경에서 svn 을 사용 중 서버에 이상이 생겨 백업 서버로 repository URL을 변경해야 하는 일이 생겼다.
레파지토리를 체크아웃한 경로로 이동해서 아래 명령을 수행하면 된다.
svn 버전 1.6 이하
svn switch --relocate FROM-URL TO-URL
예시
- 'http://svn.repo.com/src' 에서 'http://svn2.repo.com/src' 으로 저장소 변경
$ svn switch --relocate http://svn.repo.com/src http://svn2.repo.com/src
svn 버전 1.7 이상
svn relocate TO-URL [PATH]
예시
- 'http://svn.repo.com/src' 에서 'http://svn2.repo.com/src' 으로 저장소 변경
$ svn relocate http://svn2.repo.com/src
참고 자료
728x90
반응형
'잡다' 카테고리의 다른 글
[ETC] jenkins Github SSH 에러 (No ECDSA host key...) (0) | 2022.08.31 |
---|---|
[RaspberryPi] 라즈베리파이 4 gpio를 이용한 팬 컨트롤 (bash script) (0) | 2022.07.09 |
[VSCode] 내가 사용하는 VSCode Extension (0) | 2022.05.14 |
[VSCode] Visual Studio Code에서 멀티커서 사용하기 (0) | 2021.12.14 |
[git] git clone 중에 'fatal: unable to checkout working tree' 에러 해결 방법 (0) | 2021.08.20 |