31
月
2021
Windows SVN 根据版本号或日期导出根据更新文件记录
命令: svn diff -r REVNO:HEAD --summarize http://svn-
1. 导出从 7版本 以后的所有更新的文件到 updatefiles.txt
svn diff -r 7 --summarize https://desktop-41003/svn/code/php/sphz > updatefiles.txt
2. 导出从 2019-11-28 日开始到目前所有更新的文件 到 updatefiles.txt
svn diff -r {2019-12-28} --summarize https://desktop-41003/svn/code/php/sphz > updatefiles.txt
3.导出 日期区间 段内的所有更新的文件 到 updatefiles.txt
svn diff -r {2019-10-28}:{2019-10-30} --summarize https://desktop-41003/svn/code/php/sphz > updatefiles.txt