原因:推送的远程服务器的文件太大了
解决方法:
方法一: git --no-thin push
方法二:使用git lfs 可以在网上找方法如何使用:
windows下先下载:lfs软件
然后在git管理的项目下输入:
git lfs help:最后会有一个例子将如何操作。
我的的操作:
git lfs install
git lfs track ".tar"
git add .gitattributes
git add a.tar
git commit -m "commit a log file:a.tar"
git push
标签:git,Java,tar,lfs,error,push From: https://www.cnblogs.com/yzrStart/p/17165256.html