remove examples -- CVS---Concurrent Versions System



Prev: remove options Up: remove Top: Top

remove examples

Remove a couple of files.

$ cd test

$ rm ?.c

$ cvs remove

cvs remove: Removing .

cvs remove: scheduling a.c for removal

cvs remove: scheduling b.c for removal

cvs remove: use 'cvs commit' to remove these files permanently

$ cvs ci -m "Removed unneeded files"

cvs commit: Examining .

cvs commit: Committing .

Resurrecting removed files

If you change your mind you can easily resurrect the file before you commit it, using the add command.

$ ls

CVS ja.h oj.c

$ rm oj.c

$ cvs remove oj.c

cvs remove: scheduling oj.c for removal

cvs remove: use 'cvs commit' to remove this file permanently

$ cvs add oj.c

U oj.c

cvs add: oj.c, version 1.1.1.1, resurrected

If you realize your mistake before you run the remove command you can use update to resurrect the file:

$ rm oj.c

$ cvs update oj.c

cvs update: warning: oj.c was lost

U oj.c



Prev: remove options Up: remove Top: Top