SVN: How to list all the changes made by uses in a period of time
When you are using svn, you may wan't to inspect what did you (or your team member) changed in a period of time. To achieve that use following command:
svn log -r "{2011-04-01 00:00:00}:{2011-05-01 00:00:00}" |
sed -n '/username/,/-----$/ p'
where you should replace the username with username of aa actual user.
No comments:
Post a Comment