SVN exporting a list of file names for a given changeset
I am trying to 开发者_运维知识库find a way to export a list of file names in a given changeset. I can access the info in TortoiseSVN very easily using the Log Messages. But I need to record which files have changed in a separate CM tool (not by choice).
svn log -v -r THE_REV_NUMBER
will get you the log comment plus all the changed paths in the revision.
I use
svn diff --revision 1:2 --summarize
Which produces a flat list of files added/modified/deleted
svnlook changed <repository-path> -r <revision>
精彩评论