报错信息:
- remote: error: File go/go1.15.3.linux-amd64.tar.gz is 115.49 MB; this exceeds GitHub’s file size limit of 100.00 MB
解决办法
git filter-branch --force --index-filter "git rm --cached --ignore-unmatch go/go1.15.3.linux-amd64.tar.gz" --prune-empty --tag-name-filter cat -- --all
如果提示 Cannot rewrite branches: You have unstaged changes.
执行git stash
,再执行上面步骤