文章目录

Gitee上传大于100M的文件

Gitee上传大于100M的文件

开启LFS功能

$ cd xxx #'xxx'是你本地仓库目录

# 只需执行一次即可开启lfs功能

$ git lfs install

设置LFS要管理的文件类型

#因为我是pth模型文件过大,所以我的命令是*.pth,此处需要根据自己情况设定类型

$ git lfs track "*.pth"

执行完上面的命令后,会生成一个.gitattributes文件,要将其上传到远程gitee仓库。这里我把.gitattributes和大文件分开上传

$ git add .gitattributes

$ git commit -m '提交 .gitattributes 文件'

$ git push origin master(如果提交不了,后面可以加一个-f)

上传大文件

$ git add ./Models #我的大文件全在Models文件夹下,根据自己情况更改

$ git commit -m "upload Models"

$ git push origin master -f

报LFS错 在执行上面的最后一步上传命令的时候可能会报两个错误:

# 错误1

WARNING: Authentication error: Authentication required: LFS only supported repository in paid enterprise.

# 错误2

batch response: LFS only supported repository in paid enterprise.

第一个错误可以执行以下命令:

git config lfs.https://gitee.com/{your_gitee}/{your_repo}.git/info/lfs.locksverify false

注: 命令中的{your_gitee}/{your_repo}是你的远程仓库地址,根据自己情况替换。

第二个错误可以尝试删除./git/hooks/pre-push文件 最后重新push一下即可

文章链接

评论可见,请评论后查看内容,谢谢!!!
 您阅读本篇文章共花了: