본문 바로가기

Server/Ubuntu

SVN 다중 저장소


svn 기본 포트는 3690

하나의 저장소에 여러개의 프로젝트를 관리하는건 위험할 수 있다.

이에 아래 구조처럼 2개의 저장소를 따로 사용하고자 할 경우 

1 > /home/svn/dev/
2 > /home/svn/sample/ 

1번은 3690 포트로 시작하고, 2번은 3691 포트로 시작하면 된다.

1> svnserve -d -r /home/svn/dev --listen-port 3690 
2> svnserve -d -r /home/svn/sample --listen-port 3691 

확인.

1> svn ls svn://localhost:3690/ 
2> svn ls svn://localhost:3691/