Git上传文件容量大小限制
Posted dataAlpha
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git上传文件容量大小限制相关的知识,希望对你有一定的参考价值。
使用Git LFS突破git的100M容量限制。
1.安装Git LFS
2.安装后把里面的git-lfs.exe放到你要上传的项目文件夹
3.在将要push的仓库里重新打开一个bash命令行
Git lfs install
Git lfs track “*.csv”
Git add .
Git commit -m “add large file”
Git push -u origin master
结果在最后push的时候发生了错误
Remote "origin" does not support the LFS locking API. Consider disabling it with
这个错误后面直接给出了答案,只需要将LFS locking设置为false,具体的代码当时忘了考下来了,反正就是跟在这个错误后面的。解决完这个问题没想到又出现了一个错误
batch response: Git credentials for https://github.com/caijiangyao1991/aliGame.git not found:
最后通过存储认证的密码和账号才解决
git config --global credential.helper store
以上是关于Git上传文件容量大小限制的主要内容,如果未能解决你的问题,请参考以下文章