文件过大无法提交到仓库

git 已经提交的文件过大超过100M,无法提交到github中。

这就需要将已经提交的文件从仓库中剔除

git filter-branch -f --index-filter 'git rm --cached --ignore-unmatch large_file_path'

你可能感兴趣的:(github)