From 7f7babecc0c488cd235917a909f95dc6e9a902df Mon Sep 17 00:00:00 2001 From: "NEW_GIL_HOME\\hyeon" Date: Mon, 2 Feb 2026 21:23:30 +0900 Subject: [PATCH] Initialize .gitattributes file to enforce LF line endings and exclude binary files from conversion --- .gitattributes | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..09859a9 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,11 @@ +# 저장소에는 LF로 통일 (크로스 플랫폼 호환) +* text=auto eol=lf + +# 바이너리는 변환 제외 +*.png binary +*.jpg binary +*.jpeg binary +*.gif binary +*.ico binary +*.woff binary +*.woff2 binary