SVN find committed PHP files between two dates by a specific user



I was looking for PHP files that I worked on that week. After some searches I come up with this command :

svn log -r{20101213}:{20101215} -v | sed -n '/username/,/-----$/ p' | grep '.php' | awk '{print $2}' | sort | uniq



Any thoughts?

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Loading more content...