티스토리 뷰
윈도우 파이참에서 bash 작업 후 리눅스 서버로 보내면 계속 Line separator 이슈가 났다.
공식 문서 Configuring Line Separators—PyCharm (jetbrains.com) 대로 해도 잠시 뿐
창 끄고 돌아오면 다시 crlf 로 돌아가있다.
찾아보니 git 설정을 변경하면 되었다. 아래 참조
# check current config
git config -l
# change the value
git config core.autocrlf false
git config core.eol lf
# make sure
git config --get core.autocrlf
git config --get core.eol
# checkout
git ls-files -z | xargs -9 rm
git checkout .
'Python > 환경구축,설정,에러' 카테고리의 다른 글
VScode 에서 Git 사용하기 + 협업 방법 (0) | 2020.04.21 |
---|---|
[Solved]vscode ssh연결 "Couldn't connect to TextMate!" (0) | 2019.08.21 |
vmware로 가상환경 설치하기 및 마운트 설정하기 (0) | 2019.08.02 |
아나콘다를 설치해보자! (0) | 2019.06.18 |
Connect to Linux(VMware) from Windows by using PuTTY (0) | 2019.06.09 |