Dev 기타2015. 1. 12. 14:27

-----------------------------------------------------------------------

ATTENTION!  Your password for authentication realm:


   <svn://svn주소...> 프로젝트명


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/계정명/.subversion/servers'.

-----------------------------------------------------------------------

Store password unencrypted (yes/no)?

svn checkout 을 할 때 위와 같은 메시지가 나와도 yes / no 중에 yes 룰 써도 계속 같은 질문 하는 버그가 있음.

한글로 '예' 를 치면 해결 된다.


아놔.

Posted by 놀란
Dev 기타2013. 10. 4. 11:35

Git 으로 작업한 뒤에 git 관련 파일을 제외하고 순수 소스 파일만 필요할 때가 있다.

기존의 export 기능인데, git 에서는 아래와 같은 명령어를 사용하면 된다.

git archive --format zip --output out.zip master

이와 같이 하면 해당 디렉토리에 out.zip 으로 압축되어 저장 된다. 

Posted by 놀란
Dev 기타2011. 10. 24. 18:58


터미널에서 레티나 이미지(@2x.png) svn add 할 때 @2x 인식 못할 때에 사용

 for f in *@2x.png; do svn add $f@; done


Posted by 놀란
Dev 기타2011. 10. 13. 15:30

svn 디렉토리가 꼬였을 경우, 커맨드 창에서 .svn 파일(디렉토리)를 일괄 삭제해야할 때가 있다.


그때... find . -name .svn -exec rm -rf {} \; 

하면 현재 선택된 디렉토리 밑에 있는 모든 .svn 을 삭제하게 됨.


Posted by 놀란
Dev/iOS2011. 8. 3. 21:05

  • XCode4 에서는 XCode3 에서 처럼 ip 주소로 등록이 안됨.
  • 도메인 주소가 필요함.
  • /private/etc/hosts 파일 수정 (저 같은 경우 (자신의 i.p address)     hosturl 으로 추가)
  • XCode4 repository 주소에 http://hosturl/myproject 입력.
  • 아이디/패스워드 입력
  • 참고 URL : http://stackoverflow.com/questions/6748387/xcode4-add-repository-host-unreachable
  • 이와 다른 경우로는 터미널에서 svn list 명령어를 이용하여 로그인 인증을 하면 되는 경우도 있다고 함.
    • svn list http://(i.p address)/myproject

Posted by 놀란