Subversion: How to find the differences between two tags?

前端 未结 6 1435
悲哀的现实
悲哀的现实 2020-12-29 10:15

I know that a diff between two tags lists the \'files\' which have been changed between those two tags by the following method.

svn diff tag1 tag2 |grep In         


        
6条回答
  •  囚心锁ツ
    2020-12-29 11:00

    If you want a list of revisions that could be merged from one tag to another, you can generate it with the following:

        svn mergeinfo --show-revs eligible URL_TAG_1 URL_TAG_2
    

提交回复
热议问题