tags:

views:

30

answers:

2

Is there a svn subcommand that can tell me what commits I have made during a period or since a certain time?

+2  A: 
svn log -r {2006-02-17}

Will give you all the commits since the specified date.

You can see the specs of the revision date format here.

Stefan
Beat me to it - although I think he may need by user as well.
morechilli
Doesn't that just give you the last commit for that time?
doobop
it will give you the commits from that time until now.
Stefan
+3  A: 

I would try

svn log -r {2010-08-01}:{2010-08-31}

which would give you the current month's commits. I don't know of an option to filter by user so would just pipe the output to grep.

svn log -r {2010-08-01}:{2010-08-31} | grep myName

That seemed to work pretty well.

doobop