对于初次使用github的小伙伴进行上传文件的时候可能会出现如下问题:

Yowza, that’s a big file. Try again with a file smaller than 25MB.

github上传大文件类型_github

 

传送门:https://git-lfs.github.com/

github上传大文件类型_github_02

github上传大文件类型_github_03

github上传大文件类型_github_04

github上传大文件类型_github_05

github上传大文件类型_github_06

1、git lfs install

 

2、git lfs track "*.zip"

 

3、git add .gitattributes

 

4、git add xxx.zip(xxx就是你的.zip文件名)

   如果提示Use -f if you really want to add them. 

   就使用:  git add -f xxx.zip

 

5、git commit -m "上传xxx.zip"

 

6、git push origin master

github上传大文件类型_github_07