LoginSignup
3
2

More than 3 years have passed since last update.

iOS開発における.gitignoreの設定

Last updated at Posted at 2019-09-11

iOS開発における.gitignoreの中身

 # Xcode 
:--
# 
 # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 
 ## User settings 
 xcuserdata/ 

## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) 
 *.xcscmblueprint 
 *.xccheckout  

## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) 
 build/ 
 DerivedData/ 
 *.moved-aside 
 *.pbxuser 
 !default.pbxuser 
 *.mode1v3 
 !default.mode1v3 
 *.mode2v3 
 !default.mode2v3 
 *.perspectivev3
 !default.perspectivev3 

 ## Gcc Patch 
 /*.gcno 

*~
*.swp

*.DS_Store
3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2