gitee 上传提示文件过大的暴力解决方法

发布时间 2023-10-26 21:00:46作者: 杰520

因为经常遇到上传文件过大,每次都是重新拉在复制过去,今天无聊就想彻底解决一下这个问题。

 

Gitee的免费版本只能上传单个文件小于100M

利用红色框的命令行查找出是哪个文件,下面红色文字是我查找的文件,然后执行下面命令行,即可上传成功。

git filter-branch --force --index-filter "git rm --cached --ignore-unmatch lims-wchscu.rar" --prune-empty --tag-name-filter cat -- --all
git commit --amend
git push -u origin master