有人可以解释以下两个 SVN 命令中使用-r REV
and语法的区别: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 文档似乎没有解释差异。