赞
踩
1、问题现象:
将所有文件commit后,
git push失败,原因是文件超过了100M,
后续即便把超过大小的文件删除后,重新commit为新版本,也无法进行git push该版本
2、解决方法:
(1)重置仓库
①git update-ref -d HEAD仓库重置到第一次commit,不影响本地文件
②git pull origin main(按照你在origin的分支命名) --allow-unrelated-histories强制拉取
③git push -u origin main重新上传到远程
(2).gitignore
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。