我正在尝试恢复我们的SVN存储库的数据,这些数据库尚未使用ServletOutputStream out = response.getOutputStream();
response.setContentType("application/octet-stream");
if (file.isFile())
{
response.setHeader("Content-Disposition", "attachment;filename=\"" + downloadFile.getName() + "\"");
try (FileInputStream inputStream = new FileInputStream(downloadFile ))
{
IOUtils.copy(inputStream, out);
}
}
等规范方法进行备份。 (是的,我知道。)我已经建立了一个相同的SVN服务器,但我想知道是否可以通过将文件从svnadmin dump
复制到新服务器的同一文件夹中来恢复存储库。
此外,我正在从/var/lib/svn/reponame
文件夹中恢复这些文件,因此我没有存储库的实际名称(在上面的示例中,这将是lost+found
)。存储库名称存储在哪里?如果我将reponame
的文件放入reponame
?