Skip to content

Instantly share code, notes, and snippets.

@ngyuki
Created August 22, 2012 00:52
Show Gist options
  • Save ngyuki/3421011 to your computer and use it in GitHub Desktop.
Save ngyuki/3421011 to your computer and use it in GitHub Desktop.
svn で author の一覧を取得するワンライナー
# author の一覧を取得
svn log -q $URL | grep -v "^----" | cut -d "|" -f2 | sort | uniq
# 作業ディレクトリ内で実行する場合
svn log -q | grep -v "^----" | cut -d "|" -f2 | sort | uniq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment