Github Upload Large File 上传超大文件

 

Github中单个文件的大小限制是100MB,为了能突破这个限制,我们需要使用Git Large File Storage这个工具,参见这个官方帖子,但是按照其给的步骤,博主未能成功上传超大文件,那么这里就给出自己成功的步骤吧:

 

git lfs install

git lfs track "*.exe"

git add .gitattributes

git commit -m "Updated the attributes"

git push origin master

git add my_large_file.exe

git lfs ls-files

git commit -m "Add the large file"

git push origin master

 

posted @ 2018-03-20 07:06  Grandyang  阅读(2768)  评论(0)    收藏  举报
Fork me on GitHub