Every time I do:
git push
I get this error
remote: error: File bin/downward is 162.88 MB; this exceeds GitHub's file size limit of 100.00 MB
Nevertheless, I have done
git rm --cached -r bin
and also:
git reset
and I also put this in the .gitignore:
/bin/
So, I don't understand why it's still trying to push this "bin" directory.
Any idea ?
Thank you