# (C) 2013-2025 magicant

# Completion script for the "git-ls-remote" command.
# Supports Git 2.48.1.

function completion/git-ls-remote {
        WORDS=(git ls-remote "${WORDS[2,-1]}")
        command -f completion//reexecute
}

function completion/git::ls-remote:arg {

        OPTIONS=( #>#
        "b h --branches --heads; print branches only"
        "--exit-code; return a non-zero exit status if no refs were printed"
        "--get-url; just print remote URL"
        "q --quiet; don't print remote URL"
        "--refs; only show real refs"
        "o: --server-option:; specify a server option"
        "--sort:; specify the sort order"
        "--symref; also show intermediate symbolic refs"
        "t --tags; print tags only"
        "--upload-pack:; specify a path for git-upload-pack on the remote host"
        ) #<#

        command -f completion//parseoptions -n
        case $ARGOPT in
                (-)
                        command -f completion//completeoptions
                        ;;
                (--sort)
                        command -f completion/git::--sort:arg
                        ;;
                (u|--upload-pack)
                        command -f completion/git::--upload-pack:arg
                        ;;
                ('')
                        command -f completion//getoperands
                        if [ ${WORDS[#]} -eq 0 ]; then
                                complete -P "$PREFIX" -- \
                                        $( (ls -- "$(git rev-parse --git-dir)/branches") 2>/dev/null)

                                command -f completion/git::completeremote
                        else
                                command -f completion/git::completeref
                        fi
                        ;;
        esac

}


# vim: set ft=sh ts=8 sts=8 sw=8 et:
