Hi fellows,
I've have been reading a lot of stuff on documentation about that issue but can't get it work the way I want.
MY GOAL : I just want to get the last update of all my favorite modules on my desktop.
This command works (But I get the HEAD revision, which is no good for production use.) :
cvs -d:pserver:anonymous:anonymous@cvs.drupal.org:/cvs/drupal-contrib checkout -d views -r HEAD contributions/modules/views
This command works (But I have to modify each cvs command for each my 40 modules) :
cvs -d:pserver:anonymous:anonymous@cvs.drupal.org:/cvs/drupal-contrib checkout -d views -r DRUPAL-6--2 contributions/modules/cck
This code fail (I see the folder correctly created on my Mac, then at the end of checkout the folder is deleted, weird) :
cvs -z6 -d:pserver:anonymous:anonymous@cvs.drupal.org:/cvs/drupal-contrib co -d views -r DRUPAL-6 contributions/modules/views
Would the MAIN parameter, instead of HEAD, give me automatically the last stable version of a module ?
Or do I have to get for EACH module the last TAG version ? (In this case what is the power of CVS in front of WGET for example if I need to browse the CVS server looking the last version tag for each module)
I must admit there is something I miss here and I may have reach the limit of my geek power (which is weak)