How do i get pathspec of my file that is large so i can git rm it.
I tried to git push, and i get this error
remote: error: Trace: b298188f3f1fd59ef95f0ba87fb8749931bf244fc08098ecf345c1ab925b1d7f
remote: error: See https://gh.io/lfs for more information.
remote: error: File bootstrap.zip is 178.58 MB; this exceeds GitHub's file size limit of 100.00 MB
I deleted bootstrap.zip but still cant push.
I used git filter
git filter-branch -f --index-filter 'PATHS=`git ls-files -s | sed "s/^engine//"`; \
>> GIT_INDEX_FILE=$GIT_INDEX_FILE.new; \
>> echo -n "$PATHS" | \
>> git update-index --index-info \
>> && if [ -e "$GIT_INDEX_FILE.new" ]; \
>> then mv "$GIT_INDEX_FILE.new" "$GIT_INDEX_FILE"; \
>> fi' -- --all
it run successfully but still i cant push.
I added /bootstrap.zip in .gitignore file in my project but still cant push
I tried git rm -f bootsrtap.zip, but gets error, pathspec
i have tried to follow a lot of suggestion but i cant get through