vote up 4 vote down star

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

flag

5 Answers

vote up 4 vote down check
cvs log -t -wJellyJoe
link|flag
vote up 1 vote down

Here's a quick oneliner that will give you a list of every file, followed by changes in that user and the first line of comment from that user.

cvs log | egrep -A 1 'Working file|username'

Output will look like:

Working file: bin/scriptname
head: 1.14
--
date: 2008/01/01 15:15:30;  author: username; state: Exp; lines +3 -2
First line of checkin comment will appear here.

This is a quick and dirty one liner, so YMMV.

link|flag
vote up 0 vote down

You could also use external tools, such as ViewVC, which lets you input queries using web forms. The output is also formatted nicely in the web browser.

link|flag
vote up 0 vote down
cvs history -a -c  -D 2009-01-20

to review all commits by all users since 2009-01-20

link|flag
vote up 0 vote down

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

cvs -q log -N -S -w user 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).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.