- Today
- Total
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- JavaScript
- 백준
- deep dive
- get
- 모던 자바스크립트
- js
- http
- 프론트엔드
- 그림으로 배우는 http&network
- async
- map
- html
- 에러처리
- React
- Angular
- 모던 자바스크립트 deep dive
- git
- C++
- 알고리즘
- 비동기
- 자바스크립트
- error
- es6
- 이터러블
- git error
- 백준 실버
- 네트워크
- 상태관리
- 웹
- Java Script
Archives
sharingStorage
git error 해결법 - warning: LF will be replaced by CRLF in 본문
git add . 명령어 사용시 발생한 error
errorcode: warning: LF will be replaced by CRLF in src/components/Popup.svelte (in 이하 폴더위치)
The file will have its original line endings in your working directory
원인 :
Unix 시스템에서 줄의 끝은 줄바꿈(LF)로 표시되는데 window시스템에서 줄은 캐리지 리턴(CR)과 줄바꿈(LF)로 표현되므로 CRLF이다. 따라서 Unix 시스템에서 업로드된 git에서 코드를 받으면 LF만 있다.
해결 :
Window시스템에서만 작업하는 단일 개발자이고 git이 자동으로 LF를 CRLF로 바꾸는 것에 신경쓰지 않는다면 git config core.autocrlf true로 경고를 끌 수 있다.
Windows, DOS 명령어
git config --global core.autocrlf true
Linux, MAC 명령어
git config --global core.autocrlf input
Reference
https://dabo-dev.tistory.com/13
'git' 카테고리의 다른 글
git add, commit, push 명령어로 추가한 내용 취소 (0) | 2022.03.21 |
---|---|
git error 해결법 - husky > pre-commit hook failed (add --no-verify to bypass) (0) | 2022.03.03 |
git이란? (0) | 2022.02.24 |
git 간단한 명령어 정리 (0) | 2022.02.24 |
git error 해결법 - fatal: You are not currently on a branch.To push the history leading to the current (detached HEAD)state now, use (0) | 2022.02.22 |
Comments