Last active
September 30, 2018 07:53
-
-
Save alexcristea/4d9b2141f9afd5c0ac7f to your computer and use it in GitHub Desktop.
Default .gitignore file for iOS projects
This file contains hidden or 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
## Covers OS X | |
.DS_Store | |
.AppleDouble | |
.LSOverride | |
# Icon must end with two \r | |
Icon | |
# Thumbnails | |
._* | |
# Files that might appear on external disk | |
.Spotlight-V100 | |
.Trashes | |
# Directories potentially created on remote AFP share | |
.AppleDB | |
.AppleDesktop | |
Network Trash Folder | |
Temporary Items | |
.apdisk | |
## Covers Xcode IDE | |
build/ | |
*.pbxuser | |
!default.pbxuser | |
*.mode1v3 | |
!default.mode1v3 | |
*.mode2v3 | |
!default.mode2v3 | |
*.perspectivev3 | |
!default.perspectivev3 | |
xcuserdata | |
*.xccheckout | |
*.moved-aside | |
DerivedData | |
*.xcuserstate | |
*.gcno | |
## CocoaPods | |
# | |
# We recommend against adding the Pods directory to your .gitignore. However | |
# you should judge for yourself, the pros and cons are mentioned at: | |
# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control | |
# | |
# Pods/ | |
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode | |
*.iml | |
## Directory-based project format: | |
.idea/ | |
## File-based project format: | |
*.ipr | |
*.iws | |
## Plugin-specific files: | |
# IntelliJ | |
out/ | |
# mpeltonen/sbt-idea plugin | |
.idea_modules/ | |
# JIRA plugin | |
atlassian-ide-plugin.xml | |
# Crashlytics plugin (for Android Studio and IntelliJ) | |
com_crashlytics_export_strings.xml | |
crashlytics.properties | |
crashlytics-build.properties | |
## Covers Sonar | |
.sonar | |
compile_commands.json | |
sonar-reports/ | |
## Covers Fastlane | |
# fastlane specific | |
fastlane/report.xml | |
# deliver temporary files | |
fastlane/Preview.html | |
# snapshot generated screenshots | |
fastlane/screenshots/**/*.png | |
fastlane/screenshots/screenshots.html | |
# scan temporary files | |
fastlane/test_output | |
# other temporary files | |
fastlane/temp | |
# build files | |
fastlane/build | |
## Covers Carthage | |
Carthage/Checkouts | |
Carthage/Build |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment