일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- unity
- 자바
- 히오스
- 아이패드
- 비행기 모드
- TCP 네트워크 방식의 연결
- 기업의 행포
- tcp
- 스랄 특성
- 벨팡
- 리눅스
- 안드로이드 Application Lifecycle
- End of Darkness
- 명령어
- 소캣(Socket)
- game
- 집 정리
- 안드로이드
- Collection Framework
- 컬렉션 프레임
- 아이폰
- 어플
- tcp네트워크
- 나지보 특성
- 에셋
- 게임
- php 홈디렉토리 변경방법
- 변경된 정보
- 포트(Port)
- 나지보
- Today
- Total
Do Something IT
Github "Warning: line endings have changed from 'LF' to 'CRLF' 본문
"Warning: line endings have changed from 'LF' to 'CRLF'." when files have LF line endings on Windows · Issue #3841 · desktop/d
Description As initially noticed in #1906 (comment) and observed further in #3828, GitHub Desktop presents an erroneous warning about line endings for text files with LF line endings in the working...
github.com
@stuartpb Isn't configuration from Github Desktop, you using Windows, Git assumes CRLF, but your "text editor" uses LF only.
Or you change your text editor to CRLF or in your "local repository" change to use only LF using Git commands, example:
In Github Desktop select your repository and in menu go to Repository > Open in Command Prompt:
Execute this commands (In this exact order):
git config core.eol lf git config core.autocrlf input
와 같이 처리하자
git config --global core.safecrlf false