Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何导出/获取属于修订的所有文件?
例如: 在版本 5434 上,如果我们提交了 5 个文件,如何获取指定版本的所有 5 个文件?
类似于svn export修订号,但我只想要我在该修订上提交的文件。
svn export
编辑:
重复“颠覆:仅检查在特定提交期间受影响的那些文件”。
我最终编写了一个小的 PHP 脚本来获取文件并导出它们。
我用命令得到了文件列表
svn log /home/raja/coderepo/ -qv -r12423 | awk '/\//{print $2}'
例如:
svn diff -r 1048:1049 --summarize