SVN에서 파일을 추가하는 중 오류 처리:...\conf\svnserve.conf:12: Option expected

1418 단어
자세히 보기
SVN 서버를 설치하고 사용자 권한을 추가한 후 로컬 항목을 서버에 추가하려고 할 때 "D:\svn\conf\svnserve.conf:12: Option expected"
".
인터넷 검색은 다음과 같은 구성이 필요합니다.
    svnserve.conf 파일 수정 전:
-------------------------------------------------------
   
[general]
    ### These options control access to the repository for unauthenticated
    ### and authenticated users.  Valid values are "write", "read",
    ### and "none".  The sample settings below are the defaults.
    # anon-access = read
    # auth-access = write
    ......
    # password-db = passwd

--------------------------------------------------
    svnserve.conf 파일이 수정된 후:
------------------------------------------------------
[general]
    ### These options control access to the repository for unauthenticated
    ### and authenticated users.  Valid values are "write", "read",
    ### and "none".  The sample settings below are the defaults.
    anon-access = read
    auth-access = write
    ......
    password-db = passwd

---------------------------------------------------
다음 세 개의 매개 변수가 있는 줄을 주의해야 한다. 앞에 공백이 있을 수 없다.
anon-access = read
auth-access = write
password-db = passwd

좋은 웹페이지 즐겨찾기