일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- svn 사용법
- svn dump
- postgres install
- docker 폐쇄망
- svn commit
- svn load
- 포스트그레스 설치
- apt-get update 오류
- Oracle install
- javax.servlet.GenericFilter
- svn update
- Failed to download metadata for repo 'appstream'
- grep
- NEXUS
- svn 변경된 파일 추출
- expected at least 1 bean which qualifies as autowire candidate
- svn log
- ant
- 프로젝트 네임변경 후 이클립스 로딩시 에러
- WH question
- mysql dml
- Store password unencrypted
- Remmina
- svn 특정 리비전 사이 추출
- docker oracle12c
- Cannot prepare internal mirrorlist: No URLs in mirrorlist
- svn
- VirtualBox
- xrdp
- taskkill
Archives
- Today
- Total
기억의 습작
SVN 오류코드 정리 본문
svn에 소스 등록시 E190001 오류 발생
오류 발생 svn:E190001: The URL does not contain the anme of a repository. svn:E175002: OPTIONS 원인 svn 서버에 저장할 장소를 생성하지 않아서 그러함. 해결방법 svnadmin create –fs-type fsfs your-project-name |
svn: Item is not readable
svn에서 log history를 보려고 할경우 svn: Item is not readable 라는 애러 메시지가 출력되면 svn server 설정파일을 수정해야한다. svnserve.conf 파일 아래와 같이 수정 authz 파일 아래와 같이 수정 svn 제기동 하면 정상적으로 history 내역을 볼 수 있다. |
stat /bin/bash: no such file or directory”: unknown
$ docker exec -it {container_name} /bin/bash 입력시 오류발생한다면오류OCI runtime exec failed: exec failed: container_linux.go:348: starting container process caused “exec: \”/bin/bash\”: stat /bin/bash: no such file or directory”: unknown해결$ docker exec -it {container_name} /bin/sh |
folder ” does not exist remotely
원인 svn repository 생성하지 않은 곳에 접근시 발생 해결 $ svnadmin create --fs-type fsfs {your-project-name} |
728x90
반응형
LIST
'SCM (형상관리) > svn' 카테고리의 다른 글
SVN 변경된 소스만 추출하기 (0) | 2023.01.12 |
---|---|
오프라인 환경에 SVN 설치하기 (0) | 2021.08.24 |
SVN 명령어 (Ubuntu) (0) | 2021.08.24 |
SVN 명령어 (Windows) (0) | 2021.08.24 |