I was recently notified that an old API key was discovered in one of the repos I own. Even if you remove the sensitive data in a new commit, it can still be found in the Git history.
To remove the API key, I decided to use the BFG Repo-Cleaner for cleansing bad data out of your Git repository history. However, I found myself fumbling around with the BFG CLI and spending way too much time trying to remove the key from the Git history.
That’s when I realized there had to be a better way. As a frequent user of Visual Studio Code, I thought, “Why not create a VS Code extension that simplifies this process?” And that’s exactly what I did.
Introducing the BFG VS Code Extension
The BFG VS Code Extension is a wrapper for the BFG Repo-Cleaner that makes it easy to remove credentials from your Git history. It guides you through the process step by step using the Command Palette, so you don’t have to remember complex CLI commands.
Here is how it works:
- Clones a fresh copy of your repo using the –mirror flag.
- Installs BFG: This step downloads the BFG jar file from the official repository and saves it in the workspace folder.
- Enter credential to remove: This step prompts the user to enter the credential to remove, writes this credential to a file in the workspace folder, and uses the
--replace-text
option of BFG Repo-Cleaner to replace this credential with***REMOVED***
in the repository’s history. - Remove credentials: This step runs the BFG Repo-Cleaner with the
--replace-text
option to replace the specified credential with***REMOVED***
in the repository’s history. - Clean your repository: This step runs the
git reflog expire --expire=now --all && git gc --prune=now --aggressive
command to clean the repository. - Push the changes: This step runs the
git push --force
command to push the changes to the remote repository
The BFG VS Code Extension is a tool I wish I had when I first discovered the old API key in my repo. It would have saved me a lot of time and frustration. I hope it can do the same for you.
You can find the BFG VS Code Extension on the VS Code Marketplace and the source code on GitHub. If you have any questions or feedback, feel free to open an issue on GitHub.
The best way to prevent sensitive data from being exposed in your Git history is to never commit it in the first place. Always use environment variables or configuration files that are ignored by Git to store sensitive data. But if you do accidentally commit sensitive data, the BFG VS Code Extension is here to help you clean it up!