svnadminSVN 관리자를 위한 명령어입니다.SVN 생성, 삭제, 백업 등을 할 수 있습니다. 기본 사용 방법svnadmin ${COMMAND} ${OPTION} ${ARGUMENTS} ${REPOSITORY_PATH} 예제SVN 저장소 생성▶ 현재 경로에서 'happygram_repository' 의 이름으로 파일 시스템 형태로 저장소를 생성svnadmin create --fs-type fsfs happygram_repository SVN 덤프(백업)▶ 현재 경로의 'happygram_repository' 의 리비전 100인 SVN 저장소를 'happygram_repository.dump' 파일로 덤프svnadmin dump happygram_repository -r 100 > happygram_r..