How to completely remove a file from a Git repository

Mon - 07/03/2017

Have you already committed an SSH private key, a password file or a config file with sensitive data to your repository before?

Share this article

Intro

Have you already committed an SSH private key, a password file or a config file with sensitive data to your repository before? In case you did not, I would recommend to first try this out before you continue reading this blogpost.

For the rest of us: DON'T PANIC! Take a deep breath, get up from your desk, walk around for a few minutes. Ready? Okay, let's get started!

The goal is to completely wipe a file out of existence in a Git repository, to cover all tracks of your horrible mistake. Do you want to be the person who committed AWS keys to a public GitHub repository, only to find out 24 hours later that ~USD2000 has been spent mining bitcoins?

Several methods

Simply git rm passwords.txt won't do it, as the file will still be there in all previous commits. Depending on where the file is, you can use several methods. Hereby an overview per scenario in increasing order of complexity.

Notes:

  • All of these methods assume that you are familiar with console commands.

  • They are written for Linux, but should work on OS X and even on Windows if you use Git Bash.

  • If you have already pushed your changes, then things might become complicated.

  • If you're a single developer, just go for it. But if you work in a team then first talk it over with them.

  • If your code (with unwanted file) is already out in the open (GitHub, BitBucket,...) then you might be out of luck. But keep reading until the end.

Scenario 1: the file is in the last commit and you have not yet pushed

1. You want to keep the file locally

Amend the last commit to remove the file from the repository, and add it to .gitignore, to prevent it from being added by accident again.

git rm --cached $FILE
echo $FILE >> .gitignore
git add .gitignore
git commit --amend --no-edit
git reflog expire --expire=now --all && git gc --prune=now --aggressive

The git reflog expire and git gc commands force a garbage collection, to keep the file from dangling somewhere in your repository.

2. You do not want to keep the file locally

Just amend the last commit.

git rm $FILE
git commit --amend --no-edit
git reflog expire --expire=now --all && git gc --prune=now --aggressive

Scenario 2: the file is further down in the history and you have not yet pushed

Solution 1: BFG Repo-Cleaner

Download 'BFG Repo-Cleaner' here. This tool claims to work 10-720x faster than any other method, but you cannot specify a subdirectory, it will delete all files with the same name in any directory.

Normally BFG Repo-Cleaner protects your most recent commit, but if you know what you are doing (and you know, right?) then you give it the option --no-blob-protection, which is sort of like saying, do what I want and don't protect me from mistakes.

java -jar bfg.jar --delete-files $FILE --no-blob-protection .
rm $FILE
git reflog expire --expire=now --all && git gc --prune=now --aggressive

Solution 2: interactive rebase

An interactive rebase lets you go back in history and redo commits, as if they were correct in the first place. Sounds like cheating? Maybe. But you want to get rid of that file, and you have the power to do it.

This command has a subshell inside $(...): it finds the first commit where the file was added, even taking renames of the file into account. Then the command outside $(...) starts an interactive rebase at the parent (~) of that commit.

git rebase --interactive \
    $(git log --follow --find-renames=40% --diff-filter=A --format=%H -- $FILE)~

Edit the git-rebase-todo file: change the first command from pick to edit.

edit 7b0a4be987 Add a new table width tests
pick 38737174a7 Avoid FontProgram#getBaseName method usage when it's not appropriate, update documentation
pick 66f95dd41b Generalize reading of bytes for woff format conversion

# Rebase d1613dff58..66f95dd41b onto d1613dff58 (3 commands)
#
# Commands:
# p, pick = use commit
# r, reword = use commit, but edit the commit message
# e, edit = use commit, but stop for amending
# s, squash = use commit, but meld into previous commit
# f, fixup = like "squash", but discard this commit's log message
# x, exec = run command (the rest of the line) using shell
# d, drop = remove commit
#
# These lines can be re-ordered; they are executed from top to bottom.
#
# If you remove a line here THAT COMMIT WILL BE LOST.
#
# However, if you remove everything, the rebase will be aborted.
#
# Note that empty commits are commented out

Then save and close the editor. The rebase will roll back the commits to the commit that added the unwanted file.

git rm $FILE
echo $FILE >> .gitignore
git add .gitignore
git commit --amend --no-edit
git rebase --continue
git reflog expire --expire=now --all && git gc --prune=now --aggressive

Solution 3: Git filter-branch

This runs a script specified in --tree-filter (f.ex: delete a certain file) on every commit. This is really SLOW! That's because it has to checkout every commit, run the script, commit, and move on to the next commit. Use this when there are tags or merge commits between the offending commit and HEAD, or when the offending file exists in multiple branches. In other words, use as a last resort!

In this script I use the same trick to find the first commit that adds the unwanted file, and then I run the filter only on the parent of that commit, up to the HEAD of the current branch. git filer-branch always makes a backup and prefixes the original branch with original. The git for-each-ref command cleans up those backup branches, because we really want to get rid of that pesky file. --tag-name-filter cat will make sure that any tags will move with their commits.

git filter-branch -f \
    --prune-empty \
    --tag-name-filter cat \
    --tree-filter 'rm -f $FILE' \
    $(git log --follow --find-renames=40% --diff-filter=A --format=%H -- $FILE)~..HEAD
git for-each-ref --format="%(refname)" refs/original/ | xargs -n 1 git update-ref -d
git reflog expire --expire=now --all && git gc --prune=now --aggressive

If you want to do it for the entire repository (you really shouldn't!):

git filter-branch -f \
    --prune-empty \
    --tag-name-filter cat \
    --tree-filter 'rm -f $FILE' \
    -- --all
git for-each-ref --format="%(refname)" refs/original/ | xargs -n 1 git update-ref -d
git reflog expire --expire=now --all && git gc --prune=now --aggressive

Scenario 3: you have already pushed

  • I can't repeat this enough: first consult with the rest of your team!!! You will make their life miserable if you don't.

  • Secondly, make a backup of the repository before you do anything else.

  • Then: MAKE A BACKUP!!!

  • I don't know if I have mentioned this already, but are you really, really sure that you have made a backup?

  • Use one of the methods described above to remove the file.

  • Force push, but know what you are doing and be aware of the consequences because there is no way to go back if you don't have a backup. --force-with-lease should actually be the default there, because it first checks that you won't overwrite other people's work. See also the Atlassian blog for an excellent explanation.

    git push --force-with-lease origin $BRANCH
    

Scenario 4: the commits are already on GitHub

In this case, the risk exists that someone can still access the unwanted file, even after a force push.

There are two ways to do that:

  • if they made a fork or a clone of the repository: a force push will only update our repository, it will not update forks/clones.

  • if they happen to know the exact hash of the commit that added the file (maybe they wrote it down or the web page is still in their browser cache).

GitHub may garbage collect cached views after some time, but this is not something to rely on.

The best thing to do, is to contact GitHub support and tell them the repository and the offending commit, they will then manually delete the cached views.

What to expect next?

In the follow-up blogpost, I will explain some best practices used at iText Software to handle sensitive files needed in our projects.


Git

Contact

Still have questions? 

We're happy to answer your questions. Reach out to us and we'll get back to you shortly.

Contact us
Stay updated

Join 11,000+ subscribers and become an iText PDF expert by staying up to date with our new products, updates, tips, technical solutions and happenings.

Subscribe Now