> From: Stefan Immel [mailto:si@;grove.de]
> 
> is there any way to remove complete modules from a cvs repository ?
> 
> I know that removing the working tree and doing an cvs remove does work
> but I also want to lose any information that the module was there too
> so I can import a complete new and different version of the module ?

$ REPO=/usr/local/cvsroot         ; # change this to whatever you use
$ MODULE=my_module                ; # change this to your module name
$ cd $REPO
$ tar zcvf ~/$MODULE.tgz $MODULE  ; # make a backup just in case
$ rm -rf $MODULE                  ; # all gone!


_______________________________________________
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs

Reply via email to