Hello,
I was creating the git repository for the solution directory.
I used an LLM to assist me.
Thanks anyway.
williamj
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello,
A git push request is failing for large zip files in the solution directory.
However, I moved all zip files do a different directory.
What am I missing?
Attached is the output.
Again, I am using Visual Studio 2022.
williamj
Hello,
I was creating the git repository for the solution directory.
I used an LLM to assist me.
Thanks anyway.
williamj
Thank you for reaching out.
Even after moving the ZIP files, if they were committed earlier, they remain in the Git history. GitHub checks the entire push, not just the latest commit, so the size limit (100 MB) still applies.
git filter-repo (recommended) or BFG to clean previous commits:
git filter-repo --path "*.zip" --invert-paths Then force push:git push origin --force Ignore Future ZIP Files
.gitignor*.zipFor Files You Need to Keep
Use Git LFS:
`git lfs install`
Please let us know if you require any further assistance, we’re happy to help.
If you found this information useful, kindly mark this as "Accept Answer".