[Git] git bash 한글이름 파일 깨짐 해결
·
Programming/Git
파일을 한글 이름으로 새로 생성할 때 git bash에서는 git status를 할 때 깨지는 현상이 발생했었다. $ git status On branch master Untracked files: (use "git add ..." to include in what will be committed) "\354\236\204\354\213\234\353\254\270\354\204\234.txt" nothing added to commit but untracked files present (use "git add" to track) 는 현상이 발생했이러할 때 아래 명령어를 실행하면 간단하게 해결된다. git config --global core.quotepath false $ git status On br..