전체 글 1447

Initial support of CodeIgniter Framework for PhpStorm

Initial support of CodeIgniter Framework - PhpStorm 2016.3 EAP 163.6512 Good news for the CodeIgniter users! We’ve added an initial support of CodeIgniter Framework. Now after you enable the CodeIgniter support you will get the support of the code style, also CodeIgniter inspection profile will be set up automatically. CodeIgniter 사용자에게 좋은 소식입니다! 우리는 CodeIgniter Framework 초기 지원을 추가했습니다. 이제 CodeI..

ide/phpstorm 2017.04.05

svn cleanup error

[SVN] 'cleanup' 에러 svn checkout ignore directory/folder [SVN] remains in conflict 에러 해결 - DEVELOPER svn up trunk ... error 'cleanup".... svn cleanup svn up trunk ... error ... sqlite3 .svn/wc.db "select * from work_queue" sqlite3 .svn/wc.db "delete from work_queue" svn up trunk ... '.' skipped node remains in conflict sqlite3 로 큐 작업을 삭제하니 문제는 해결 됐는듯 했지만... 하지만 이게 모두 다 받지 못하고 에러가 나네... 이래 저래 여러 방..

vcs/svn 2017.03.31

svn hooks를 이용한 release, trunk 자동 업데이트

hook script 로 svn 동작 제어하기 ssh-keygen 자동 로그인 How to get the name of branch in a post-commit hook in SVN? 주의 : 보안 이슈로 hooks 실행은 환경변수를 상속받지 않고 모두 초기화하고 실행된다. post-commit #!/bin/sh REPOS="$1" REV="$2" mailer.py commit "$REPOS" "$REV" /path/to/mailer.conf DIR="/home/svn/project_name/hooks" if svnlook dirs-changed -r "$REV" "$REPOS" | grep -qEe '^trunk/'; then ${DIR}/_dev_update.sh $1 $2 else ${DIR}/_..

vcs/svn 2017.03.24

ssh-keygen 자동 로그인

SSH Key - 비밀번호 없이 로그인 ssh 자동연결 id_rsa는 유출되면 안된다. !!!!!!!!!!!! #rsa 로 키와 공개키를 만든다. ssh-keygen -t rsa Enter file in which to save the key (/home/username/.ssh/id_rsa): # 기본값 사용 Enter passphrase (empty for no passphrase): # 비밀번호 (자동 로그인은 공백을 입력) Enter same passphrase again: # 비밀번호 확인 # 원격서버에 공개키를 업로드한다. scp id_rsa.pub username@domain.com:id_rsa.pub # scp id_rsa.pub username@domain.com # scp id_rsa...

os/Linux 2017.03.23
반응형