How can I list files in CVS without an initial che

2020-02-26 03:36发布

How can I list files CVS without an initial checkout?

In subversion I can simply do "svn ls http://svn.svn.com" in CVS how can I do this?

For example I've got this CVS connection:

 pserver:anonymous@evocms.cvs.sourceforge.net:/cvsroot/evocms

How can I list all files in it?

UPDATE:

I'm doing this:

c:\>set CVSROOT=pserver:anonymous@evocms.cvs.sourceforge.net:/cvsroot/evocms
c:\>cvs -list ---> doesn't work, prints out the help screen

8条回答
ゆ 、 Hurt°
2楼-- · 2020-02-26 04:21

see cvs commands

for example;

cvs list

will list all modules in CVS server

查看更多
Emotional °昔
3楼-- · 2020-02-26 04:25

This is what I use. msolorzano is my login, and password, and "Deployer" is the module:

cvs -d :pserver:msolorzano:password@gtess-cvs:/cvsdata/data1 rlog -R Deployer

...as a matter of fact, you can vet a cvs list of files in a "clean way" if you are executing commands in a UNIX/Linux environment, like this:

cvs -d :pserver:msolorzano:password@gtess-cvs:/cvsdata/data1 rlog Deployer | grep  ',v' | sed 's/RCS file: //g' | sed s/,v//g
查看更多
登录 后发表回答