프로그래밍/Web
PhpStorm 의 .idea 디렉토리 git ignore 처리하기
사악신
2016. 12. 26. 17:34
.idea 등 특정 디렉토리 이하 파일들에 대한 ignore 를 처리하기 위하여 아래처럼 설정합니다.
가령, .idea 디렉토리인 경우 설정에서 Version Control > Ignored File > Add 를 실행한 후, Ignore all files under 를 실행하여 해당 디렉토리를 지정한 후, Terminal 에서 아래의 명령어를 실행합니다.
git rm --cached .idea/*
반응형