From 593f9121862596504c4f6e777b4f7fc42cc9a744 Mon Sep 17 00:00:00 2001 From: lowell! Date: Tue, 1 Dec 2015 01:40:12 -0800 Subject: [PATCH] Update .gitignore (Hey, thanks for sharing this!) The current .gitignore only ignores a [single user's `xcuserdata`](https://github.com/marmelroy/Localize-Swift/blob/f03f871727804eaaea4109ff409ff19a7535efa2/.gitignore#L55). Pull request updates it to ignore all `xcuserdata` folders to support multiple developers, as well as a set of potential future cruft. --- .gitignore | 54 +++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 53 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 3d9960b..7fb569a 100644 --- a/.gitignore +++ b/.gitignore @@ -72,4 +72,56 @@ examples/LanguageSwitch/Pods/Target Support Files/Pods/Pods.debug.xcconfig examples/LanguageSwitch/Pods/Target Support Files/Pods/Pods.modulemap examples/LanguageSwitch/Pods/Target Support Files/Pods/Pods.release.xcconfig examples/LanguageSwitch/Sample.xcworkspace/xcuserdata/marmelroy.xcuserdatad/UserInterfaceState.xcuserstate -build + +# Created by https://www.gitignore.io/api/xcode,osx + +### Xcode ### +# Xcode +# + +## Build generated +build/ +DerivedData + +## Various settings +*.pbxuser +!default.pbxuser +*.mode1v3 +!default.mode1v3 +*.mode2v3 +!default.mode2v3 +*.perspectivev3 +!default.perspectivev3 +xcuserdata + +## Other +*.xccheckout +*.moved-aside +*.xcuserstate + + +### OSX ### +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk