How to get the SVN revision number in certain Date or date range
问题 How can I get the revision number of a branch on certain date. I have tried : svn checkout -r {2006-02-17} but can't get any output. 回答1: svn co -r {2011-11-28} svn://location/of/my/repository/branch works for me. May be you are missing URL. however if I try to checkout a revision of a time when repo did not exist, I get svn co -r {2006-11-28} svn://location/of/my/repository/branch svn: Unable to find repository location for 'svn://location/of/my/repository/branch' in revision 0 Update After