Created
September 21, 2023 15:03
-
-
Save julianpinedayyz/487f6c42166641630383c91cc4c7edf1 to your computer and use it in GitHub Desktop.
Gitignore for Xcode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Xcode | |
# | |
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore | |
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) | |
build/ | |
DerivedData/ | |
*.moved-aside | |
*.pbxuser | |
!default.pbxuser | |
*.mode1v3 | |
!default.mode1v3 | |
*.mode2v3 | |
!default.mode2v3 | |
*.perspectivev3 | |
!default.perspectivev3 | |
## User settings | |
xcuserdata/ | |
## Other | |
*.moved-aside | |
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) | |
*.xcscmblueprint | |
*.xccheckout | |
*.xcuserstate | |
## Obj-C/Swift specific | |
*.hmap | |
## App packaging | |
*.ipa | |
*.dSYM.zip | |
*.dSYM | |
## Playgrounds | |
timeline.xctimeline | |
playground.xcworkspace | |
# CocoaPods | |
# | |
# We recommend against adding the Pods directory to your .gitignore. However | |
# you should judge for yourself, the pros and cons are mentioned at: | |
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control | |
# | |
# Pods/ | |
# Carthage | |
# | |
# Add this line if you want to avoid checking in source code from Carthage dependencies. | |
# Carthage/Checkouts | |
Carthage/Build/ | |
# Accio dependency management | |
Dependencies/ | |
.accio/ | |
# fastlane | |
# | |
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the | |
# screenshots whenever they are needed. | |
# For more information about the recommended setup visit: | |
# https://docs.fastlane.tools/best-practices/source-control/#source-control | |
fastlane/report.xml | |
fastlane/Preview.html | |
fastlane/screenshots | |
fastlane/test_output | |
# Code Injection | |
# After new code Injection tools there's a generated folder /iOSInjectionProject | |
# https://github.com/johnno1962/injectionforxcode | |
iOSInjectionProject/ | |
### SwiftPackageManager ### | |
Packages | |
xcuserdata | |
*.xcodeproj | |
### Xcode ### | |
# Xcode | |
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore | |
## Gcc Patch | |
/*.gcno | |
### Xcode Patch ### | |
*.xcodeproj/* | |
!*.xcodeproj/project.pbxproj | |
!*.xcodeproj/xcshareddata/ | |
!*.xcworkspace/contents.xcworkspacedata | |
**/xcshareddata/WorkspaceSettings.xcsettings | |
### XcodeInjection ### | |
# Code Injection | |
# After new code Injection tools there's a generated folder /iOSInjectionProject | |
# https://github.com/johnno1962/injectionforxcode | |
# Code Signing | |
# | |
# If you wish to share your code signing files, it is recommended to add them to gitignore | |
# | |
# *.cert | |
# *.mobileprovision | |
# Link https://gist.github.com/DelphiQin/5553780 | |
##### | |
# OS X temporary files that should never be committed | |
# | |
# c.f. http://www.westwind.com/reference/os-x/invisibles.html | |
.DS_Store | |
# c.f. http://www.westwind.com/reference/os-x/invisibles.html | |
.Trashes | |
# c.f. http://www.westwind.com/reference/os-x/invisibles.html | |
*.swp | |
# *.lock - this is used and abused by many editors for many different things. | |
# For the main ones I use (e.g. Eclipse), it should be excluded | |
# from source-control, but YMMV | |
*.lock | |
# | |
# profile - REMOVED temporarily (on double-checking, this seems incorrect; I can't find it in OS X docs?) | |
#profile | |
#### | |
# Xcode temporary files that should never be committed | |
# | |
# NB: NIB/XIB files still exist even on Storyboard projects, so we want this... | |
*~.nib |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment