On Sun, Mar 02, 2008 at 09:28:14PM -0600, John Goerzen wrote: > That repo contains some local configuration and password information. > However, I would be happy to make it available to you or any other Git > developer privately. Could you contact me off-list if you'd like me to send > it to you? The .git directory in question is about 4.5MB, and I'd be happy > to email it. I was able to turn this into a much smaller test case. What is happening is that rebase works something like: 1. reset to "onto" commit 2. replay each commit between "upstream" and "branch" but there is a bug in step 1 that is leaving the bogus "public/dispatch.fcgi" file in the index and working tree. So step 2 correctly complains that the file is already there and uncommitted. The bug in step 1 seems to be very hard to trigger, and requires that the "branch" commit and the "onto" commit differ such that: - there is a file on the branch that was a directory in "onto" - there is a file on the branch that is new since "onto", and that sorts lexically after the file mentioned above So you can see that it is rare for it to come up. :) I'm not sure of the correct fix for the bug, but I have posted a request for help under the subject "bug in unpack_trees", so hopefully somebody more wise than I will have something to say. -Peff -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html