因为经常遇到上传文件过大,每次都是重新拉在复制过去,今天无聊就想彻底解决一下这个问题。
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
标签:文件,git,暴力,--,gitee,filter,上传 From: https://www.cnblogs.com/jhuang-com/p/17790378.html