- true
- clone/pull : lf -> crlf (windows)
- commit : crlf -> lf
- input
- clone/pull : 변화없음
- commit : crlf -> lf
- false
- clone/pull : 변화없음
- commit : 변화없음
강좌 & 팁
글 수 2,412
2015.10.31 13:26:11 (*.223.77.202)
73491
autocrlf
windows 환경에서 저장소에 hello\n이 있을 경우 예제
autocrlf=true- clone을 하면
hello\r\n world\r\n 추가- commit을 하면 저장소에는
hello\n와 world\n
autocrlf=input- clone을 하면
hello\n world\r\n 추가- commit을 하면 저장소에는
hello\n와 world\n
autocrlf=false- clone을 하면
hello\n world\r\n 추가- commit을 하면 저장소에는
hello\n와 world\r\n
autocrlf=true- clone을 하면
hello\r\n world\r\n추가- commit을 하면 저장소에는
hello\n와world\n
- clone을 하면
autocrlf=input- clone을 하면
hello\n world\r\n추가- commit을 하면 저장소에는
hello\n와world\n
- clone을 하면
autocrlf=false- clone을 하면
hello\n world\r\n추가- commit을 하면 저장소에는
hello\n와world\r\n
- clone을 하면


