GitHub不允许直接上传大文件(超过100M)的文件到远程仓库,若要想继续提交可以尝试使用大文件支持库:https://git-lfs.github.com
LFS使用的简单步骤:
我使用的mac,这里有三种安装方式,按自己的习惯来,我用的是Homebrew方式安装。
在项目目录下,执行以下命令:
git lfs install
git lfs track <your_commit_big_file_name>
git add .gitattributes
git add <your_commit_big_file_name>
git commit -m "提交大文件"
git push
“The first 90% of the code accounts for the first 90% of the development time. The remaining 10% of the code accounts for the other 90% of the development time.” – Tom Cargill
标 题:Github如何上传超过100M的大文件