From 743874dbda50a58024b635ca17a8cb0cac5074f5 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 27 Jul 2026 02:43:47 +0000 Subject: [PATCH] =?UTF-8?q?=EC=A4=84=EB=B0=94=EA=BF=88=20=EC=A0=95?= =?UTF-8?q?=EA=B7=9C=ED=99=94=EB=A1=9C=20=EC=9D=B8=ED=95=9C=20=EB=8C=80?= =?UTF-8?q?=EA=B7=9C=EB=AA=A8=20=EA=B0=80=EC=A7=9C=20diff=20=EB=B0=A9?= =?UTF-8?q?=EC=A7=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit decompiled/Launcher.decompiled.cs는 CRLF·CR·LF가 섞여 있어(CR CR LF 3550개, bare LF 417개) 편집 도구나 Git이 줄바꿈을 정규화하면 실제 변경이 몇 줄이어도 파일 전체가 바뀐 것처럼 보입니다. 이번 작업 중 실제로 한 번 발생했습니다. 저장소에 .gitattributes가 없어 다른 환경의 core.autocrlf 설정에 따라 체크아웃 결과가 달라질 수 있었습니다. 모든 파일에 -text를 지정해 Git이 줄바꿈을 건드리지 않도록 하고, 바이너리 자산은 diff 대상에서 제외합니다. 기존 파일은 재정규화되지 않는 것을 확인했습니다. 제품 코드 변경이 없어 버전은 올리지 않습니다. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01A4KU6BZL5oWTjH2eDB18Yu --- .gitattributes | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..93a26a5 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,9 @@ +# decompiled/Launcher.decompiled.cs 는 CRLF·CR·LF가 섞여 있습니다. Git이 줄바꿈을 정규화하면 +# 실제 변경이 몇 줄이어도 파일 전체가 바뀐 것처럼 보이므로, 모든 소스를 바이트 그대로 다룹니다. +* -text + +# 바이너리 자산은 diff 대상이 아닙니다. +*.ico binary +*.jar binary +*.exe binary +*.zip binary