I am using visual studio for C++ and I have forked a repo and during building,git tracked this huge file of 101MB which resides in src/.vs/v15/ipch
Now the problem is I cannot push any of my changes to the origin as GitHub's size limit is 100MB.
I committed 4-5 changes after this and cannot push a single of them to the origin.
Following is the error i get in bash:
remote: error :GH001:
I tried doing this :
git --rm cached <file>
This deleted my files from index but I still have to push those changes.
How can I deal with this issue?