Mark Wooding <mdw@xxxxxxxxxxxxxxxx> writes: > These options disable some of git-merge's optimizations. While there is no question about the part of the proposed change to bypass "trivial merge", I do not necessarily agree with "skipping fast forward" part. It is a problem that "ours" strategy cannot be used as a way to recover from the "accidentally rewound head" situation, because it is prevented from running under certain conditions as you described. But that does not necessarily mean we should make "ours" to work in these situations. You accidentally discarded B while somebody picked it up: o---o / \ ---o---o---A---o---o---B ^your head Now you would want to recover. With your patch, it would create this: o---o / \ ---o---o---A---o---o---B \ \ ------------M ^your updated head, having the same tree as A But recording A as a parent of M is not necessary. I think what we want to have as the result is this instead: o---o / \ ---o---o---A---o---o---B---M ^your updated head, having the same tree as A This is something you cannot do within the current git-merge framework; it is set up to either just fast forward or make a multi-parent commit. You would want have a "revert to this state" [*1*], something like this (assuming you have rewound to A and currently your index matches A): $ git reset --soft B $ git commit -m 'Discard A..B and revert to A' I did "ours" primarily as a demonstration of a funky thing people could do with the consolidated driver "git-merge". I did not have a useful use-case in mind back then, but it turned out to be the ideal way to recover from "accidentally rewound head" situation, except that making a merge commit between A and B is not always the way to recover from it. If we wanted to, we could have a special purpose command that does "git merge -s ours" if there will be a new commit, otherwise the above two commands sequence if it will be a fast forward, but the "recovering from accidentally rewound head" _is_ really a special purpose, so I do not know if it is worth it. In your cover letter, you talked about using --no-fast-forward to collapse your sole topic branch into your master branch. I do not think smudging the development history with extra merge commits for that is justfied either. There is no reason for you to discard your topic branch heads after you merged them into master. If they get in the way of your normal workflow, you can stash them away as tags that you do not usually see in "git branch" output [*2*]. Also I am already unhappy that git-merge knows about the specifics of strategies [*3*], e.g. it knows octopus is currently the only strategy that can do more than two heads. Your patch gives more strategy specific knowledge to it, but I do not know how to avoid it. [Footnotes] *1* As opposed to "git revert X" which means "revert the effect of commit X", you would want "revert to the state X". *2* I keep some of my old topic branch heads under .git/tags/attic/. *3* Another thing I am unhappy about is the list of available strategies. I initially wanted to allow users to write their own merge strategies and have them on their PATH (not even necessarily in GIT_EXEC_PATH directory), so that you can do a git-merge-mdw secretly, keep it in ~mdw/bin and cook it for a while using yourself as a guinea pig, and then share that with the community later, _without_ touching git-merge. - : 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