I had a conflict in a merge. Git creates filename.orig and filename.remote when a conflict happens. I resolved the conflict, but somehow filename.orig got added to the repository several commits ago without me noticing it until now. Is it possible to rewrite the change history such that filename.orig was never added to the repository in the first place?
|
feedback
|
|
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 | |||||||||||||||||
feedback
|
|
If you haven't committed anything since, just If you have, | |||||||||||
feedback
|
|
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 | ||||
|
feedback
|
|
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. | |||
|
feedback
|
|
This is what | |||
|
feedback
|
|
you can also use "git reset HEAD file/path". :) | |||||
feedback
|
|
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. | |||
|
feedback
|