我试图在预提交钩子中隐藏. .svn/entries文件的内容。
我在执行这个命令。
svnlook cat /var/www/svn/testrepo/ branches/.svn/entries但是我得到了以下错误
svnlook: Path 'branches/.svn/entries' does not exist我的回购结构如下。
主干分支标签
我是不是错过了什么??
我的目的是得到分支网址。
发布于 2012-06-20 10:01:42
svnlook cat的第二个参数是第一个参数指定的存储库中的路径。例如:svnlook cat /var/www/svn/testrepo branches/somebranch/file.txt。
branches/.svn/entries是而不是SVN存储库中的路径。它可能是SVN 工作副本中的“簿记”文件。
https://stackoverflow.com/questions/11113960
复制相似问题