本文介绍了SVN:是否可以获得分支的给定版本号的svn信息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以获取特定版本号的分支的svn信息。例如,如果某个分支的最新工作副本的修订号为56,那么我可以获取该修订号为32的同一分支的信息吗。
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.
推荐答案
有两个选项可用于获取有关过去修订的信息:
There are two options available to get informatioon about past revisions:
-
svn log -r< rev编号> < url>
:指定修订版本和url的提交消息 -
svn info -r< rev number> < url>
:有关指定版本和url的一些技术信息
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 url
示例: svn log -r 5628 https://repo.exampl.org/prod/branches/info/conf/config
它均在svn命令内置的帮助消息中进行了说明: svn帮助
或 svn帮助信息
...
It is all described in the help messages built into the svn command: svn help
or svn help info
...
这篇关于SVN:是否可以获得分支的给定版本号的svn信息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!