如何使用 svn 导出或比较特定用户提交的文件?
我需要检查我之前提交的文件的差异。
但是如果我尝试使用修订范围选项来比较或导出文件, 其他人提交的文件也显示在结果中。
我只需要我提交的文件。
如何使用 svn 导出或比较特定用户提交的文件?
I need to check differences of the files which I committed before.
But if I try to diff or export files by using revision range option,
the files which others committed also shown in the result.
I need the only files which I committed.
How to export or diff files which are committed by a specific user with svn?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将以下 python 文件另存为
userchanges.py
在当前目录中并使其可执行:然后运行:
其中
youruser
是要检查的用户的 svn 用户名。它将针对所选用户的每个文件和修订版运行 svn diff。
Save below python file as
userchanges.py
in current directory and make it executable:Then run:
where
youruser
is svn user name of the user you want to inspect.It will run
svn diff
for each file and revision by selected user.