From d7e2a17d824023d2643ec4b9dbd0721406bbcb80 Mon Sep 17 00:00:00 2001 From: Sean Kim Date: Fri, 28 Nov 2025 14:48:09 +0900 Subject: [PATCH] git add ignore --- .gitignore | 65 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..623ff66 --- /dev/null +++ b/.gitignore @@ -0,0 +1,65 @@ +# ----------------------- +# macOS / System Files (사용자가 요청한 .* 관련 파일들) +# ----------------------- +.DS_Store +.AppleDouble +.LSOverride +._* + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +# ----------------------- +# Swift Package Manager (SPM) +# ----------------------- +# 빌드 아티팩트 및 체크아웃된 패키지 저장소 (가장 중요) +.build/ + +# Xcode에서 패키지 폴더를 열 때 생성되는 설정 폴더 +.swiftpm/ + +# 구버전 SPM 캐시 (혹시 몰라 포함) +Packages/ + +# ----------------------- +# Xcode +# ----------------------- +# SPM 프로젝트라도 Xcode로 열면 생성되는 사용자 데이터 +*.xcodeproj/project.xcworkspace/xcuserdata/ +*.xcodeproj/xcuserdata/ +*.xcworkspace/xcuserdata/ + +# 빌드 파생 데이터 (Derived Data) +DerivedData/ + +# Xcode 상태 파일 +*.xcuserstate +*.break-points + +# ----------------------- +# Other / Misc +# ----------------------- +# 실수로 들어갈 수 있는 백업 파일이나 스왑 파일 +*~.nib +*.swp +*~ +*.bak + +# CocoaPods (SPM을 쓰지만 혹시 섞어 쓸 경우를 대비) +Pods/