[C++-sig] Re: cvs anonymous user access denied

David Abrahams dave at boost-consulting.com
Wed Jul 30 15:22:36 CEST 2003


"Roman Yakovenko" <romany at actimize.com> writes:

> Hi. Is there is easy way to get all current files from cvs ?

Nothing; SF cvs is just really bad for anonymous CVS (until next
month, when they promise it will be fixed).  I use this little python
script to do all my anonymous SF CVS:

    #!/bin/python
    # cvsx script - tries CVS commands until they succeed.
    import sys
    import os
    while os.system('cvs ' + ' '.join(sys.argv[1:])):
       print '.',
       sys.stdout.flush()

Alternatively, you can download last night's CVS tarball and use
local CVS on your machine:

   http://cvs.sourceforge.net/cvstarballs/boost-cvsroot.tar.gz

or, from two nights ago:

   http://www.boost-consulting.com/boost-cvsroot.tar.gz

Good luck,
-- 
Dave Abrahams
Boost Consulting
www.boost-consulting.com





More information about the Cplusplus-sig mailing list