Wilfred Hughes
Wilfred Hughes

Reputation: 31141

How do I list all commits since the last subversion tag?

I have an SVN repository with the following structure:

trunk/
tags/
    1.0.1/
    1.0.2/
    1.0.3/

How do I list all the commits that have happened on trunk since the last tag?

Upvotes: 1

Views: 1621

Answers (1)

orbrey
orbrey

Reputation: 366

svn log URL/tags --limit 1 will show you the latest tag and its associated revision (X for the sake of this comment). Then you can do svn log -r X:HEAD to list all the commits since then.

Upvotes: 3

Related Questions