Skip to content

Commit 43204e2

Browse files
committed
GitIgnore updated
1 parent 6a7c173 commit 43204e2

File tree

1 file changed

+70
-18
lines changed

1 file changed

+70
-18
lines changed

.gitignore

Lines changed: 70 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,20 @@
22
.DS_Store
33

44
# Xcode
5+
#
6+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
7+
8+
## User settings
9+
xcuserdata/
10+
11+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
12+
*.xcscmblueprint
13+
*.xccheckout
14+
15+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
516
build/
17+
DerivedData/
18+
*.moved-aside
619
*.pbxuser
720
!default.pbxuser
821
*.mode1v3
@@ -11,31 +24,70 @@ build/
1124
!default.mode2v3
1225
*.perspectivev3
1326
!default.perspectivev3
14-
xcuserdata/
15-
*.xccheckout
16-
profile
17-
*.moved-aside
18-
DerivedData
27+
28+
## Obj-C/Swift specific
1929
*.hmap
20-
*.ipa
2130

22-
# AppCode
23-
.idea
31+
## App packaging
32+
*.ipa
33+
*.dSYM.zip
34+
*.dSYM
2435

25-
# Bundler
26-
.bundle
36+
## Playgrounds
37+
timeline.xctimeline
38+
playground.xcworkspace
2739

28-
# Add this line if you want to avoid checking in source code from Carthage dependencies.
29-
# Carthage/Checkouts
40+
# Swift Package Manager
41+
#
42+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
43+
# Packages/
44+
# Package.pins
45+
# Package.resolved
46+
# *.xcodeproj
47+
#
48+
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
49+
# hence it is not needed unless you have added a package configuration file to your project
50+
.swiftpm
3051

31-
Carthage/Build
52+
.build/
3253

54+
# CocoaPods
55+
#
3356
# We recommend against adding the Pods directory to your .gitignore. However
3457
# you should judge for yourself, the pros and cons are mentioned at:
35-
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
36-
#
37-
# Note: if you ignore the Pods directory, make sure to uncomment
38-
# `pod install` in .travis.yml
58+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
3959
#
4060
# Pods/
41-
.swiftpm
61+
#
62+
# Add this line if you want to avoid checking in source code from the Xcode workspace
63+
# *.xcworkspace
64+
65+
# Carthage
66+
#
67+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
68+
# Carthage/Checkouts
69+
70+
Carthage/Build/
71+
72+
# Accio dependency management
73+
Dependencies/
74+
.accio/
75+
76+
# fastlane
77+
#
78+
# It is recommended to not store the screenshots in the git repo.
79+
# Instead, use fastlane to re-generate the screenshots whenever they are needed.
80+
# For more information about the recommended setup visit:
81+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
82+
83+
fastlane/report.xml
84+
fastlane/Preview.html
85+
fastlane/screenshots/**/*.png
86+
fastlane/test_output
87+
88+
# Code Injection
89+
#
90+
# After new code Injection tools there's a generated folder /iOSInjectionProject
91+
# https://github.com/johnno1962/injectionforxcode
92+
93+
iOSInjectionProject/

0 commit comments

Comments
 (0)