Using git for a project, I accidentally added to a commit a big .zip
file. I didn't notice until I started uploading it to github. When I noticed, I hit ctrl-c
, git remove
, git commit
and uploaded it again (now with the file untracked).
I know that this wasn't the right choice to do, because once I committed the .zip
, it stays in the repo until I revert the commit, but sadly I didn't.
Now, when someone tries to download from the repo, it takes a lot of time to do it, sometimes yields git the remote end hung up unexpectedly
(which I've read can be solved by doing some git config
) and is very annoying.
My point is: is there a way to tell further pull/fetch request that forget this specific file in this specific commit version?
Browse to the directory in your repository that you want to delete. In the top-right corner, click , then click Delete directory. Review the files you will delete. At the bottom of the page, type a short, meaningful commit message that describes the change you made to the file.
The git rm command can be used to remove individual files or a collection of files. The primary function of git rm is to remove tracked files from the Git index. Additionally, git rm can be used to remove files from both the staging index and the working directory.
Github provide a useful help page on removing files like this. There are also other questions on StackOverflow which cover this
See also this section of the Pro Git book, an example given there:
To remove a file named passwords.txt from your entire history, you can use the --tree-filter option to filter-branch:
$ git filter-branch --tree-filter 'rm -f passwords.txt' HEAD Rewrite 6b9b3cf04e7c5686a9cb838c3f36a8cb6a0fc2bd (21/21) Ref 'refs/heads/master' was rewritten
After the cleanup, you could also try a git gc to further compress and clean up for repository.
There's a tool now called "BFG Repo-Cleaner", it's mentioned on github.com as an alternative to filter-branch https://help.github.com/articles/remove-sensitive-data/
Link to the tool's page https://rtyley.github.io/bfg-repo-cleaner/
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With