LoginSignup
6
6

More than 5 years have passed since last update.

Xcodeプロジェクトの.gitignore

Last updated at Posted at 2016-07-26

Xcodeプロジェクトから都度不要ファイルをどけるのがだるいので、メモ

*.xcuserstate
*.xcbkptlist

2016/07/31:追記

コメントで指摘のあったgiboを使うとかなり簡単。

$ gibo xcode
### https://raw.github.com/github/gitignore/9f6724149b9a0a861b402683f6c50c5f085d130b/Global/xcode.gitignore

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

## Build generated
build/
DerivedData/

## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/

## Other
*.moved-aside
*.xccheckout
*.xcscmblueprint


$ gibo xcode >> .gitignore

参考
http://stackoverflow.com/questions/9028118/what-is-userinterfacestate-xcuserstate-file-in-xcode-project

6
6
3

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
6
6