info-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: cannot export from remote repo to absolute pathname


From: Mark Hewitt
Subject: RE: cannot export from remote repo to absolute pathname
Date: Tue, 8 May 2001 18:20:53 +0100

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:address@hidden
Sent: 26 April 2001 21:47
To: address@hidden
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.        address@hidden
|  |  /
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
address@hidden
http://mail.gnu.org/mailman/listinfo/info-cvs



reply via email to

[Prev in Thread] Current Thread [Next in Thread]