How to get a commit message and a list of files for a specific version?

I need to deploy several files that were checked once (I don’t remember the exact ones), so I am looking to get a list so that I can only deploy these files. What is this svn command?

+6
version-control svn
source share
2 answers

svn log has the --verbose option. I do not have a repository for testing, but does it return a list of modified files?

You can also use svn diff -r <revision> to get complete change information that you can parse or read manually to see which files have been changed.

+3
source share

@Dana and @John

Actually, svn log -v -r <#> http://my.svn.server/repository-root will work and show all changed files in this repository. Or if you want this to work from a working copy, you could use the output svn info | grep Repository Root svn info | grep Repository Root or something to find the actual root of the repository.

--verbose same as -v , and these options simply list all the affected files.

+7
source share

All Articles