Skip to content

Instantly share code, notes, and snippets.

@btspoony
Last active December 29, 2015 23:39
Show Gist options
  • Save btspoony/7743831 to your computer and use it in GitHub Desktop.
Save btspoony/7743831 to your computer and use it in GitHub Desktop.
Git Remove bigfiles
git filter-branch --index-filter 'git rm -r --cached --ignore-unmatch path/to/your/file' HEAD
git push origin master --force
rm -rf .git/refs/original/
git reflog expire --expire=now --all
git gc --prune=now
git gc --aggressive --prune=now
git fetch remote branch
git reset --hard FETCH_HEAD
git clean -df
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment