We all make mistakes sometimes. Pushing files that contain some secrets or sensitive information to a Git repository is fairly common. And even if we revert the commit, it would still be present in the Git history of the project. In such cases, where we want to permanently remove a file from Git history, we need to perform a couple of steps.
1. If the file involved some secrets, revoke them immediately
2. Add the file to gitignore.
Assuming it was a .env file,
echo '.env' >> .gitignore
Bash3. Permanently remove a file from Git history:
git filter-branch --index-filter "git rm -rf --cached --ignore-unmatch .env" HEAD
BashIf it is a different file, replace “.env” with the path of the file.
Note: This can be a time-consuming process as it revisits all of the git commits in history and removes the file from there.
4. Force push
git push --force
BashSince we rewrote a bunch of commits, we will have to do a force push to modify the git history of the project. If there are multiple branches on the project, or a team working on the project, this might be cumbersome and we would want to search for the commits manually and rebase them instead.
Note: If we only wanted to remove the file and did not care about deleting it from the git history, we would have used the command:
git rm -r --cached .env
BashAnd that is it. Drop-in a comment below if you have any questions.
I am terrible at optimizing my keyboard layout for anything. But off lately, my little…
I recently switched completely to the Brave browser and have set ad blocking to aggressive…
I was preparing a slide deck for a hackathon and decided to put in a…
I have been using npx a lot lately, especially whenever I want to use a…
Manually copy-pasting the output of a terminal command with a mouse/trackpad feels tedious. It is…
While working on a project, I wanted to do an integrity check of a file…
View Comments
Thanks for this information. One question though, it is still possible to access the URL to the GitHub history where my .env file history 'was' located. I get a warning message from GitHub that "This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository". My repository has always been private and has zero forks, clones, start, etc.
Is there a way to completely delete this page?
Sorry I missed this comment. Are you getting the message after following these steps? Did you do a force push? That should remove the file from git history completely