- 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)
47476
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을 하면