git commit message에서 한글을 인식하지 못하고 다음과 같이 요상한 문자가 생기는 경우가 있습니다. 해결책은 다음과 같습니다. 해당 프로젝트 내 .git (Shift + Command + .) 폴더 접근 config 파일에 다음을 추가합니다. [i18n] commitEncoding = utf-8 logOutputEncoding = utf-8 or 명령어로 처리할 시 git config --global i18n.commitEncoding utf-8 git config --global i18n.logOutputEncoding utf-8 다음과 같이 로그 출력과 커밋 메세지 출력을 global하게 utf-8로 설정해주시면, 이상한 특수문자가 보이지 않고 한글이 깨지지 않게 됩니다. https://..