Skip to content

Commit

Permalink
Update .gitignore
Browse files Browse the repository at this point in the history
(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.
  • Loading branch information
lowell committed Dec 1, 2015
1 parent f03f871 commit 593f912
Showing 1 changed file with 53 additions and 1 deletion.
54 changes: 53 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 593f912

Please sign in to comment.