赞
踩
使用git提交代码时报错:
remote: error: File: 90b39f4470e405ed852e517a73473b527ac60eaa 362.16 MB, exceeds 100.00 MB.
remote: Use command below to see the filename:
remote: git rev-list --objects --all | grep 90b39f4470e405ed852e517a73473b527ac60eaa
remote: Please remove the file from history and try again.
应该是提交的文件中有超过100MB的。
解决方案:
1、按照提示执行命令查看超大的文件:
git rev-list --objects --all | grep 90b39f4470e405ed852e517a73473b527ac60eaa
2、执行命令忽略掉超大的文件
git rm --cached file_name
#如果是文件夹
git rm -r --cached directory_name
在.gitignore中添加要忽略的文件
然后执行commit。
3、在commit的提交历史里面去除这个超大文件
git filter-branch --tree-filter 'rm -f 文件名' HEAD
如果提示:
WARNING: Ref 'refs/heads/master' is unchanged
表示删除失败。
如果提示:
Ref 'refs/heads/master' was rewritten
表示删除成功。
然后执行push,OK。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。