On Wed, 2007-10-24 at 12:21 -0400, Marc-André Boucher wrote: > I've always use the following command to find out which files were > added/modified/removed between two tags : > > cvs patch -s -rtag1 -rtag2 module > > The thing is, I don't find the "patch" command anywhere in the CVS > documentation. Is it deprecated?
In 'rdiff' description of the documentation, you may find only one reference to an example with "cvs patch": cvs patch -s -r R_1_3_1 -r R_1_3fix module-name After a quick look in sources, "ridff" is an alias of the original "patch" command also available as "pa" short command. cvs patch --help displays "rdiff" help. Internally, the operation is still called "patch". -- Yves Martin
