vote up 1 vote down star

I just want to see what files were modded/added/deleted between 2 arbitrary revisions. How do I do this?

Can I do this in tortoise as well?

flag

74% accept rate

5 Answers

vote up 5 vote down check
svn log -v -rX:Y .

The -v for "verbose" switch will give you detailed output on which files were affected on that revision.

Note that "." assumes you are currently in a working copy directory, but you can also use a URL such as "http://svn.myawesomesoftwareproject.com/trunk/lib/foo.c".

This information can be found by typing "svn help log", or by reading the SVN Book, available free online. Don't forget to Read The Friendly Manual!

link|flag
vote up 4 vote down

Right click the directory containing your repo. Choose SVN Show Log. Control+Click the two revisions. Right click on one and choose Compare Revisions.

link|flag
vote up 1 vote down

If you are new to source control and SVN you may want to pick up Pragmatic Version Control with SVN. It explains many of the concepts and commands.

link|flag
vote up 1 vote down

svn diff -r "start_revision_number":"end_revision_number" "url_of_svn_repo" --summarize

then just pipe it to grep ^A D or M

link|flag
vote up 0 vote down

Like this.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.