checking out the code from SVN which was modified on the current date
I need to checkout the code from the SVN which was modified and checked in on the current date.This has to be done using ANT, I have the script which checks out the entire code but that is too time cons开发者_如何学Gouming.
You mean you need the files which are modified on a particular date? You can use revision ranges to get the revisions which contain the changesets. But you can't checkout only those files, cause in SVN you can checkout only a single directory as a smallest entity. Based on what you wrote you can think about using simply an svn update instead of a full checkout, but i'm not sure what you like to achieve.
精彩评论