# shellcheck shell=dash

___x_cmd_git_config(){
    [ $# -gt 0 ] || {
        # TODO: give a form, first apply, second start help
        ___x_cmd_git___help config; return ;
    }

    local op="$1";  shift
    case "$op" in
        -h|--help)          ___x_cmd_git___help config; return ;;
        --apply|apply)      x gitconfig apply "$@" ;;
        *)                  ___x_cmd___git_origin config "$op" "$@" ;;
    esac
}
