Created
May 12, 2016 16:26
-
-
Save nathanhillyer/8f8319156a14032211137fd28596391c to your computer and use it in GitHub Desktop.
Swift gitignore
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 private settings (window sizes, bookmarks, breakpoints, custom executables, smart groups) | |
# | |
# This is complicated: | |
# | |
# SOMETIMES you need to put this file in version control. | |
# Apple designed it poorly - if you use "custom executables", they are | |
# saved in this file. | |
# 99% of projects do NOT use those, so they do NOT want to version control this file. | |
# ..but if you're in the 1%, comment out the line "*.pbxuser" | |
| |
*.pbxuser | |
*.mode1v3 | |
*.mode2v3 | |
*.perspectivev3 | |
# NB: also, whitelist the default ones, some projects need to use these | |
!default.pbxuser | |
!default.mode1v3 | |
!default.mode2v3 | |
!default.perspectivev3 | |
| |
| |
#### | |
# Xcode 4 - semi-personal settings, often included in workspaces | |
# | |
# You can safely ignore the xcuserdata files - but do NOT ignore the files next to them | |
# | |
| |
xcuserdata | |
!xcschemes | |
*.xccheckout | |
| |
#### | |
# XCode 4 workspaces - more detailed | |
# | |
# Workspaces are important! They are a core feature of Xcode - don't exclude them :) | |
# | |
# Workspace layout is quite spammy. For reference: | |
# | |
# (root)/ | |
# (project-name).xcodeproj/ | |
# project.pbxproj | |
# project.xcworkspace/ | |
# contents.xcworkspacedata | |
# xcuserdata/ | |
# (your name)/xcuserdatad/ | |
# xcuserdata/ | |
# (your name)/xcuserdatad/ | |
# | |
# | |
# | |
# Xcode 4 workspaces - SHARED | |
# | |
# This is UNDOCUMENTED (google: "developer.apple.com xcshareddata" - 0 results | |
# But if you're going to kill personal workspaces, at least keep the shared ones... | |
# | |
# | |
!xcshareddata | |
| |
| |
#### | |
# 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 | |
| |
| |
#### | |
# UNKNOWN: recommended by others, but I can't discover what these files are | |
# | |
# ...none. Everything is now explained. | |
.DS* | |
| |
| |
| |
### | |
# AppCode | |
| |
*.idea | |
| |
# Fastlane | |
build_output | |
| |
# 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 | |
| |
*.bak |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment