Community technical support mailing list was retired 2010 and replaced with a professional technical support team. For assistance please contact: Pre-sales Technical support via email to sales@march-hare.com.
"andy" <andy at grid-engines.comNOSPAM> wrote in message news:bgeg9l$203$1 at sisko.local.nodomain.org wrote: > i am trying to remove a file from a tree which has some labels > applied... > when i execute: cvs remove vssver.scc > i get: "cvs server: cannot remove file `vssver.scc' which has a sticky > tag of `ALPHA_1_0_1" You have done something like: >cvs checkout -r ALPHA_1_0_1 or >cvs update -r ALPHA_1_0_1 which means you have a sticky tag on your current sandbox. You can't make any changes against that version because it is not a branch. You need to do: >cvs update -A or >cvs update -r <branch> where <branch> is the branch you are currently working on, before you can remove or commit to the file in question. Regards, John