質問編集履歴

3

追記

2020/09/13 09:56

投稿

kazuki_user
kazuki_user

スコア147

test CHANGED
File without changes
test CHANGED
@@ -56,7 +56,185 @@
56
56
 
57
57
 
58
58
 
59
-
59
+ ## 追記
60
+
61
+
62
+
63
+ 管理対象外にしたいファイル名。
64
+
65
+
66
+
67
+ ```
68
+
69
+ # Xcode
70
+
71
+ #
72
+
73
+ # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
74
+
75
+
76
+
77
+ ## User settings
78
+
79
+ xcuserdata/
80
+
81
+
82
+
83
+ ## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
84
+
85
+ *.xcscmblueprint
86
+
87
+ *.xccheckout
88
+
89
+
90
+
91
+ ## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
92
+
93
+ build/
94
+
95
+ DerivedData/
96
+
97
+ *.moved-aside
98
+
99
+ *.pbxuser
100
+
101
+ !default.pbxuser
102
+
103
+ *.mode1v3
104
+
105
+ !default.mode1v3
106
+
107
+ *.mode2v3
108
+
109
+ !default.mode2v3
110
+
111
+ *.perspectivev3
112
+
113
+ !default.perspectivev3
114
+
115
+
116
+
117
+ ## Obj-C/Swift specific
118
+
119
+ *.hmap
120
+
121
+
122
+
123
+ ## App packaging
124
+
125
+ *.ipa
126
+
127
+ *.dSYM.zip
128
+
129
+ *.dSYM
130
+
131
+
132
+
133
+ ## Playgrounds
134
+
135
+ timeline.xctimeline
136
+
137
+ playground.xcworkspace
138
+
139
+
140
+
141
+ # Swift Package Manager
142
+
143
+ # Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
144
+
145
+ # Packages/
146
+
147
+ # Package.pins
148
+
149
+ # Package.resolved
150
+
151
+ # *.xcodeproj
152
+
153
+ # Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
154
+
155
+ # hence it is not needed unless you have added a package configuration file to your project
156
+
157
+ # .swiftpm
158
+
159
+
160
+
161
+ .build/
162
+
163
+
164
+
165
+ # CocoaPods
166
+
167
+ # We recommend against adding the Pods directory to your .gitignore. However
168
+
169
+ # you should judge for yourself, the pros and cons are mentioned at:
170
+
171
+ # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
172
+
173
+ # Pods/
174
+
175
+ # Add this line if you want to avoid checking in source code from the Xcode workspace
176
+
177
+ # *.xcworkspace
178
+
179
+
180
+
181
+ # Carthage
182
+
183
+ # Add this line if you want to avoid checking in source code from Carthage dependencies.
184
+
185
+ # Carthage/Checkouts
186
+
187
+
188
+
189
+ Carthage/Build/
190
+
191
+
192
+
193
+ # Accio dependency management
194
+
195
+ Dependencies/
196
+
197
+ .accio/
198
+
199
+
200
+
201
+ # fastlane
202
+
203
+ # It is recommended to not store the screenshots in the git repo.
204
+
205
+ # Instead, use fastlane to re-generate the screenshots whenever they are needed.
206
+
207
+ # For more information about the recommended setup visit:
208
+
209
+ # https://docs.fastlane.tools/best-practices/source-control/#source-control
210
+
211
+
212
+
213
+ fastlane/report.xml
214
+
215
+ fastlane/Preview.html
216
+
217
+ fastlane/screenshots/**/*.png
218
+
219
+ fastlane/test_output
220
+
221
+
222
+
223
+ # Code Injection
224
+
225
+ # After new code Injection tools there's a generated folder /iOSInjectionProject
226
+
227
+ # https://github.com/johnno1962/injectionforxcode
228
+
229
+
230
+
231
+ iOSInjectionProject/
232
+
233
+
234
+
235
+ # End of https://www.toptal.com/developers/gitignore/api/swift
236
+
237
+ ```
60
238
 
61
239
 
62
240
 

2

書式の改善。

2020/09/13 09:56

投稿

kazuki_user
kazuki_user

スコア147

test CHANGED
File without changes
test CHANGED
@@ -18,13 +18,17 @@
18
18
 
19
19
 
20
20
 
21
- `touch .gitignore`は実行済です。
22
-
23
21
 
24
22
 
25
23
 
26
24
 
27
25
  ## 試したこと
26
+
27
+
28
+
29
+ `touch .gitignore`は実行。
30
+
31
+
28
32
 
29
33
 
30
34
 

1

書式の改善。

2020/09/13 09:41

投稿

kazuki_user
kazuki_user

スコア147

test CHANGED
File without changes
test CHANGED
@@ -6,7 +6,15 @@
6
6
 
7
7
 
8
8
 
9
+ [**こちら**](https://qiita.com/misakiagata/items/d572e89b5b35e046b7a7)によると、
10
+
11
+ > .gitignoreをテキストエディタで開き、
12
+
13
+
14
+
9
- Xcodeのでしょうか..?
15
+ とあるのですが、Xcodeのでしょうか..?
16
+
17
+ その場合、Xcodeのどこにあるのですか?
10
18
 
11
19
 
12
20