websvn이 디렉토리를 두 ​​번 생성하는 이유는 무엇입니까?

websvn이 디렉토리를 두 ​​번 생성하는 이유는 무엇입니까?

svncreate에서 저장소를 생성 하면 websvnwebsvn 보기에서는 동일한 이름의 동일한 저장소가 두 번 표시되지만 서버에서는 하나의 디렉토리만 표시됩니다.

가상 머신에 대한 네트워크 지원 여기에 이미지 설명을 입력하세요..

섬기는 사람

여기에 이미지 설명을 입력하세요.

구성 파일

$config->parentPath("/var/lib/svn");
$config->addRepository("Mantencion", "file:///var/lib/svn/Mantencion");
$config->addRepository("Mantenedor", "file:///var/lib/svn/Mantenedor");
$config->setEnscriptPath("/usr/bin");
$config->setSedPath("/bin");
$config->useEnscript();

svncreate를 사용하여 디렉토리를 생성하거나 websvm/include/config.php도움을 주시면 감사하겠습니다. 그레틴

답변1

보시다시피 parentPath모든 저장소는 이미 지정된 경로에 추가되었으므로 수동으로 다시 추가하면 addRepository중복이 발생합니다.

관련 정보