-
Notifications
You must be signed in to change notification settings - Fork 5
/
.gitignore
178 lines (149 loc) · 3.88 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
###
#iOS-MAC-Xcode gitignore
###
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
#*.7z
#*.dmg
#*.gz
#*.iso
#*.jar
#*.rar
#*.tar
#*.zip
# Logs and databases #
######################
#*.log
#*.sql
#*.sqlite
# OS generated files #
######################
._*
.Spotlight-V100
ehthumbs.db
Thumbs.db
.LSOverride
# OS X temporary files that should never be committed
# c.f. http://www.westwind.com/reference/os-x/invisibles.html
.DS_Store
.DS_Store?
# c.f. http://www.westwind.com/reference/os-x/invisibles.html
.Trashes
# c.f. http://www.westwind.com/reference/os-x/invisibles.html
*.swp
# Open Office temp file
.~*.doc#
# vim temporary files
*~
*.swp
*.swo
# Xcode
.DS_Store
profile
*.hmap
*.xccheckout
*.ipa
# http://stackoverflow.com/questions/10956312/is-the-project-xcworkspace-file-important
#project.xcworkspace/
# NB: NIB/XIB files still exist even on Storyboard projects, so we want this...
*~.nib
# Xcode build files -
# NB: slash on the end, so we only remove the FOLDER, not any files that were badly named "DerivedData"
DerivedData/
# NB: slash on the end, so we only remove the FOLDER, not any files that were badly named "build"
build/
#####
# Xcode private settings (window sizes, bookmarks, breakpoints, custom executables, smart groups)
# SOMETIMES you need to put *.pbxuser in version control. If you use "custom executables", they are saved in this file.
# 99% of projects do NOT use those. But if you're in the 1%, comment out the line "*.pbxuser"
# .pbxuser: http://lists.apple.com/archives/xcode-users/2004/Jan/msg00193.html
*.pbxuser
# .mode1v3: http://lists.apple.com/archives/xcode-users/2007/Oct/msg00465.html
*.mode1v3
# .mode2v3: http://lists.apple.com/archives/xcode-users/2007/Oct/msg00465.html
*.mode2v3
# .perspectivev3: http://stackoverflow.com/questions/5223297/xcode-projects-what-is-a-perspectivev3-file
*.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
xcuserdata
####
# 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
####
# Xcode 5
# Some VCS metadata should be ignored: ..or may be not. :)
#*.xccheckout
####
# AppCode
.idea/
#####
# SkyWinder's additions to correctly use CocoaPods:
####
#project.xcworkspace/
#CocoaPods
# Note: You shouldn't be ignoring *.lock or Podfile.lock (never mind the redundancy).
#You want the exact same versions installed in all workspaces, you don't want the "latest version".
!*.lock
!Podfile.lock
# BaldyAsh's addition not to commit Pods/
# Pods/
####
# UNKNOWN: recommended by others, but I can't discover what these files are
# ...none. Everything is now explained.
#########################
#the this file merged with https://gist.github.com/6054975.git
# For latest version, see: http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects
# on 11/11/13 merged by Petr Korolev
#########################
###
#Ruby gitignore - https://github.com/github/gitignore/blob/master/Ruby.gitignore
###
*.gem
*.rbc
/.config
/coverage/
/InstalledFiles
/pkg/
/spec/reports/
/spec/examples.txt
/test/tmp/
/test/version_tmp/
/tmp/
## Specific to RubyMotion:
.dat*
.repl_history
build/
## Documentation cache and generated files:
/.yardoc/
/_yardoc/
/doc/
/rdoc/
## Environment normalisation:
/.bundle/
/vendor/bundle
/lib/bundler/man/
# for a library or gem, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# Gemfile.lock
# .ruby-version
# .ruby-gemset
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
.rvmrc