Skip to content

Instantly share code, notes, and snippets.

@ss81
Created January 4, 2013 13:19
Show Gist options
  • Save ss81/4452537 to your computer and use it in GitHub Desktop.
Save ss81/4452537 to your computer and use it in GitHub Desktop.
Get list of changes, which were committed since a revision, provided in command line.
`svn diff -r #{ARGV[0]}:HEAD --summarize`.lines().each { |file|
p file.chomp.gsub(/[AM ]/, "")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment