I have a revision number on the svn tag . 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 .
I have a revision number on the svn tag . 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 .
Try to use --verbose
next to the command you used:
svn log --verbose -r XXXX
Reference:
svn log --verbose -r <numeroDaRevisao>
List with full directory paths:
svn diff --summarize -r<revisaoFinal>:<revisaoInicial>