저장소만들기
cvs -d C:\repository init
import
cvs -d c:\repository import -m " " 프로젝트명 프로젝트명 initial
checkout
cvs -d c:\repository co 프로젝트명
cvs -d :pserver:아이디@호스트:/repository checkout 프로젝트
상태확인
cvs status 파일명
차이점보기
cvs diff 파일명
차이점 나란이 표시하기
cvs diff --side-by-side 파일명
저장소 갱신하기
cvs commit -m "메시지"
파일의 변경기록 확인
cvs log 파일명
최신버전과 비교하기
cvs diff -rHEAD 파일명
업데이트하기
cvs update
버전별로 로그파일 보기
cvs log -r1.5 파일명
cvs -d C:\repository init
import
cvs -d c:\repository import -m " " 프로젝트명 프로젝트명 initial
checkout
cvs -d c:\repository co 프로젝트명
cvs -d :pserver:아이디@호스트:/repository checkout 프로젝트
상태확인
cvs status 파일명
차이점보기
cvs diff 파일명
차이점 나란이 표시하기
cvs diff --side-by-side 파일명
저장소 갱신하기
cvs commit -m "메시지"
파일의 변경기록 확인
cvs log 파일명
최신버전과 비교하기
cvs diff -rHEAD 파일명
업데이트하기
cvs update
버전별로 로그파일 보기
cvs log -r1.5 파일명



