From: Grzegorz A. H. <gr...@ti...> - 2005-09-24 15:29:41
|
On 2005-09-24, AKX <th...@gm...> wrote: > How would I go about to creating a new "project" in the CVS > repository (and using it with TortoiseCVS)? You have write access to SF CVS repository. To put your files into CVS you need to "import" them with the CVS client. This could be done with something like the following: cd your_project_path export CVS_RSH=ssh cvs -z3 -d:ext:dev...@cv...:/cvsroot/pyallegro import -m "" module_name vendor start You would only need to replace developername and module_name. Here is the info about TortoiseCVS: http://sourceforge.net/docman/display_doc.php?group_id=1&docid=25888#top Alternatively, if you tell me the module name I can create it for you so you can start using TortoiseCVS with it (potentially easier). |