tags:

views:

477

answers:

3

Is it possible to list all checkins/commits done by a specific user?

+1  A: 

Use

cvs log -w<loginname> <filename>
Oliver Michels
+1  A: 

history -c -uUSERNAME -D2009-03-25

Lists all checking done by since 2009-03-25

Schildmeijer
+1  A: 
cvs history -c -u «user»
vartec