Re: retrieving log messages by revision
Mike Pumford <[email protected]> Mon, 17 Oct 2011 16:04:59 +0100
| Newsgroups | gmane.comp.version-control.cvs.general |
|---|---|
| Message-ID | <[email protected]> |
Harry Putnam wrote: > I'm sure its a basic operation, to retrieve log messages for a > specific revision of something, but I'm not catching on after banging > around in the manual a bit it appears that this should do what I'm > after. > > cvs log -r7 some/file > Easy. You haven't given CVS a valid revision number. cvs log -r1.7 some/file will do what you want. Mike