# 줄바꿈 고정.
# Windows에서 작업하고 리눅스 서버에서 실행하는 파일들이라, 체크아웃 때 CRLF로 바뀌면
# 셸이 `$'
': command not found` / syntax error 로 죽는다.
*.sh          text eol=lf
Dockerfile    text eol=lf
*.dockerignore text eol=lf
deploy/*.yml  text eol=lf

# PowerShell 스크립트는 Windows에서만 쓰므로 CRLF로 둔다.
*.ps1         text eol=crlf

# 캡처 이미지는 변환 대상이 아니다.
*.png         binary
*.xlsm        binary
*.xlsx        binary
