Remove .DS_Store files and update .gitignore
- Remove tracked .DS_Store files from root, Sources/, and Tests/ - Add comprehensive .gitignore with macOS, Xcode, and Swift patterns - Ensure .DS_Store files are properly ignored going forward
This commit is contained in:
parent
f6fb22ccd2
commit
6880e7a895
82
.gitignore
vendored
82
.gitignore
vendored
@ -1,3 +1,28 @@
|
||||
# macOS
|
||||
.DS_Store
|
||||
.AppleDouble
|
||||
.LSOverride
|
||||
Icon
|
||||
._*
|
||||
.DocumentRevisions-V100
|
||||
.fseventsd
|
||||
.Spotlight-V100
|
||||
.TemporaryItems
|
||||
.Trashes
|
||||
.VolumeIcon.icns
|
||||
.com.apple.timemachine.donotpresent
|
||||
.AppleDB
|
||||
.AppleDesktop
|
||||
Network Trash Folder
|
||||
Temporary Items
|
||||
.apdisk
|
||||
|
||||
# macOS Extended Attributes and Metadata
|
||||
*.bridgesupport
|
||||
.metadata_never_index
|
||||
.ql_*
|
||||
.Trash-*
|
||||
|
||||
# Xcode
|
||||
#
|
||||
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
|
||||
@ -5,10 +30,26 @@
|
||||
## User settings
|
||||
xcuserdata/
|
||||
|
||||
## Various Xcode settings
|
||||
*.pbxuser
|
||||
!default.pbxuser
|
||||
*.mode1v3
|
||||
!default.mode1v3
|
||||
*.mode2v3
|
||||
!default.mode2v3
|
||||
*.perspectivev3
|
||||
!default.perspectivev3
|
||||
*.xccheckout
|
||||
*.moved-aside
|
||||
*.xcuserstate
|
||||
*.xcscmblueprint
|
||||
|
||||
## Build generated
|
||||
build/
|
||||
DerivedData/
|
||||
|
||||
## Obj-C/Swift specific
|
||||
*.hmap
|
||||
|
||||
## App packaging
|
||||
*.ipa
|
||||
*.dSYM.zip
|
||||
*.dSYM
|
||||
@ -17,6 +58,12 @@ xcuserdata/
|
||||
timeline.xctimeline
|
||||
playground.xcworkspace
|
||||
|
||||
## Xcode Patch
|
||||
*.xcodeproj/*
|
||||
!*.xcodeproj/project.pbxproj
|
||||
!*.xcodeproj/xcshareddata/
|
||||
!*.xcworkspace/contents.xcworkspacedata
|
||||
|
||||
# Swift Package Manager
|
||||
#
|
||||
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
|
||||
@ -30,6 +77,11 @@ playground.xcworkspace
|
||||
# .swiftpm
|
||||
|
||||
.build/
|
||||
Packages/
|
||||
Package.pins
|
||||
**/Package.resolved
|
||||
**/.swiftpm/
|
||||
*.xcworkspace/xcshareddata/swiftpm/
|
||||
|
||||
# CocoaPods
|
||||
#
|
||||
@ -60,3 +112,29 @@ fastlane/report.xml
|
||||
fastlane/Preview.html
|
||||
fastlane/screenshots/**/*.png
|
||||
fastlane/test_output
|
||||
|
||||
# Temporary files
|
||||
*.tmp
|
||||
*.temp
|
||||
.cache/
|
||||
debug
|
||||
*.bak
|
||||
*.backup
|
||||
*~
|
||||
|
||||
# OS generated files
|
||||
Thumbs.db
|
||||
ehthumbs.db
|
||||
desktop.ini
|
||||
|
||||
# Editor backup files
|
||||
*.swp
|
||||
*.swo
|
||||
.#*
|
||||
#*#
|
||||
|
||||
# IDEs and editors
|
||||
.idea/
|
||||
.vscode/
|
||||
*.sublime-workspace
|
||||
*.sublime-project
|
||||
|
||||
BIN
Sources/.DS_Store
vendored
BIN
Sources/.DS_Store
vendored
Binary file not shown.
BIN
Tests/.DS_Store
vendored
BIN
Tests/.DS_Store
vendored
Binary file not shown.
Loading…
Reference in New Issue
Block a user