有人可以解释在以下两个SVN命令中使用-r REV
和URL@REV
语法之间的区别:
svn co -r6002 https://svnserv2.acme.com/stx/project1/trunk/gui/Mammoth/WebContent/css
svn:无法在版本6002中找到"https://svnserv2.acme.com/stx/project1/trunk/gui/Mammoth/WebContent/css"的存储库位置
svn co https://svnserv2.acme.com/stx/project1/trunk/gui/Mammoth/WebContent/css@6002
检查出修订版6002.
因此,如果我检查SVN目录的版本-r
失败,但如果我使用url@REV
它工作 - 我会认为这两个是相同的,不幸的是SVN文档似乎没有解释差异.