I need to deploy a few files that were checked in sometime ago (can’t remember the exact ones), so I’m looking to get a list so I can deploy just those files. What is the svn command to do this?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
svn loghas a--verboseparameter. I don’t have a repository here to test with, but does that return a list of modified files?You can also use
svn diff -r <revision>to retrieve the full change details, which you can parse or read manually to find out which files were changed.