Symptom:
When we git push a large file into gitlab, we hit this errorremote: error: Your commit has been blocked due to certain binary file(s) being oversized or not allowed.
Solution:
git reset --soft HEAD~1. (2 or 3 depends how far to rollback)git commit -m "your message"
git pull (to merge the changes)
git push
No comments:
Post a Comment