获取特定用户的 CVS 历史记录

发布于 2024-07-04 07:27:13 字数 87 浏览 6 评论 0原文

如何获取特定用户对存储库所做的提交历史记录?

我可以通过命令行或 TortioseCVS 访问 CVS,因此使用任一方法的解决方案就足够了。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

忆悲凉 2024-07-11 07:27:14

或者尝试这个:

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

示例

cvs history -x AMR -D "2012-04-12"

Or try this one:

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

Example

cvs history -x AMR -D "2012-04-12"
本王不退位尔等都是臣 2024-07-11 07:27:13

作为一名编码员,我最感兴趣的是提交更改(而不是标记、分支等),因此我通常还包含 -c 提交选项:

cvs history -c -u username

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
温柔戏命师 2024-07-11 07:27:13
cvs history -u username

给出用户所做更改的历史记录

cvs history -u username

gives a history of changes the user has made

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文