Get CVS history for a particular user
Asked Answered
O

3

9

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.

Oberg answered 11/9, 2008 at 17:48 Comment(0)
H
10
cvs history -u username

gives a history of changes the user has made

Heartfelt answered 11/9, 2008 at 18:0 Comment(0)
H
14

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
Henley answered 22/9, 2008 at 14:56 Comment(0)
H
10
cvs history -u username

gives a history of changes the user has made

Heartfelt answered 11/9, 2008 at 18:0 Comment(0)
R
0

Or try this one:

cvs history -x AMR -D "your-desired-date"

Example

cvs history -x AMR -D "2012-04-12"
Rectify answered 1/3, 2011 at 2:59 Comment(3)
I have give an example, Have you try it ? ;)Rectify
I appreciate that you're being playful, but I had to cvs --help history to figure this out. Flag "-x" is extract by record type. Flag "-D" <date> is since date (Many formats).Subterranean
@aaaidan, I'm sorry about that. Thanks for completing the commands description.Rectify

© 2022 - 2024 — McMap. All rights reserved.