반응형
파일을 한글 이름으로 새로 생성할 때 git bash에서는 git status를 할 때 깨지는 현상이 발생했었다.
$ git status
On branch master
Untracked files:
(use "git add <file>..." 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 branch master
Untracked files:
(use "git add <file>..." to include in what will be committed)
임시문서.txt
nothing added to commit but untracked files present (use "git add" to track)
참고 사이트 :
반응형
'Code > Git' 카테고리의 다른 글
[Git] git commit 취소하기, git commit 수정하기 (0) | 2020.11.20 |
---|---|
[Git]Git add 명령어 되돌리기 (0) | 2020.11.20 |
[Git] git commit 히스토리 조회하기 (0) | 2020.11.19 |
[Git] Staging이 뭐지?? - Git에서 파일의 상태 알기 (0) | 2020.11.18 |
[Git] local 상에서 git repository 관리하기( github와 local 동기화) (0) | 2020.11.17 |