문제

With SVN is there an easy way to get a list of all the commits between a tag (usually the most recent) and the current trunk, so you can see what (if anything) has changed?

Likewise, can you do the same to compare the commits between two tags.

Cheers, Jack

도움이 되었습니까?

해결책

I don't think there is an easy solution. svn log --stop-on-copy <tag-path> will allow you to find whether the tag was made from the trunk. If yes, the you can take the copied version, and do svn log between those versions on the trunk.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top