Get changed files from svn command line between two dates

给你一囗甜甜゛ 提交于 2019-12-21 11:38:02

问题


I need to get the changed files list between two dates in SVN.

I have used the below command..

svn diff -r{2011-10-12}:{2011-10-28} --summarize https://svn.blah.com/../  > output.txt

from some reason the files modified on 28-10-2011 are not populated in the output text file.

Could please give the exact command to extract the files list between the two dates (inclusive of from and to dates)


回答1:


this is normal, when you give the date {2011-10-28} it means "on midnight"... thus specify one day more for the end of the range.



来源:https://stackoverflow.com/questions/9189786/get-changed-files-from-svn-command-line-between-two-dates

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!