1.subversion download
다운로드 페이지로 이동
2.설치 진행
3.저장소 설정
CMD 커맨드 창을 실행하신후 원하시는 폴더 생성
예)
1 2 3 |
mkdir E:\Server\Repository cd Repository svnadmin create --fs-type fsfs project |
4.E:\Server\Repository\project\conf\svnserve.conf 수정
1 2 3 4 |
# anon-access = read >> anon-access = none # auth-access = write >> auth-access = write # password-db = passwd >> password-db = passwd # realm = My First Repository >> realm = My First Repository |
5.E:\Server\Repository\project\conf\passwd 수정
1 2 3 4 5 6 7 8 9 10 11 |
### This file is an example password file for svnserve. ### Its format is similar to that of svnserve.conf. As shown in the ### example below it contains one section labelled [users]. ### The name and password for each user follow, one account per line. [users] # harry = harryssecret # sally = sallyssecret #사용자 추가 svnuser1 = svnuser1 |
6.subversion 재시작
1 |
svnserve -d -r E:\Server\Repository |
7.svn 테스트
1 2 3 |
svn co svn://localhost/project 사용자명: 암호: |