I have a git repository, and a very old patch (made in 2007) that I want to apply to it. The contents of the repository have changed significantly since then, and when I try to apply the patch, it fails due to conflicts.
I would like to deal with the conflicts inside git, by adding the patch as a new branch and merging it back to master. But to do that I need to locate the earliest commit that the patch can apply onto cleanly. Is there an easy way of doing this in git?
git bisect
needs a good revision, and if I knew that, I wouldn't have this problem. :( – Rickirickie