Last active
January 8, 2021 11:49
-
-
Save rnkyr/0bfe953e45a0f0b92e3072ec588fb9ce to your computer and use it in GitHub Desktop.
Generic gitignore file I'm currently using 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
| .DS_Store | |
| # Build generated | |
| build/ | |
| DerivedData/ | |
| # Various settings | |
| *.pbxuser | |
| !default.pbxuser | |
| *.mode1v3 | |
| !default.mode1v3 | |
| *.mode2v3 | |
| !default.mode2v3 | |
| *.perspectivev3 | |
| !default.perspectivev3 | |
| xcuserdata/ | |
| # Other | |
| *.moved-aside | |
| *.xcuserstate | |
| # Obj-C/Swift specific | |
| *.hmap | |
| *.ipa | |
| *.dSYM.zip | |
| *.dSYM | |
| # Playgrounds | |
| timeline.xctimeline | |
| playground.xcworkspace | |
| # CocoaPods | |
| Pods/ | |
| # Carthage | |
| Carthage/Build | |
| Carthage/Checkouts | |
| # development | |
| logs/* | |
| tmp/* | |
| # AppCode | |
| .idea/ | |
| # fastlane | |
| fastlane/report.xml | |
| fastlane/README.md | |
| fastlane/Preview.html | |
| fastlane/screenshots/**/*.png | |
| fastlane/test_output | |
| sonar-reports/* | |
| ## GitLab CI | |
| .bundle/ | |
| vendor/ | |
| Brewfile.lock.json |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment