一切福田,不離方寸,從心而覓,感無不通。

Github 修正上传时“this exceeds GitHub’s file size limit of 100 MB”错误

Github只允许上传最大100MB的文件,如果超过,则会被server reject

则需:

git filter-branch --force --index-filter "git rm --cached --ignore-unmatch FILEPATH"  --prune-empty --tag-name-filter VERSION — --all

git commit --amend -CHEAD

git push origin master

注意要在.git文件夹目录下执行以上命令

http://www.walbrix.com/jp/blog/2013-10-github-large-files.html

from:https://blog.csdn.net/fightforyourdream/article/details/25357121