How to find all commits(files&comments) by a person in cvs

JellyJoe picture JellyJoe · Dec 10, 2008 · Viewed 28.5k times · Source

Looking to get a list of all the files (commit comments would be nice too) of a user in cvs.

Answer

Yonatan Broza picture Yonatan Broza · Feb 15, 2009

Use the following command to list all commits by a specific user:

cvs -q log -N -S -wuser dir/

-N Do not list tags.
-S Do not print name/header if no revisions selected.
-w[logins] Only list revisions checked in by specified logins.

Watchout! The order of the switches matters.

For more options and help use:

cvs -H log

(Listing of switches above taken from this command's output).