How can I permanently delete a commit from Git\'s history?
One of the developers on the team has accidentally committed a 200 MB file and pushed it to our Git server. It
You can use git filter-branch. Please note that this involves history rewrite, and all clones need to be recreated. You can find a good introduction to the topic in the Pro Git book.