質問編集履歴
3
追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -27,7 +27,96 @@
|
|
27
27
|
matsumotokazuki@matsumoukinoAir CodeCheck-Test-Yumemi %
|
28
28
|
```
|
29
29
|
|
30
|
+
## 追記
|
30
31
|
|
32
|
+
管理対象外にしたいファイル名。
|
31
33
|
|
34
|
+
```
|
35
|
+
# Xcode
|
36
|
+
#
|
37
|
+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
|
38
|
+
|
39
|
+
## User settings
|
40
|
+
xcuserdata/
|
41
|
+
|
42
|
+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
|
43
|
+
*.xcscmblueprint
|
44
|
+
*.xccheckout
|
45
|
+
|
46
|
+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
|
47
|
+
build/
|
48
|
+
DerivedData/
|
49
|
+
*.moved-aside
|
50
|
+
*.pbxuser
|
51
|
+
!default.pbxuser
|
52
|
+
*.mode1v3
|
53
|
+
!default.mode1v3
|
54
|
+
*.mode2v3
|
55
|
+
!default.mode2v3
|
56
|
+
*.perspectivev3
|
57
|
+
!default.perspectivev3
|
58
|
+
|
59
|
+
## Obj-C/Swift specific
|
60
|
+
*.hmap
|
61
|
+
|
62
|
+
## App packaging
|
63
|
+
*.ipa
|
64
|
+
*.dSYM.zip
|
65
|
+
*.dSYM
|
66
|
+
|
67
|
+
## Playgrounds
|
68
|
+
timeline.xctimeline
|
69
|
+
playground.xcworkspace
|
70
|
+
|
71
|
+
# Swift Package Manager
|
72
|
+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
|
73
|
+
# Packages/
|
74
|
+
# Package.pins
|
75
|
+
# Package.resolved
|
76
|
+
# *.xcodeproj
|
77
|
+
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
|
78
|
+
# hence it is not needed unless you have added a package configuration file to your project
|
79
|
+
# .swiftpm
|
80
|
+
|
81
|
+
.build/
|
82
|
+
|
83
|
+
# CocoaPods
|
84
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
85
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
86
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
87
|
+
# Pods/
|
88
|
+
# Add this line if you want to avoid checking in source code from the Xcode workspace
|
89
|
+
# *.xcworkspace
|
90
|
+
|
91
|
+
# Carthage
|
92
|
+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
|
93
|
+
# Carthage/Checkouts
|
94
|
+
|
95
|
+
Carthage/Build/
|
96
|
+
|
97
|
+
# Accio dependency management
|
98
|
+
Dependencies/
|
99
|
+
.accio/
|
100
|
+
|
101
|
+
# fastlane
|
102
|
+
# It is recommended to not store the screenshots in the git repo.
|
103
|
+
# Instead, use fastlane to re-generate the screenshots whenever they are needed.
|
104
|
+
# For more information about the recommended setup visit:
|
105
|
+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
|
106
|
+
|
107
|
+
fastlane/report.xml
|
108
|
+
fastlane/Preview.html
|
109
|
+
fastlane/screenshots/**/*.png
|
110
|
+
fastlane/test_output
|
111
|
+
|
112
|
+
# Code Injection
|
113
|
+
# After new code Injection tools there's a generated folder /iOSInjectionProject
|
114
|
+
# https://github.com/johnno1962/injectionforxcode
|
115
|
+
|
116
|
+
iOSInjectionProject/
|
117
|
+
|
118
|
+
# End of https://www.toptal.com/developers/gitignore/api/swift
|
119
|
+
```
|
120
|
+
|
32
121
|
質問は以上です。
|
33
122
|
お時間あるときに、ご返信頂けましたら幸いです????
|
2
書式の改善。
title
CHANGED
File without changes
|
body
CHANGED
@@ -8,11 +8,13 @@
|
|
8
8
|
とあるのですが、Xcodeの事でしょうか..?
|
9
9
|
その場合、Xcodeのどこにあるのですか?
|
10
10
|
|
11
|
-
`touch .gitignore`は実行済です。
|
12
11
|
|
13
12
|
|
14
13
|
## 試したこと
|
15
14
|
|
15
|
+
`touch .gitignore`は実行。
|
16
|
+
|
17
|
+
|
16
18
|
`$ ls -a`の実行結果。
|
17
19
|
|
18
20
|
```
|
1
書式の改善。
title
CHANGED
File without changes
|
body
CHANGED
@@ -2,8 +2,12 @@
|
|
2
2
|
|
3
3
|
`.gitignore`ファイルに管理対象外にしたいファイル名を記述したいのですが、ファイルの場所が分かりません。
|
4
4
|
|
5
|
+
[**こちら**](https://qiita.com/misakiagata/items/d572e89b5b35e046b7a7)によると、
|
5
|
-
|
6
|
+
> .gitignoreをテキストエディタで開き、
|
6
7
|
|
8
|
+
とあるのですが、Xcodeの事でしょうか..?
|
9
|
+
その場合、Xcodeのどこにあるのですか?
|
10
|
+
|
7
11
|
`touch .gitignore`は実行済です。
|
8
12
|
|
9
13
|
|