SVN: is it possible to get svn info for a given revision number of a branch

后端 未结 3 2228
清酒与你
清酒与你 2021-02-12 12:56

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 sam

3条回答
  •  南笙
    南笙 (楼主)
    2021-02-12 13:35

    There are two options available to get informatioon about past revisions:

    • svn log -r : the commit message of a specified revision and url
    • svn info -r : some technical information about a specified revision and url

    An example: svn log -r 5628 https://repo.exampl.org/prod/branches/info/conf/config

    It is all described in the help messages built into the svn command: svn help or svn help info...

提交回复
热议问题