Re: Checking for commits

2009-12-21 Thread Dennis Jones
Konstantin Kolinko wrote: How can I determine if there were commits on a specific date? For example: (some day one year ago) svn diff --summarize -r {2008-12-20}:{2008-12-21} http://svn.collab.net/repos/svn/trunk/ Ah, the --summarize switch is quite helpful, thank you. - Dennis

Re: Checking for commits

2009-12-21 Thread Konstantin Kolinko
2009/12/21 Dennis Jones : > Hi, > > Is there a simple way to determine if there were any commits on a repository > path given a specific date? > > 'svn log' doesn't give the results one might expect.  For example, if there > were no commits yesterday (12/20/2009), and I say: > >    svn log -r {2009

Re: Checking for commits

2009-12-21 Thread Andy Levy
On Mon, Dec 21, 2009 at 11:51, Dennis Jones wrote: > Hi, > > Is there a simple way to determine if there were any commits on a repository > path given a specific date? > > 'svn log' doesn't give the results one might expect.  For example, if there > were no commits yesterday (12/20/2009), and I sa

Checking for commits

2009-12-21 Thread Dennis Jones
Hi, Is there a simple way to determine if there were any commits on a repository path given a specific date? 'svn log' doesn't give the results one might expect. For example, if there were no commits yesterday (12/20/2009), and I say: svn log -r {2009-12-20}:{2009-12-21} . . . then inst