通过命令行查看 svn 历史记录
我正在尝试用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这里 10 是日志中的条目数
,例如
Here 10 is number of entries from logs
e.g.
其中 REV 是创建分支的修订版本。
where REV is the revision in which the branch was created.
您可以使用“svnlook历史记录”命令:
Subversion 完整参考
You can use the "svnlook history" command:
Subversion Complete Reference