git this exceeds GitHub’s file size limit of 100.00 MB

git push origin master During the process, the following error occurs

Keywords: this exceeds GitHub’s file size limit of 100.00 MB

Ignore file operations when pushing: (ignore large file operations.gitignore is not good when), before pushing after commit, enter the command.

git filter-branch –force –index-filter “git rm –cached –ignore-unmatch 01_reference/case/222.wmv 01_reference/case/111.xlsx” –prune-empty –tag-name-filter cat — –all

git commit –amend -CHEAD

git push origin master

 git filter-branch --force --index-filter "git rm --cached --ignore-unmatch 01_reference/case/222.wmv  01_reference/case/111.xlsx"  --prune-empty --tag-name-filter cat -- --all

Similar Posts: