Get CVS history for a particular user

前端 未结 3 1335
终归单人心
终归单人心 2021-01-04 23:02

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 Tortios

相关标签:
3条回答
  • 2021-01-04 23:45
    cvs history -u username
    

    gives a history of changes the user has made

    0 讨论(0)
  • 2021-01-04 23:48

    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
    0 讨论(0)
  • 2021-01-04 23:48

    Or try this one:

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

    Example

    cvs history -x AMR -D "2012-04-12"
    
    0 讨论(0)
提交回复
热议问题