Can't list files in cvs module on command line?

I ran the same cvs command on two machines and only worked on 1 of them. Team:

cvs -d %CVSROOT% ls "module" 

* On the first computer, he returned the files to me directly under the module. * I added the -R option to make a recursive call, and this time I got an error:

cvs [ls aborted]: The remote server does not support rls. The requested options are not available.

On the second computer, I got an error even without adding the -R command: cvs [ls aborted]: the server does not support ls

Both machines connect to the same server and the same module and the same CVS root and the same version of CVSNT.

+6
source share
2 answers

I ended up using the rlog command to get a list of all the files on the CVS server. The rlog team worked great for me.

0
source

The first dynamic argument in the% CVSROOT% command, try to find if it contains the correct value. If the path is incorrect, you will receive this error message.

If this value is correct, simply specify ls without the module name so that you can fix the wrong module name problem.

+1
source

All Articles