"Roman Yakovenko" <romany@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
As there are problems with the CVS version right now, I'm trying to get the nightly tarball's in order to check my directories (it's too slow to do this using the web browsing CVS interface) but I can't get any of these thow ! When trying to get the sourceforge one, I get a "404: Not Found" error, and when trying to get the boost-consulting tgz, I get a "403: Forbidden" error. David Abrahams wrote:
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,
-- Pierre Barbier de Reuille INRA - UMR Cirad/Inra/Cnrs/Univ.MontpellierII AMAP Botanique et Bio-informatique de l'Architecture des Plantes TA40/PSII, Boulevard de la Lironde 34398 MONTPELLIER CEDEX 5, France tel : (33) 4 67 61 65 77 fax : (33) 4 67 61 56 68
participants (3)
-
David Abrahams -
Pierre Barbier de Reuille -
Roman Yakovenko