'cvs'에 해당되는 글 1건
- 2009.04.28 [URL] CVS 서버 제공: www.cvsdude.com (2MB 무료)
[URL] CVS 서버 제공: www.cvsdude.com (2MB 무료)
Posted on 2009. 4. 28. 18:38
Filed Under Programming/개발환경+도구
http://www.cvsdude.com
Subversion(SVN)과 CVS 두 가지 타입을 서비스한다.
무료는 2MB 를 준다.
작은 프로그램이라면 리소스 안올리면 모자라지는 않다!
WinCVS 에서 접속 커맨드 (using CVSDude)
Admin > Login :
cvs -d :pserver;username=byhou;password=zmfla77:byhou@cvs12.cvsdude.com:/cvs/stdq -P -- will
cvs co // check out
cvs up // update
cvs ci // check in
================================================================
CVS command
================================================================
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
출처: http://realxixi.egloos.com/814765
================================================================