我正在尝试在我的服务器上设置 GitHub,并运行命令“git push -u origin master”。但是,检测到一个大文件并收到以下错误:
remote: error: GH001: Large files detected.
remote: error: Trace: 5520a70fd2eeaa2eafd7de049a590fb5
remote: error: See http://git.io/iEPt8g for more information.
remote: error: File app/logs/dev.log is 2041.59 MB; this exceeds GitHub's file size limit of 100 MB
我最终删除了该文件并尝试再次添加 git,但我仍然遇到该错误。有什么办法可以解决这个问题吗?
答案1
您读过他们给您链接的页面吗?
您正在尝试将超大的日志文件推送到该 Github 存储库。不要这样做!将*.log
或添加app/logs/*
到您的.gitignore
文件中,您就不必再处理此问题了。