remote: 文件超出尺寸限制
remote: error: File: xxxx 119.00 MB, exceeds 100.00 MB.
remote: Use command below to see the filename:
remote: git rev-list --objects --all | grep xxx
remote: Please remove the file from history and try again. (https://gitee.com/help/articles/4232)
# 当前分支
git filter-branch -f --index-filter 'git rm --cached --ignore-unmatch relative_large_file_path' HEAD
# 全部分支
git filter-branch -f --prune-empty --index-filter "git rm -rf --cached --ignore-unmatch relative_large_file_path" --tag-name-filter cat -- --all
dst ref error
error: dst ref refs/heads/xxx receives from more than one src
git push origin xxx:xxx