Skip to content

Instantly share code, notes, and snippets.

@jbranchaud
Created November 9, 2011 03:59
Show Gist options
  • Save jbranchaud/1350309 to your computer and use it in GitHub Desktop.
Save jbranchaud/1350309 to your computer and use it in GitHub Desktop.
List Authors/Committers for SVN Repsitory
#!/bin/bash
# Outputs the list of authors/committers for the SVN repository
# This script must be run from within the working copy of the repository
svn log --quiet | awk '/^r/ {print $3}' | sort -u
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment