remote: error: GH001: Large files detected.
remote: error: Trace: 7b7de6b9372ee392e0f3961b05ea6f33
remote: error: See http://git.io/iEPt8g for more information.
remote: error: File *.framework/Versions/A/* is 207.25 MB; this exceeds GitHub's file size limit of 100.00 MB
在使用Git時(shí)铁追,你是否遇到過(guò)這種問(wèn)題?遇到這種問(wèn)題后又該如何操作呢茫船?
解決這個(gè)大文件上傳問(wèn)題目前有兩種方法(還有一種支持上傳大文件客戶端Tower琅束,免費(fèi)破解版在文末公眾號(hào)):
1. 刪除大于100M的文件,不上傳大文件(上傳成功后在本地添加大文件)或使用.gitignore忽略文件算谈,這里我忽略pods引入的所有文件
.gitignore內(nèi)容
# Xcode
.DS_Store
*/build/*
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
profile
*.moved-aside
DerivedData
.idea/
*.hmap
*.xccheckout
!default.xcworkspace
#CocoaPods
Pods
!Podfile
!Podfile.lock
1-1. 刪除磁盤(pán)緩存
git rm --cached
或git rm -r --cached
1-2. 將大文件從commit記錄中移除且以后commit都將不會(huì)再將其commit
git commit --amend -CHEAD
1-3. 推送至遠(yuǎn)程服務(wù)器
git push origin master
(第一次推送時(shí)命令)或git push
2. 突破大文件上傳限制涩禀,使用git-lfs(Git Large File Storage)(原地址)
Git Large File Storage(LFS) replaces large files such as audio samples, videos, datasets, and graphics with text pointers inside Git, while storing the file contents on a remote server like GitHub.com or GitHub Enterprise.
譯:Git Large File Storage(LFS)用Git內(nèi)部的文本指針替換大文件,如音頻樣本然眼、視頻艾船、數(shù)據(jù)集和圖形,同時(shí)將文件內(nèi)容存儲(chǔ)在遠(yuǎn)程服務(wù)器上高每,如GitHub.com或GitHub Enterprise屿岂。
2-1. 安裝,我是用的是Macbook Pro鲸匿,所以選擇macOS用戶安裝方式 Homebrew 安裝
brew install git-lfs
2-2. 打開(kāi)終端爷怀,cd到git倉(cāng)庫(kù)本地路徑,初始化lfs
git lfs install
2-3. 追蹤單個(gè)文件
git lfs track
eg:git lfs track "*.psd"
2-4. 添加lfs追蹤文件晒骇,提交倉(cāng)庫(kù)(此處一定要先提交追蹤文件到倉(cāng)庫(kù)霉撵,在提交其他文件)
git add .gitattributes
git commit -m "track *.psd files using Git LFS"
git add .
git commit -m "submit other files"
2-5. 驗(yàn)證是否追蹤大文件磺浙,如果輸入后不顯示則追蹤不成功
git lfs ls-files
2-6. 推送至遠(yuǎn)程倉(cāng)庫(kù)
git push origin master
Uploading LFS objects: 100% (1/1), 810 B, 1.2 KB/s
# ...
To https://github.com/git-lfs/git-lfs-test
67fcf6a..47b2002 master -> master
目前OSChina僅支持付費(fèi)企業(yè)支持,個(gè)人需通過(guò)郵件 git@oschina.cn 聯(lián)系支持(fls說(shuō)明)徒坡,GitLab需在項(xiàng)目設(shè)置中手動(dòng)開(kāi)啟此功能撕氧,本項(xiàng)目我是以GitHub私人項(xiàng)目實(shí)驗(yàn)。
2019.6.20更新
目前已拋棄第二種方法喇完。由于github的Git LFS Data的免費(fèi)存儲(chǔ)空間為1GB伦泥,超出了要付費(fèi),每月大概5 Dollor锦溪,所以我選擇了第一種方式上傳大文件忽略大文件上傳不脯。
注意:
Q1:上傳成功后,拉取工程報(bào)錯(cuò)刻诊,有的文件中出現(xiàn)如下信息(GitHub git-lfs Issue 我試了好像不是這個(gè)原因造成的防楷,可以拉取下來(lái),但是會(huì)提交不了)
version https://git-lfs.github.com/spec/v1
oid sha256:446a6063f3b698c388700d
size 1127229450
Q1 解決方案:
造成此問(wèn)題的原因是可能是framework文件追蹤不成功導(dǎo)致的(我是因?yàn)檫@個(gè)導(dǎo)致的)可看Q2如何追蹤framework文件则涯。刪除GitHub倉(cāng)庫(kù)复局,按照l(shuí)fs方法的流程重新來(lái)一遍即可。
Q2:framework超過(guò)100M的文件如何上傳粟判?然而lfs的作者并沒(méi)有給出答案亿昏,只是讓去看文檔!
提示錯(cuò)誤如下
emote: error:
File *.framework/Versions/A/* is 207.25 MB;
this exceeds GitHub's file size limit of 100.00 MB
Q2 解決方案:
按照錯(cuò)誤提示追蹤framework庫(kù)档礁,因?yàn)閙acOS系統(tǒng)會(huì)將其看成一個(gè)文件夾
git lfs track "*.framework/Versions/A/*"
注意提交追蹤文件后驗(yàn)證一下
git lfs ls-files
附:下載地址
關(guān)注微信公眾號(hào):商丘IT圈角钩,回復(fù)tower即可免費(fèi)獲取。