我无法将新的更改推送到我的远程GitHub存储库,因为我的IOS Swift项目使用150 MB大的opencv框架。我收到以下错误消息:
remote: error: GH001: Large files detected.
You may want to try Git Large File Storage - https://git-lfs.github.com.
remote: error: Trace: ......aa11d45...12994...
remote: error: See http://git.io/iEPt8g for more information.
remote: error: File Pods/OpenCV/opencv2.framework/Versions/A/opencv2 is 150.06 MB; this exceeds GitHub's file size limit of 100.00 MB
! [remote rejected] master -> master (pre-receive hook declined)
我通过运行以下命令行命令尝试了大文件存储:
git lfs track "Pods/OpenCV/opencv2.framework/Versions/A/opencv2"
git add .gitattributes
但我仍然收到相同的错误消息。
当我有一个像opencv2这样的大型框架文件时,如何将更改推送到GitHub。
答案 0 :(得分:0)
可能有两个原因,
git install lfs
git lfs track "Pods/OpenCV/opencv2.framework/Versions/A/opencv2"
git add .gitattributes
以前的提交可能具有大文件,而没有lfs跟踪,因此您可能需要重置存储库,我建议然后在另一个目录中克隆repo,
安装lfs(git install lfs),
将大文件复制到repo目录中,
让lfs跟踪文件
然后提交并推送。