Two weeks ago I deleted a folder called prototype-design from my local repo and push the changes to my GitLab repo.
These days I wanted to clone my GitLab repo to GitHub so I created an empty repo in Github, then I typed the following command in my terminal:
git remote add github https://yourLogin@github.com/yourLogin/yourRepoName.git
And then to transfer all the data from the GitLab repo to the newly created I typed:
git push --mirror github
But I got the following error:
remote: error: File prototype-design/Landing Page.pdf is 189.93 MB; this exceeds GitHub's file size limit of 100.00 MB
This file was part of the deleted folder two weeks ago, but looks like somehow still exist somewhere. Could you tell me how to remove it completely, so the clonning command to run successfully.