FYI: How to undo a cvs check in ?
1. cvs ci -m "add another ioc" Makefile // OOps, I didn't want to check in this file yet
or cvs commit .....
2. mv Makefile Makefile.work // Save my working copy just in case
3. cvs log Makefile // Get the latest revision number of this Makefile
4. cvs admin -o1.20 Makefile // Say the lastest revision was 1.20, remove
// this revision from cvs repository
5. cvs update Makefile // Let cvs know, I am working on the current revision
6. cp Makefile.work Makefile // Back to where I was
Note: You should only undo a cvs check in right after making the mistake.
If you wait for a while, someone might have checked out one revision
you want to remove.
PS: a HTML file of "Commonly used cvs commands and their examples"
is under constructon :)
--
=============================================================
Johnny Tang Voice: (804)249-7239 E-Mail: tang@cebaf.gov
Continuous Electron Beam Accelerator Facility
12000 Jefferson Avenue, MS 85A
Newport News, Virginia 23606
=============================================================