-
-
Save byJeevan/1c345040701b90357b9392a933361c25 to your computer and use it in GitHub Desktop.
swift .gitignore template
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
# see https://gist.github.com/muhasturk/df28ec9d2cc18bf1cfc8 | |
# see https://github.com/github/gitignore/blob/master/Swift.gitignore | |
*.xcodeproj/* | |
!*.xcodeproj/project.pbxproj | |
!*.xcodeproj/xcshareddata | |
# | |
# *.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 files are usually local-only file-synchronization on the local FS that should NOT go in git) | |
# c.f. the "OPTIONAL" section at bottom though, for tool-specific variations! | |
# | |
# In particular, if you're using CocoaPods, you'll want to comment-out this line: | |
*.lock | |
# bundler | |
/.bundle/ | |
!Gemfile.lock | |
#### | |
# Xcode temporary files that should never be committed | |
# | |
# NB: NIB/XIB files still exist even on Storyboard projects, so we want this... | |
*~.nib | |
## Build generated | |
build/ | |
DerivedData/ | |
#### | |
# Xcode 4 - Deprecated classes | |
# | |
# Allegedly, if you manually "deprecate" your classes, they get moved here. | |
# | |
# We're using source-control, so this is a "feature" that we do not want! | |
*.moved-aside | |
## Various settings | |
*.pbxuser | |
!default.pbxuser | |
*.mode1v3 | |
!default.mode1v3 | |
*.mode2v3 | |
!default.mode2v3 | |
*.perspectivev3 | |
!default.perspectivev3 | |
xcuserdata | |
## Other | |
*.xccheckout | |
*.moved-aside | |
*.xcuserstate | |
*.xcscmblueprint | |
## Obj-C/Swift specific | |
*.hmap | |
*.ipa | |
## Playgrounds | |
timeline.xctimeline | |
playground.xcworkspace | |
# Swift Package Manager | |
# | |
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. | |
Packages/ | |
.build/ | |
# 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 | |
# 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://github.com/fastlane/fastlane/blob/master/docs/Gitignore.md | |
fastlane/report.xml | |
fastlane/screenshots | |
# OSX Temp | |
.DS_Store | |
.AppleDouble | |
.LSOverride | |
# OSX Thumbnails | |
._* | |
# OSX Directories potentially created on remote AFP share | |
.AppleDB | |
.AppleDesktop | |
Network Trash Folder | |
Temporary Items | |
.apdisk | |
# Linux trash folder which might appear on any partition or disk | |
.Trash-* | |
# vim | |
*.swp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment