cvs commit: hugs98/src builtin.c

Simon Marlow simonmar@microsoft.com
Mon, 2 Apr 2001 09:54:48 +0100


> reid        2001/04/01 21:24:13 PDT
>=20
>   Modified files:
>     src                  builtin.c=20
>   Log:
>   This is a bogus commit because I just accidentally=20
> committed all files
>   instead of just machdep.c (and I can't remember the cvs=20
> magic to undo
>   it).

	$ cvs up -j<new> -j<old> <file1>
	$ cvs up -j<new> -j<old> <file2>
	$ etc.
	$ cvs commit -m "undo bogus commit" <file1> <file2> ...

where <new> and <old> are the new and old revisions of the file (eg. if
the last commit was revision 1.3, then <new>=3D1.3 and <old>=3D1.2).

Alternatively, use a "forced commit" (cvs commit -f) to add the correct
log message to each of the committed files.

Cheers,
	Simon