SVN 명령어 SVN 히스토리 보기 $ svn log $ svn log –limit 4 $ svn log -l 4 SVN 파일 속성 만들기 (commit 무시) http://blog.naver.com/PostView.nhn?blogId=joycestudy&logNo=100097621794 $ svn propset svn:ignore POC . 현재 디렉토리상 POC 디렉토리 commit을 무시하라는 의미이다. 하나씩 업데이트 $ svn commit –username “mlink_1” –password “mlink_1” -m “refs #5402 광고별 통계 추가” template/manage/report/man_advertiser_report SVN […]
synergy.conf 파일 (aliase 사용)
샘플 파일 # sample synergy configuration file # # comments begin with the # character and continue to the end of # line. comments may appear anywhere the syntax permits. section: screens # three hosts named: moe, larry, and curly hansung: msi: asus: end section: links hansung: right = msi msi: left = hansung right […]
MySQL Tips
MySQL 무중단 Dump 뜨기, InnoDB이고 트랜잭션을 사용중일 때 –skip-add-locks –single-transaction –skip-lock-tables 테이블별 사이즈 보기 SELECT table_name, table_rows, round(data_length/(1024*1024),2) as ‘DATA_SIZE(MB)’, round(index_length/(1024*1024),2) as ‘INDEX_SIZE(MB)’ FROM information_schema.TABLES where table_schema = ‘rewardad’ GROUP BY table_name ORDER BY data_length DESC; 셀렉트로 Dump 뜨기 mysql -urad -p@1emdrewarddb -e”select * from account” rewardad > result.sql MySQL Timezone 설정하기 참고 : http://dev.mysql.com/doc/refman/5.5/en//time-zone-support.html […]