I’m attempting to pull a list of files that changed during a range of dates from svn.
Currently I’m using something like this:
svn diff -r {2009-08-10}:{2009-08-20} --summarize d:/libs/trunk
Is there a better way to do this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I suppose that my original method of programaticaly pulling data from svn is the best approach.
where we are asking for a diff based on the range from the first date until the second date. We ask for the summize option so we get eached changed file listed on it’s own line.