Is it possible to get svn info for a branch for a specific revision number. For example if the latest working copy of a branch has revision number 56, can I get info for the same branch for revsion number 32.
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.
There are two options available to get informatioon about past revisions:
svn log -r <rev number> <url>: the commit message of a specified revision and urlsvn info -r <rev number> <url>: some technical information about a specified revision and urlAn example:
svn log -r 5628 https://repo.exampl.org/prod/branches/info/conf/configIt is all described in the help messages built into the svn command:
svn helporsvn help info…