mergetools / tkdiffon commit config.c: rename git_config_maybe_bool_text and export it as git_parse_maybe_bool (9a549d4)
   1diff_cmd () {
   2        "$merge_tool_path" "$LOCAL" "$REMOTE"
   3}
   4
   5merge_cmd () {
   6        if $base_present
   7        then
   8                "$merge_tool_path" -a "$BASE" -o "$MERGED" "$LOCAL" "$REMOTE"
   9        else
  10                "$merge_tool_path" -o "$MERGED" "$LOCAL" "$REMOTE"
  11        fi
  12}