自 2013 年 6 月 18 日起,此更改如何影响我的现有存储库,其中包含超过该限制的文件?我上次推送是在 2 个月前用一个大文件。
我有一个已在本地删除的大文件,但现在无法推送任何内容。我收到“远程错误”...远程:错误:文件 cron_log.log 为 126.91 MB;这超出了 GitHub 的 100 MB 文件大小限制
我在原始推送后将文件添加到 .gitignore ......但它仍然存在于远程(原点)
在本地删除它应该在原点(Github)将其删除,对吗?......但是......它不让我推送,因为Github上有一个文件超过了限制......
https://github.com/blog/1533-new-file-size-limits
这些是我发出的命令加上错误消息..
混帐添加。 git commit -m "删除 cron_log.log" git push 起源大师 远程:错误代码:40bef1f6653fd2410fb2ab40242bc879 远程:警告:错误 GH413:检测到大文件。 远程:警告:有关更多信息,请参阅 http://git.io/iEPt8g。 远程:错误:文件 cron_log.log 为 141.41 MB;这超出了 GitHub 的 100 MB 文件大小限制 远程:错误:文件 cron_log.log 为 126.91 MB;这超出了 GitHub 的 100 MB 文件大小限制 到 https://github.com/slinds(omited_here)/linexxxx(omited_here).git ![remote denied] master -> master (pre-receive hook denied) 错误:未能将一些参考推送到“https://github.com/slinds(omited_here)
然后我尝试了类似的东西
git rm cron_log.log
git rm --cached cron_log.log
同样的错误。