Created
September 4, 2018 01:14
-
-
Save lopugit/14f28b7e4db8225fcff32b990c19a2bb to your computer and use it in GitHub Desktop.
Delete large file from github history when dealing with remote rejected pre-receive hook declined Large files detected this exceeds GitHub's file size limit
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git filter-branch --index-filter 'git rm -r --cached --ignore-unmatch <file/dir>' HEAD |
Thanks! Needed exactly this line.
haha I'm so happy it helped you, I added as many keywords and the exact error that comes up in the hopes it would help someone one day :D
Another fan here :)
after almost a whole day on this... thanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks! Needed exactly this line.