Sebastian Schuberth schrieb: > +should_prompt_merge () { > + local prompt=$(git config --bool mergetool.prompt || echo true) 'local' is not portable. (The next patch shouldn't introduce it, either.) > -prompt=$(git config --bool mergetool.prompt || echo true) > +should_prompt_merge > +prompt=$? Previously, prompt was either "true" or "false", but now it is a number. This is not what the user (function merge_file) expects. -- Hannes -- 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