开发者

SVN exporting a list of file names for a given changeset

开发者 https://www.devze.com 2023-01-20 11:53 出处:网络
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 file

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>
0

精彩评论

暂无评论...
验证码 换一张
取 消