Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get CVS history for a particular user

How do I get the history of commits that have been made to the repository for a particular user?

I am able to access CVS either through the command line or TortioseCVS, so a solution using either method is sufficient.

like image 298
markus Avatar asked Sep 11 '08 17:09

markus


People also ask

How do I view CVS file history?

The history database You can use the history file (see section The history file) to log various CVS actions. To retrieve the information from the history file, use the cvs history command (see section history--Show status of files and users).

What is a cvs log?

The cvs log command displays information about files, directories, or modules. You pass a parameter to specify which file, directory, or module you are interested in. If you don't specify anything, cvs log displays log information about all files in the current sandbox directory.


1 Answers

As a coder, I am mostly interested in commit changes, (as opposed to tagging, branching, etc), so I usually include the -c commit option as well:

cvs history -c -u username
like image 58
Chris Noe Avatar answered Oct 15 '22 17:10

Chris Noe