Get CVS history for a particular user

2020-03-01 19:49发布

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.

3条回答
孤傲高冷的网名
2楼-- · 2020-03-01 20:18

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
查看更多
你好瞎i
3楼-- · 2020-03-01 20:23

Or try this one:

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

Example

cvs history -x AMR -D "2012-04-12"
查看更多
放荡不羁爱自由
4楼-- · 2020-03-01 20:30
cvs history -u username

gives a history of changes the user has made

查看更多
登录 后发表回答