1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
# (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:
|