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 |
Tags
- concreteclass
- Eureka
- garbagecollection
- object
- hamobee
- overload
- run()
- arguments
- value
- 콘크리트클래스
- 추상클래스
- abstractclass
- 생성자
- super
- override
- Vector
- reference
- 객체형변환
- MSA
- Polymorphism
- constantnumber
- string
- eclipse
- methodArea
- Hashtable
- hashCode
- ALTER
- start()
- class
- fuction
Archives
- Today
- Total
뇌운동일지
[github 오리발질] warning: LF will be replaced by CRLF in 본문
warning: LF will be replaced by CRLF in ~~~
운영체제에 따라 개행문자가 다름
유닉스/리눅스 계열의 운영체제는 LF를 개행문자로 사용하고,
윈도우는 CRLF를 개행문자로 사용한다.
운영체제에서의 차이로 인해 발생한 문제이다.
나는 javascript로 작성한 코드를 add . 하려니 이런 warning이 나왔다.
core.autocrlf 값을 true로 바꾸어주면 문제를 해결할 수 있다.
git config core.autocrlf true
'오리너구리의 오리발질 > Git' 카테고리의 다른 글
Comments