|
CVS 초기화
# cvs -d /home/cvs init CVS 프로젝트 초기화 $ cvs import -m "message" project_name vendor_tag release_tag 프로젝트를 시작할때 $ cvs checkout project_name 또는 $ cvs co project_name 업데이트된 내용을 받아올때 $ cvs update 또는 $ cvs up 수정된 내용을 Repository에 올릴때(Commit) $ cvs commit -m "message" file_name 또는 $ cvs ci -m "message" file_name 새로운 파일을 더할때 $ cvs add file_name $ [cvs update] $ cvs commit -m "message" file_name Repository의 파일을 지울때 $ rm file_name (일단 작업디렉토리에서 지워야 함) $ cvs delete file_name $ [cvs update] $ cvs commit -m "message" file_name # by ak47 | 2005/01/18 16:52 | Linux | 트랙백 | 덧글(0)
|
| ||||