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 놀란