Snipping the bug and focusing on one of the after-effects of the bug is, unfortunately, not helpful to me unless I'm missing your point (which is certainly possible). git switched branches while there were uncommitted files. It's not supposed to do this, ever, unless given -f or -m, and it broke the tree as a result. Even *with* -f or -m, the behavior I described is incorrect. The git docs seem to agree with me, which is why there's git stash. If the docs are wrong, fine, though it seems pretty strange to have a change on BranchA appear by magic "in" BranchB without any merging. What I'm after is an understanding / explanation of how something that isn't supposed to happen, does. I don't care if it's "Because I'm an idiot", "Because git is broken", or even "Make sure your config has 'git.makebranchesworkproperly = true' in it, the default is false". If there is no explanation for why git switches branches when there are still uncommitted files, and there doesn't seem to be, then it's a pretty catastrophic bug and fixing it would be a Good Thing. *AFAICT*, committing *a* file is what triggers it. If you commit -a, which is what all the commits prior to this were, it works properly. You change branches, and the files on the disk become what they should be. If you commit nothing, you correctly get the "uncommitted files" error. If you do a partial commit though, your tree breaks. Like I say, if the man page, quote: "If you have local modifications to one or more files that are different between the current branch and the branch to which you are switching, the command refuses to switch branches in order to preserve your modifications in context." is wrong, and this behavior is deliberate, that's fine. Bizarre, but fine in the sense that git is doing what it's supposed to (regardless of how counterintuitive and destructive it is). If the man page is right though, this is a bug. Maybe it's only in msysgit, but this is the second time it's happened, so hopefully it's fairly easy to reproduce. -- 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