通过命令行查看 svn 历史记录

发布于 2024-08-24 03:53:49 字数 115 浏览 3 评论 0原文

我正在尝试用 python 编写一个实用程序来获取已针对特定分支修改的所有文件......我不关心日期或提交者。

我该怎么做呢?我可以处理 python 部分,只是在 svn 中找不到命令来给我输出。

I am trying to write a utility in python to get me all the files that have been modified for a specific branch....i don't care about the date or who commited.

how would I go about doing this? I can handle the python part, I just can't find a command in svn to give me the output.

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

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

发布评论

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

评论(3

极度宠爱 2024-08-31 03:53:49
svn log -l 10 path/to/file

这里 10 是日志中的条目数

,例如

svn log -l 10 pom.xml
svn log -l 10 path/to/file

Here 10 is number of entries from logs

e.g.

svn log -l 10 pom.xml
梦旅人picnic 2024-08-31 03:53:49
svn diff -r REV:HEAD --summarize

其中 REV 是创建分支的修订版本。

svn diff -r REV:HEAD --summarize

where REV is the revision in which the branch was created.

强者自强 2024-08-31 03:53:49

您可以使用“svnlook历史记录”命令:
Subversion 完整参考

You can use the "svnlook history" command:
Subversion Complete Reference

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