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.
有一个大型的 SVN 存储库。我只想检索带有(一个)指定掩码或隐式给出名称的文件(很多!)。有很多符合条件的文件,分布在目录结构的各个位置。有什么方法可以通过简单的步骤用目录检索它们吗?
干得好...
编辑(来自评论)首先获取存储库的空签出
svn co --depth=empty URLREPO
然后创建一个包含list_of_files.txt您要更新的所有文件的路径的文件并尝试这个...
list_of_files.txt
svn update `cat list_of_files.txt`
这些你要牢记...
对于创建list_of_files.txt,您可以使用 UNIXfind命令。
find
希望这可以帮助!!!