Reputation: 27
I'm in the process of migrating a repository from Azure DevOps (ADO) to GitHub and encountering issues with large files during the push process. I'm following these steps:
git clone <github-repo-clone-url>
cd <github-repo>
git clone --mirror <ADO-Repo-clone-url>
cd <ADO-Repo>/
git push --mirror <github-repo-clone-url>
I have tried multiple things such as Partial Push, git lfs migrte, the git lfs migrate will rewrite the commit which I dont want and then I tried to push using
--mirror
However, while pushing the changes, I receive the following error message:
file is 162.64 MB; this exceeds GitHub Enterprise's file size limit of 100.00 MB
what other things I can I try?
Thanks alot for your help and appreciate for the answers in advance
Upvotes: 0
Views: 206