I'm a git guy, but now I have to use CVS in a project temporarily. I haven't been able to find a command that displays a nicely formatted chronological commit list with author, commit message, date and revision (and nothing else).
Instead I get all sorts of useless information about RCS file, locks, etc, and cvs log
seems to group commits by file rather than by date which makes it hard to get an overview of what has happened in a repository.
Is there a way to do that, dear CVS experts?
Use git cvsimport
to import the entire repository into git and then interact with git. It's not quite as smooth as git svn
, but it does work well.