git

git 명령시 한글이 숫자로 보이는 문제

yanJuicy 2024. 5. 20. 07:52
반응형

한글이 숫자로 보이는 문제

MAC os에서 git을 이용하던 중 한글이 숫자로 변해서 보이는 문제가 생겼다.

 

 

문제 해결

이를 해결하기 위해 다음 코드를 입력한다.

git config --global core.quotepath false

 

이후 한글이 정상적으로 보이는 걸 확인할 수 있다.

 

 

공식 문서

git 문서에 다음 내용을 참고해보자.

 

 

참고

http://git-scm.com/docs/git-confighttp://git-scm.com/docs/git-config

 

Git - git-config Documentation

When using the deprecated [section.subsection] syntax, changing a value will result in adding a multi-line key instead of a change, if the subsection is given with at least one uppercase character. For example when the config looks like [section.subsection

git-scm.com

 

반응형

'git' 카테고리의 다른 글

git push 유저 정보  (0) 2024.05.24
Github markdown README badge  (0) 2024.05.22
git cache 삭제  (0) 2024.05.19