Skip to content

Instantly share code, notes, and snippets.

@squio
Last active November 27, 2020 21:14
Show Gist options
  • Save squio/4d2dce5aa7a5dc30fa14716bbfef47a2 to your computer and use it in GitHub Desktop.
Save squio/4d2dce5aa7a5dc30fa14716bbfef47a2 to your computer and use it in GitHub Desktop.

Delete all files from a git commit

Warning this permanently deletes all files from an older commit, regardles if they were added, deleted or modified!

Fitrst, list all files with full paths:

git diff-tree --no-commit-id --name-only -r 39f96f9 > files.txt

Then, for each file from files.txt

git filter-branch --force --index-filter \ "git rm --cached --ignore-unmatch PATH-TO-YOUR-FILE-WITH-SENSITIVE-DATA" \ --prune-empty --tag-name-filter cat -- --all

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment