当前位置:   article > 正文

Gitee上传大于100M的文件_warning: authentication error: authentication requ

warning: authentication error: authentication required: lfs only supported r

Gitee上传大于100M的文件

开启LFS功能

$ cd xxx #'xxx'是你本地仓库目录
# 只需执行一次即可开启lfs功能
$ git lfs install
  • 1
  • 2
  • 3

设置LFS要管理的文件类型

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

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

$ git add .gitattributes
$ git commit -m '提交 .gitattributes 文件'
$ git push origin master(如果提交不了,后面可以加一个-f)
  • 1
  • 2
  • 3

上传大文件

$ git add ./Models #我的大文件全在Models文件夹下,根据自己情况更改
$ git commit -m "upload Models"
$ git push origin master -f
  • 1
  • 2
  • 3

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

# 错误1
WARNING: Authentication error: Authentication required: LFS only supported repository in paid enterprise.

# 错误2

batch response: LFS only supported repository in paid enterprise.
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 第一个错误可以执行以下命令:
git config lfs.https://gitee.com/{your_gitee}/{your_repo}.git/info/lfs.locksverify false
  • 1

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

  • 第二个错误可以尝试删除./git/hooks/pre-push文件
    最后重新push一下即可
声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号