웹프로그래밍
리눅스(linux)에서 SVN 서버(server)설정 본문
VN 설정
SVN 디렉터리 생성 저장소 생성 권한 변경 SVN Server실행 사용자인증 설정 ### This file controls the configuration of the svnserve daemon, if you ### Visit http://subversion.tigris.org/ for more information. [general] password파일을 수정 |
post commit 메일 보내기
Subversion 저장소안에는 hooks 라는 디렉토리가 있습니다. 이 디렉토리 안에서 커밋을 했을때 실행할 것들을 설정 합니다. hooks 디렉토리 안의 post-commit.tmpl 파일을 post-commit이라고 복사합니다. .tmpl 파일은 아무 일도 하지 않는 파일입니다. 그리고 실행 권한을 줍니다. # cp post-commit.tmpl post-commit # chmod 755 post-commit # cp pre-revprop-change.tmpl pre-revprop-change # chmod 755 pre-revprop-change post-commit수정 47 REPOS="$1" mailer.py, mailer.conf파일을 찾아서 hooks디렉터리로 복사
test 방법 ./post-commit "리포이름" "리비전넘버"
|
dump_load
1. dump 2. 필요한 부분만 추출 3. svn 저장소에 CIPLUS 디렉터리 생성 후 load |
'리눅스Linux' 카테고리의 다른 글
우분투 프롬프트 바꾸기 (0) | 2016.07.13 |
---|---|
리눅스(Linux) ELF설명 (0) | 2016.07.13 |
qt-embedded 를 mips로 크로스컴파일 시 에러처리 (0) | 2016.07.13 |
Python Cross-Compile 파이썬 크로스컴파일 (0) | 2016.07.13 |
iptables와 netfilter를 Linux Kernel에 추가하기 (0) | 2016.07.13 |