1. Install and select LFS file
git lfs install
# I am adding the deep learning model file
git lfs track "*.h5
2. Commit and push to the GitHub
git lfs push --all origin main
git add .
git commit -am "add large file"
git push -u origin main
Solve large file upload issue
If already uploaded the file and remote: error: This model.h5 file is more than 100.00 MB in size exceeds the Git file size limit of 100.00 MB similar issue, It can be solved with those methods.
1. Reset Git
git reset HEAD~<HOWEVER MANY COMMITS YOU WERE BEHIND>
If you want to go before one commit: git reset HEAD~1
Tips: Check git log: git log
2. Check status and push
git status
git pushFix Samba Share Error After Windows 11 24H2 Update
Mengatasi error Samba share setelah update Windows 11 24H2 yang memblokir guest access. Continue reading