Skip to content

Commit 7115dc1

Browse files
Add Xcode/Swift entries to .gitignore and untrack xcuserstate
- Add standard Xcode, Swift Package Manager, CocoaPods, Carthage, fastlane, and debug symbol ignore rules - Remove tracked UserInterfaceState.xcuserstate file from index Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 74fb7d6 commit 7115dc1

2 files changed

Lines changed: 61 additions & 0 deletions

File tree

.gitignore

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -399,3 +399,64 @@ FodyWeavers.xsd
399399

400400
# JetBrains Rider
401401
*.sln.iml
402+
403+
## ---- Xcode / Swift ----
404+
## Get latest from https://github.com/github/gitignore/blob/main/Swift.gitignore
405+
406+
# Xcode
407+
build/
408+
DerivedData/
409+
*.moved-aside
410+
*.pbxuser
411+
!default.pbxuser
412+
*.mode1v3
413+
!default.mode1v3
414+
*.mode2v3
415+
!default.mode2v3
416+
*.perspectivev3
417+
!default.perspectivev3
418+
xcuserdata/
419+
*.xccheckout
420+
*.xcscmblueprint
421+
422+
# Xcode workspaces
423+
*.xcworkspace
424+
!*.xcworkspace/contents.xcworkspacedata
425+
!*.xcworkspace/xcshareddata/
426+
/*.gcno
427+
428+
# Swift Package Manager
429+
.build/
430+
Packages/
431+
Package.pins
432+
Package.resolved
433+
*.xcodeproj
434+
!*.xcodeproj/project.pbxproj
435+
!*.xcodeproj/xcshareddata/
436+
437+
# CocoaPods
438+
Pods/
439+
440+
# Carthage
441+
Carthage/Build/
442+
Carthage/Checkouts/
443+
444+
# Accio dependency manager
445+
Dependencies/
446+
.accio/
447+
448+
# fastlane
449+
fastlane/report.xml
450+
fastlane/Preview.html
451+
fastlane/screenshots/**/*.png
452+
fastlane/test_output
453+
454+
# Swift Playgrounds
455+
timeline.xctimeline
456+
playground.xcworkspace
457+
458+
# Swift Package Manager / Xcode
459+
.swiftpm/
460+
*.ipa
461+
*.dSYM.zip
462+
*.dSYM

0 commit comments

Comments
 (0)