Is there a svn
subcommand that can tell me what commits I have made during a period or since a certain time?
views:
30answers:
2
+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
2010-08-12 17:03:51
Beat me to it - although I think he may need by user as well.
morechilli
2010-08-12 17:05:17
Doesn't that just give you the last commit for that time?
doobop
2010-08-12 17:31:08
it will give you the commits from that time until now.
Stefan
2010-08-13 12:46:39
+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
2010-08-12 17:30:21