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