On Thu, Aug 29, 2002 at 01:05:33PM -0700, Robert Spier wrote: > Bryan C. Warnock writes: > >How does one patch a file to delete? > > > >docs/a5_draft.html can go away now, thank you for playing. > > rm <file> > cvs delete <file> > cvs commit
Not if you don't have commit access! :-) You can diff against /dev/null. I think that's what would happen if you did a cvs remove and then generated the patch with cvs diff -N. Anyway, I just committed the removal. My favored flavor is: cvs remove -f <file> cvs commit But remember to fix up MANIFEST too...