SVN 설치하기
$ apt-get install subversion
$ adduser svn
$ svnadmin create --fs-type fsfs /home/svn/repos
/home/svn/repos/conf/svnserve.conf 아래 항목 주석 제거
[general]
anon-access = read
auth-access = write
password-db = passwd
realm = kev1n repository
/home/svn/repos/conf/passwd
[users]
kev1n = 1234
$ svnserve -d -r /home/svn/repos
$ svn mkdir file:///home/svn/repos/trunk
$ svn mkdir file:///home/svn/repos/branches
$ svn mkdir file:///home/svn/repos/tags
테스트용 폴더와 소스파일 import
$ mkdir test
$ touch test.c ./test
$ svn import test file:///home/svn/repos/trunk
Redmine과 연동하기
![](https://t1.daumcdn.net/cfile/tistory/266AA6475586449E1D)
![](https://t1.daumcdn.net/cfile/tistory/2331244F5586451013)
![](https://t1.daumcdn.net/cfile/tistory/2269E1495586468C31)
정리는 천천히 하도록 하겠습니다..;