質問編集履歴
1
ターミナル操作の追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -38,6 +38,50 @@
|
|
38
38
|
|
39
39
|
|
40
40
|
|
41
|
+
また、ターミナルで「git push -u origin main」としてmainに変えてpushしたところ、以下のようにエラーが出て、実行できませんでした。
|
42
|
+
|
43
|
+
これはファイルサイズが大きすぎるからできないということなのでしょうか?
|
44
|
+
|
45
|
+
以前、これよりも大きいサイズのファイルをpushしていたので、できないはずはないのですが、今回できなくて困っています。
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
```
|
50
|
+
|
51
|
+
Enumerating objects: 4752, done.
|
52
|
+
|
53
|
+
Counting objects: 100% (4752/4752), done.
|
54
|
+
|
55
|
+
Delta compression using up to 4 threads
|
56
|
+
|
57
|
+
Compressing objects: 100% (4505/4505), done.
|
58
|
+
|
59
|
+
Writing objects: 100% (4748/4748), 101.86 MiB | 1.05 MiB/s, done.
|
60
|
+
|
61
|
+
Total 4748 (delta 1324), reused 0 (delta 0)
|
62
|
+
|
63
|
+
remote: Resolving deltas: 100% (1324/1324), completed with 2 local objects.
|
64
|
+
|
65
|
+
remote: warning: File Pods/GoogleMaps/Base/Frameworks/GoogleMapsBase.framework/GoogleMapsBase is 53.52 MB; this is larger than GitHub's recommended maximum file size of 50.00 MB
|
66
|
+
|
67
|
+
remote: error: GH001: Large files detected. You may want to try Git Large File Storage - https://git-lfs.github.com.
|
68
|
+
|
69
|
+
remote: error: Trace: 3219ce94d7cbab166cdbd8ff287299fed8d4d12beaf85a33d48577d9ea618fbc
|
70
|
+
|
71
|
+
remote: error: See http://git.io/iEPt8g for more information.
|
72
|
+
|
73
|
+
remote: error: File Pods/GoogleMaps/Maps/Frameworks/GoogleMapsCore.framework/GoogleMapsCore is 132.21 MB; this exceeds GitHub's file size limit of 100.00 MB
|
74
|
+
|
75
|
+
To https://github.com/〇〇/△△.git
|
76
|
+
|
77
|
+
! [remote rejected] main -> main (pre-receive hook declined)
|
78
|
+
|
79
|
+
error: failed to push some refs to 'https://github.com/〇〇/△△.git'
|
80
|
+
|
81
|
+
```
|
82
|
+
|
83
|
+
|
84
|
+
|
41
85
|
### 補足情報(FW/ツールのバージョンなど)
|
42
86
|
|
43
87
|
|
@@ -45,3 +89,11 @@
|
|
45
89
|
使用環境:Xcode version 12.4
|
46
90
|
|
47
91
|
使用言語:Swift5.3.2
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
### 聞きたいこと
|
96
|
+
|
97
|
+
⚫︎ターミナルを使わず、Xcodeで直接pushできるようにするためには、何が間違っているのでしょうか?
|
98
|
+
|
99
|
+
⚫︎ターミナルでもうまく実行できなかったのですが、上記のエラーはファイルサイズの問題のみなのでしょうか?
|