I am not an expert with gitlab si I am seeking help.
I have a git repository and I made the mistake to install a code inside with files bigger than 100 Mo, and I committed several times before pushing to Gitlab. Off course when I pushed, it was not working because of files bigger than 100Mo. I suceed to revert the files from the commits and erase one of the blob but now I have the same error with a blob_ID linked with no path.
Énumération des objets: 615, fait.
Décompte des objets: 100% (615/615), fait.
Compression par delta en utilisant jusqu'à 20 fils d'exécution
Compression des objets: 100% (299/299), fait.
Écriture des objets: 100% (578/578), 216.74 Mio | 4.47 Mio/s, fait.
Total 578 (delta 258), réutilisés 562 (delta 245), réutilisés du pack 0
remote: Resolving deltas: 100% (258/258), completed with 27 local objects.
remote: GitLab: You are attempting to check in one or more blobs which exceed the 100.0MiB limit:
remote:
remote: - 394310bc7d1d2eb1f930038862f56d80aa532aaa (110 MiB)
remote: To resolve this error, you must either reduce the size of the above blobs, or utilize LFS.
remote: You may use "git ls-tree -r HEAD | grep $BLOB_ID" to see the file path.
remote: Please refer to https://gitlab.com/help/user/free_push_limit and
remote: https://gitlab.com/help/administration/settings/account_and_limit_settings
remote: for further information.
and when I am doing :
git ls-tree -r HEAD | grep 394310bc7d1d2eb1f930038862f56d80aa532aaa
nothing happened
I don’t know how to remove this blob from all my previous commits.
Thank you for your help.