Skip to content

Instantly share code, notes, and snippets.

@jamesvulling
Created June 2, 2012 22:49
Show Gist options
  • Save jamesvulling/2860336 to your computer and use it in GitHub Desktop.
Save jamesvulling/2860336 to your computer and use it in GitHub Desktop.
Show Subversion commits for a single user
# shows basic commit info (date, revision, comment)
svn log | sed -n '/username/,/-----$/ p'
# shows modified files in addition to basic info
svn log --verbose | sed -n '/username/,/-----$/ p'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment