2015
04.30
04.30
Let’s say we want to list a specific range of commits in SVN. The snipped below would do the trick:
svn log -r 1342:1402;
It also seems the we can go even further by specifying a date range instead of revision numbers (not tested):
svn log -r {2010-11-01}:{2011-05-04};
No Comment.
Add Your Comment