Reputation: 29316
For the last, say, 20 commits I want to see what files were modified in each commit.
I'd want the output to look basically like svn log
's but with a list of files modified by each individual commit.
Is this possible to do?
Upvotes: 1
Views: 33
Reputation: 107030
I'd want the output to look basically like svn log's but with a list of files modified by each individual commit
$ svn log -v $REPO
That will look like Subversion's log output and show you a list of files modified by each individual commit.
Upvotes: 2