本文介绍了如何在 Subversion 中检索在修订范围内更改的文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我将如何从存储库中检索所有文件以及文件夹结构,这些文件在一系列修订版中发生了变化,比如从 1000 年到 1920 年?
How would I retrieve all files from the repository, along with the folder structure, changed in a range of revisions, say from 1000-1920?
推荐答案
如果您只想要更改路径的列表,请查看 diff 上的 --summarize 选项.
If you just want the list of changed paths, have a look at the --summarize option on diff.
svn diff --summarize -r1000:1920 https://my.org/myrepo/
这篇关于如何在 Subversion 中检索在修订范围内更改的文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!