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}/_..