Git 报错:Large file detected(Git LFS解决)

传了一个200+MB的文件到GitHub报了如下错误:
在这里插入图片描述

顺着它的提示下载了Git LFS,下面是操作步骤:

1 .LFS 的基础设置

1.去官网下载

Git 报错:Large file detected(Git LFS解决)_第1张图片

2.在要传的文件目录下右键 Bash here

3.开启 LFS 功能:

git lfs install

4.选择要 Git LFS 管理的文件或扩展类型

扩展类型:

git lfs track "*.文件类型"

指定文件:

 
git lfs track "文件名.文件类型"

5. 添加.gitattributes追踪标记

git add .gitattributes

显示当前跟踪的文件列表

git lfs ls-files

2 .上传到GitHub

1.添加到缓存区

git add .

2.附加说明

git commit -m "附加说明"

2.推到分支上

git push origin 分支名

3.成功解决问题

Git 报错:Large file detected(Git LFS解决)_第2张图片

你可能感兴趣的:(学习,git,github)