I have an exactly similar problem (CVS version 1.11, Solaris 2.6).
Looking at the code suggests that the working area check
(i.e., is there a CVS directory here) is done at the server
and not at the client.

Can this be correct?

#!/mjh

-----Original Message-----
From: Eric Siegerman [mailto:[EMAIL PROTECTED]]
Sent: 26 April 2001 21:47
To: [EMAIL PROTECTED]
Subject: Re: cannot export from remote repo to absolute pathname


On Wed, Apr 25, 2001 at 06:02:26PM -0600, John E. Hein wrote:
> I am trying to export a subtree from a module at a remote repository
>  to a local directory tree.  I tried:
>
> cvs -d remotehost:/repo_dir export -d /local/dir some_module/sub/tree
>
> ( cd /local/dir ; cvs -d remotehost:/repo_dir export -d .
some_module/sub/tree)
>
> ln -s /local/dir foo
> cvs -d remotehost:/repo_dir export -d foo some_module/sub/tree

Export really wants to create the top-level directory.  Try this
variant of your second case:

    cd /local
    rm -r dir
    cvs -d remotehost:/repo_dir export -d dir some_module/sub/tree

--

|  | /\
|-_|/  >   Eric Siegerman, Toronto, Ont.        [EMAIL PROTECTED]
|  |  /
With sufficient thrust, pigs fly just fine. However, this is not
necessarily a good idea.
        - RFC 1925 (quoting an unnamed source)

_______________________________________________
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs

_______________________________________________
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs

Reply via email to