推送更改时的Github远程错误问题

时间:2018-09-15 18:33:00

标签: git github repository

我正在尝试将更改推送到我的github存储库,但出现错误:

remote: error: GH001: Large files detected. You may want to try Git Large File Storage - https://git-lfs.github.com.
remote: error: Trace: xxxx
remote: error: See http://git.io/iEPt8g for more information.
remote: error: File data/data1.csv is 318.00 MB; this exceeds GitHub's file size limit of 100.00 MB
remote: error: File data/data2.csv is 269.45 MB; this exceeds GitHub's file size limit of 100.00 MB
To https://github.com/fbagirov/myrepo

! [远程拒绝]主机->主机(预接收钩被拒绝)

无论我做什么,我都无法推动:  -我有一个.gitignore文件,这两个文件超过100MB;当它不起作用时,我将整个数据文件夹都包含在.gitignore中:

data/data1.csv
data/data2.csv
data/
  • 我尝试清除缓存中的文件:

    git rm-data1.csv

  • 为防万一,我重新启动了笔记本电脑。

我缺少什么吗?它仍然显示这些文件的原因可能是什么?

1 个答案:

答案 0 :(得分:0)

  1. 如果您在“ git add”之后将文件添加到.gitignore,则您的文件不会自动从git中删除。
  2. 从git手动删除大文件后,您是否提交了文件?