I accidentally committed an unwanted file ('filename.orig' while resolving a merge) to my repository several commits ago, without me noticing it until now. I want to completely delete the file from the repository history. Is it possible to rewrite the change history such that filename.orig was never added to the repository in the first place?
|
Please don't use this recipe if your situation is not the one described in the question. This recipe is for fixing a bad merge, and replaying your good commits onto a fixed merge. Although Try the following recipe:
(Note that you don't actually need a temporary branch, you can do this with a 'detached HEAD', but you need to take a note of the commit id generated by the |
|||||||||||||||||||||
|
|
If you haven't committed anything since, just If you have, |
|||||||||||
|
|
This is the best way: Just be sure to backup the copies of the files first. EDIT The edit by Neon got unfortunately rejected during review. E.g. to remove all
That still didn't work for me? (I am currently at git version 1.7.6.1)
Not sure why, since I only had ONE master branch. Anyways, I finally got my git repo truely cleaned up by pushing into a new empty and bare git repository, e.g.
(yes!) Then I clone that to a new directory and moved over it's .git folder into this one. e.g.
(yeah! finally cleaned up!) After verifying that all is well, then you can delete the |
||||
|
|
|
Have a read of http://www.kernel.org/pub/software/scm/git/docs/user-manual.html#rewriting-one-commit Although beware the implications around this if there are branches created AFTER that point. |
|||
|
|
|
This is what |
|||
|
|
|
you can also use "git reset HEAD file/path". :) |
|||||||
|
|
I think you should have a look at what you can do with git rebase. I haven't done this before, but it seems that may be where you need to head. |
|||
|
|
|
Rewriting Git history demands changing all the affected commit ids, and so everyone who's working on the project will need to delete their old copies of the repo, and do a fresh clone after you've cleaned the history. The more people it inconveniences, the more you need a good reason to do it - your superfluous file isn't really causing a problem, but if only you are working on the project, you might as well clean up the Git history if you want to! To make it as easy as possible, I'd recommend using the BFG Repo-Cleaner, a simpler, faster alternative to You should carefully follow the steps here: http://rtyley.github.com/bfg-repo-cleaner/#usage - but the core bit is just this: download the BFG jar (requires Java 6 or above) and run this command:
Your entire repository history will be scanned, and any file named |
|||
|
|