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.
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.
cvs history -u username
gives a history of changes the user has made
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
cvs history -u username
gives a history of changes the user has made
Or try this one:
cvs history -x AMR -D "your-desired-date"
Example
cvs history -x AMR -D "2012-04-12"
cvs --help history
to figure this out. Flag "-x" is extract by record type. Flag "-D" <date> is since date (Many formats). –
Subterranean © 2022 - 2024 — McMap. All rights reserved.