How do I show the changes made to a SVN revision?

7

I have a revision number on the . How do I do (command line) to show the changes that were made in this revision?

As far as I can:

  

svn log -r XXXXXX

But this way it only shows the text of the Commit .

    
asked by anonymous 11.04.2014 / 16:30

2 answers

3

Try to use --verbose next to the command you used:

svn log --verbose -r XXXX

Reference:

simple command to show changes made in a revision

    
11.04.2014 / 17:42
2
svn log --verbose -r <numeroDaRevisao>

List with full directory paths:

svn diff --summarize -r<revisaoFinal>:<revisaoInicial>
    
11.04.2014 / 17:42