웹 소스를 svn으로 관리하는 리눅스 시스템에서
svn update 시 접속 정보가 달라서 접소 정보를 수정해야 될때
업데이트 하고자 하는 파일의 디렉토리로 이동 한다.
src/com/test/model/domain/main/Test.java 이라고 할때
cd src/com/test/model/domain/main/.svn/ 경로로 이동 한다.
읽기 권한 만 있는 entries 파일의 권한을 수정해 준다.
chmod 775 entries
파일을 열어서 접속 아이피 정보를 수정 해준다.
vi entries
10
dir
16773
http://127.0.0.1:8086/svn/400/421/src/com//test/model/domain/main/
http://127.0.0.1:8086/svn
2010-05-25T00:44:28.276839Z
4364
0320
업데이트를 실행 해준다
svn update src/com/test/model/domain/main/Test.java
인증 영역(realm): <http://127.0.0.1:8086> Subversion Repository
사용자명:testuser
'testuser'의 암호:
-----------------------------------------------------------------------
ATTENTION! Your password for authentication realm:
<http://127.0.0.1:8086> Subversion Repository
can only be stored to disk unencrypted! You are advised to configure
your system so that Subversion can store passwords encrypted, if
possible. See the documentation for details.
You can avoid future appearances of this warning by setting the value
of the 'store-plaintext-passwords' option to either 'yes' or 'no' in
'/home/test/.subversion/servers'.
-----------------------------------------------------------------------
Store password unencrypted (yes/no)?
Please type 'yes' or 'no':
위에 처럼 최초 한번 패스워드를 입력하라고 나올수 있다
yes 나 no 를 입력 했는데 반응이 없을때 한글로 '예' 나 '아니오' 를 입력 해준다
U src/com/test/model/domain/main/Test.java
정상 업데이트 된것을 확인 할수 있다
'Work > linux' 카테고리의 다른 글
리눅스 cacti 실행 (0) | 2013.06.20 |
---|---|
리눅스 ln 사용법 (0) | 2011.12.15 |
find -mmin 옵션 (0) | 2010.10.19 |
tomcat 두개 두개의 포트 실행하기 (0) | 2010.04.29 |
path 확인 명령어 (0) | 2010.03.02 |