Analogous to this question about git, when I make changes to a file versioned by a CVS repository, how can I commit only some of the changes?
I can run cvs diff > patch.diff
, edit the file patch.diff
then commit the diff, but is there any command in CVS that can do this like the command git add --patch
?