문제

I would like to checkout file1 from CVS repository to the current directory.

File1's path is: /opt/application/CVS_REPOSITORY/project/lib/source/file1

How do I do it?

First I set:

setenv CVSROOT /opt/application/CVS_REPOSITORY

Then what should I do?

cvs co -r . /lib/source/file1 ??

Or

cvs co -r . project/lib/source/file1  ??
도움이 되었습니까?

해결책

Try cvs co project/lib/source/file1

다른 팁

I had to use "cvs update filename" to pull single file from cvs module. Run this command in the module local workspace.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top