contrib / completion / git-completion.bashon commit completion: use __gitcomp_builtin in _git_reset (3907310)
   1# bash/zsh completion support for core Git.
   2#
   3# Copyright (C) 2006,2007 Shawn O. Pearce <spearce@spearce.org>
   4# Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/).
   5# Distributed under the GNU General Public License, version 2.0.
   6#
   7# The contained completion routines provide support for completing:
   8#
   9#    *) local and remote branch names
  10#    *) local and remote tag names
  11#    *) .git/remotes file names
  12#    *) git 'subcommands'
  13#    *) git email aliases for git-send-email
  14#    *) tree paths within 'ref:path/to/file' expressions
  15#    *) file paths within current working directory and index
  16#    *) common --long-options
  17#
  18# To use these routines:
  19#
  20#    1) Copy this file to somewhere (e.g. ~/.git-completion.bash).
  21#    2) Add the following line to your .bashrc/.zshrc:
  22#        source ~/.git-completion.bash
  23#    3) Consider changing your PS1 to also show the current branch,
  24#       see git-prompt.sh for details.
  25#
  26# If you use complex aliases of form '!f() { ... }; f', you can use the null
  27# command ':' as the first command in the function body to declare the desired
  28# completion style.  For example '!f() { : git commit ; ... }; f' will
  29# tell the completion to use commit completion.  This also works with aliases
  30# of form "!sh -c '...'".  For example, "!sh -c ': git commit ; ... '".
  31#
  32# You can set the following environment variables to influence the behavior of
  33# the completion routines:
  34#
  35#   GIT_COMPLETION_CHECKOUT_NO_GUESS
  36#
  37#     When set to "1", do not include "DWIM" suggestions in git-checkout
  38#     completion (e.g., completing "foo" when "origin/foo" exists).
  39
  40case "$COMP_WORDBREAKS" in
  41*:*) : great ;;
  42*)   COMP_WORDBREAKS="$COMP_WORDBREAKS:"
  43esac
  44
  45# Discovers the path to the git repository taking any '--git-dir=<path>' and
  46# '-C <path>' options into account and stores it in the $__git_repo_path
  47# variable.
  48__git_find_repo_path ()
  49{
  50        if [ -n "$__git_repo_path" ]; then
  51                # we already know where it is
  52                return
  53        fi
  54
  55        if [ -n "${__git_C_args-}" ]; then
  56                __git_repo_path="$(git "${__git_C_args[@]}" \
  57                        ${__git_dir:+--git-dir="$__git_dir"} \
  58                        rev-parse --absolute-git-dir 2>/dev/null)"
  59        elif [ -n "${__git_dir-}" ]; then
  60                test -d "$__git_dir" &&
  61                __git_repo_path="$__git_dir"
  62        elif [ -n "${GIT_DIR-}" ]; then
  63                test -d "${GIT_DIR-}" &&
  64                __git_repo_path="$GIT_DIR"
  65        elif [ -d .git ]; then
  66                __git_repo_path=.git
  67        else
  68                __git_repo_path="$(git rev-parse --git-dir 2>/dev/null)"
  69        fi
  70}
  71
  72# Deprecated: use __git_find_repo_path() and $__git_repo_path instead
  73# __gitdir accepts 0 or 1 arguments (i.e., location)
  74# returns location of .git repo
  75__gitdir ()
  76{
  77        if [ -z "${1-}" ]; then
  78                __git_find_repo_path || return 1
  79                echo "$__git_repo_path"
  80        elif [ -d "$1/.git" ]; then
  81                echo "$1/.git"
  82        else
  83                echo "$1"
  84        fi
  85}
  86
  87# Runs git with all the options given as argument, respecting any
  88# '--git-dir=<path>' and '-C <path>' options present on the command line
  89__git ()
  90{
  91        git ${__git_C_args:+"${__git_C_args[@]}"} \
  92                ${__git_dir:+--git-dir="$__git_dir"} "$@" 2>/dev/null
  93}
  94
  95# The following function is based on code from:
  96#
  97#   bash_completion - programmable completion functions for bash 3.2+
  98#
  99#   Copyright © 2006-2008, Ian Macdonald <ian@caliban.org>
 100#             © 2009-2010, Bash Completion Maintainers
 101#                     <bash-completion-devel@lists.alioth.debian.org>
 102#
 103#   This program is free software; you can redistribute it and/or modify
 104#   it under the terms of the GNU General Public License as published by
 105#   the Free Software Foundation; either version 2, or (at your option)
 106#   any later version.
 107#
 108#   This program is distributed in the hope that it will be useful,
 109#   but WITHOUT ANY WARRANTY; without even the implied warranty of
 110#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 111#   GNU General Public License for more details.
 112#
 113#   You should have received a copy of the GNU General Public License
 114#   along with this program; if not, see <http://www.gnu.org/licenses/>.
 115#
 116#   The latest version of this software can be obtained here:
 117#
 118#   http://bash-completion.alioth.debian.org/
 119#
 120#   RELEASE: 2.x
 121
 122# This function can be used to access a tokenized list of words
 123# on the command line:
 124#
 125#       __git_reassemble_comp_words_by_ref '=:'
 126#       if test "${words_[cword_-1]}" = -w
 127#       then
 128#               ...
 129#       fi
 130#
 131# The argument should be a collection of characters from the list of
 132# word completion separators (COMP_WORDBREAKS) to treat as ordinary
 133# characters.
 134#
 135# This is roughly equivalent to going back in time and setting
 136# COMP_WORDBREAKS to exclude those characters.  The intent is to
 137# make option types like --date=<type> and <rev>:<path> easy to
 138# recognize by treating each shell word as a single token.
 139#
 140# It is best not to set COMP_WORDBREAKS directly because the value is
 141# shared with other completion scripts.  By the time the completion
 142# function gets called, COMP_WORDS has already been populated so local
 143# changes to COMP_WORDBREAKS have no effect.
 144#
 145# Output: words_, cword_, cur_.
 146
 147__git_reassemble_comp_words_by_ref()
 148{
 149        local exclude i j first
 150        # Which word separators to exclude?
 151        exclude="${1//[^$COMP_WORDBREAKS]}"
 152        cword_=$COMP_CWORD
 153        if [ -z "$exclude" ]; then
 154                words_=("${COMP_WORDS[@]}")
 155                return
 156        fi
 157        # List of word completion separators has shrunk;
 158        # re-assemble words to complete.
 159        for ((i=0, j=0; i < ${#COMP_WORDS[@]}; i++, j++)); do
 160                # Append each nonempty word consisting of just
 161                # word separator characters to the current word.
 162                first=t
 163                while
 164                        [ $i -gt 0 ] &&
 165                        [ -n "${COMP_WORDS[$i]}" ] &&
 166                        # word consists of excluded word separators
 167                        [ "${COMP_WORDS[$i]//[^$exclude]}" = "${COMP_WORDS[$i]}" ]
 168                do
 169                        # Attach to the previous token,
 170                        # unless the previous token is the command name.
 171                        if [ $j -ge 2 ] && [ -n "$first" ]; then
 172                                ((j--))
 173                        fi
 174                        first=
 175                        words_[$j]=${words_[j]}${COMP_WORDS[i]}
 176                        if [ $i = $COMP_CWORD ]; then
 177                                cword_=$j
 178                        fi
 179                        if (($i < ${#COMP_WORDS[@]} - 1)); then
 180                                ((i++))
 181                        else
 182                                # Done.
 183                                return
 184                        fi
 185                done
 186                words_[$j]=${words_[j]}${COMP_WORDS[i]}
 187                if [ $i = $COMP_CWORD ]; then
 188                        cword_=$j
 189                fi
 190        done
 191}
 192
 193if ! type _get_comp_words_by_ref >/dev/null 2>&1; then
 194_get_comp_words_by_ref ()
 195{
 196        local exclude cur_ words_ cword_
 197        if [ "$1" = "-n" ]; then
 198                exclude=$2
 199                shift 2
 200        fi
 201        __git_reassemble_comp_words_by_ref "$exclude"
 202        cur_=${words_[cword_]}
 203        while [ $# -gt 0 ]; do
 204                case "$1" in
 205                cur)
 206                        cur=$cur_
 207                        ;;
 208                prev)
 209                        prev=${words_[$cword_-1]}
 210                        ;;
 211                words)
 212                        words=("${words_[@]}")
 213                        ;;
 214                cword)
 215                        cword=$cword_
 216                        ;;
 217                esac
 218                shift
 219        done
 220}
 221fi
 222
 223# Fills the COMPREPLY array with prefiltered words without any additional
 224# processing.
 225# Callers must take care of providing only words that match the current word
 226# to be completed and adding any prefix and/or suffix (trailing space!), if
 227# necessary.
 228# 1: List of newline-separated matching completion words, complete with
 229#    prefix and suffix.
 230__gitcomp_direct ()
 231{
 232        local IFS=$'\n'
 233
 234        COMPREPLY=($1)
 235}
 236
 237__gitcompappend ()
 238{
 239        local x i=${#COMPREPLY[@]}
 240        for x in $1; do
 241                if [[ "$x" == "$3"* ]]; then
 242                        COMPREPLY[i++]="$2$x$4"
 243                fi
 244        done
 245}
 246
 247__gitcompadd ()
 248{
 249        COMPREPLY=()
 250        __gitcompappend "$@"
 251}
 252
 253# Generates completion reply, appending a space to possible completion words,
 254# if necessary.
 255# It accepts 1 to 4 arguments:
 256# 1: List of possible completion words.
 257# 2: A prefix to be added to each possible completion word (optional).
 258# 3: Generate possible completion matches for this word (optional).
 259# 4: A suffix to be appended to each possible completion word (optional).
 260__gitcomp ()
 261{
 262        local cur_="${3-$cur}"
 263
 264        case "$cur_" in
 265        --*=)
 266                ;;
 267        *)
 268                local c i=0 IFS=$' \t\n'
 269                for c in $1; do
 270                        c="$c${4-}"
 271                        if [[ $c == "$cur_"* ]]; then
 272                                case $c in
 273                                --*=*|*.) ;;
 274                                *) c="$c " ;;
 275                                esac
 276                                COMPREPLY[i++]="${2-}$c"
 277                        fi
 278                done
 279                ;;
 280        esac
 281}
 282
 283# This function is equivalent to
 284#
 285#    __gitcomp "$(git xxx --git-completion-helper) ..."
 286#
 287# except that the output is cached. Accept 1-3 arguments:
 288# 1: the git command to execute, this is also the cache key
 289# 2: extra options to be added on top (e.g. negative forms)
 290# 3: options to be excluded
 291__gitcomp_builtin ()
 292{
 293        # spaces must be replaced with underscore for multi-word
 294        # commands, e.g. "git remote add" becomes remote_add.
 295        local cmd="$1"
 296        local incl="$2"
 297        local excl="$3"
 298
 299        local var=__gitcomp_builtin_"${cmd/-/_}"
 300        local options
 301        eval "options=\$$var"
 302
 303        if [ -z "$options" ]; then
 304                # leading and trailing spaces are significant to make
 305                # option removal work correctly.
 306                options=" $(__git ${cmd/_/ } --git-completion-helper) $incl "
 307                for i in $excl; do
 308                        options="${options/ $i / }"
 309                done
 310                eval "$var=\"$options\""
 311        fi
 312
 313        __gitcomp "$options"
 314}
 315
 316# Variation of __gitcomp_nl () that appends to the existing list of
 317# completion candidates, COMPREPLY.
 318__gitcomp_nl_append ()
 319{
 320        local IFS=$'\n'
 321        __gitcompappend "$1" "${2-}" "${3-$cur}" "${4- }"
 322}
 323
 324# Generates completion reply from newline-separated possible completion words
 325# by appending a space to all of them.
 326# It accepts 1 to 4 arguments:
 327# 1: List of possible completion words, separated by a single newline.
 328# 2: A prefix to be added to each possible completion word (optional).
 329# 3: Generate possible completion matches for this word (optional).
 330# 4: A suffix to be appended to each possible completion word instead of
 331#    the default space (optional).  If specified but empty, nothing is
 332#    appended.
 333__gitcomp_nl ()
 334{
 335        COMPREPLY=()
 336        __gitcomp_nl_append "$@"
 337}
 338
 339# Generates completion reply with compgen from newline-separated possible
 340# completion filenames.
 341# It accepts 1 to 3 arguments:
 342# 1: List of possible completion filenames, separated by a single newline.
 343# 2: A directory prefix to be added to each possible completion filename
 344#    (optional).
 345# 3: Generate possible completion matches for this word (optional).
 346__gitcomp_file ()
 347{
 348        local IFS=$'\n'
 349
 350        # XXX does not work when the directory prefix contains a tilde,
 351        # since tilde expansion is not applied.
 352        # This means that COMPREPLY will be empty and Bash default
 353        # completion will be used.
 354        __gitcompadd "$1" "${2-}" "${3-$cur}" ""
 355
 356        # use a hack to enable file mode in bash < 4
 357        compopt -o filenames +o nospace 2>/dev/null ||
 358        compgen -f /non-existing-dir/ > /dev/null
 359}
 360
 361# Execute 'git ls-files', unless the --committable option is specified, in
 362# which case it runs 'git diff-index' to find out the files that can be
 363# committed.  It return paths relative to the directory specified in the first
 364# argument, and using the options specified in the second argument.
 365__git_ls_files_helper ()
 366{
 367        if [ "$2" == "--committable" ]; then
 368                __git -C "$1" diff-index --name-only --relative HEAD
 369        else
 370                # NOTE: $2 is not quoted in order to support multiple options
 371                __git -C "$1" ls-files --exclude-standard $2
 372        fi
 373}
 374
 375
 376# __git_index_files accepts 1 or 2 arguments:
 377# 1: Options to pass to ls-files (required).
 378# 2: A directory path (optional).
 379#    If provided, only files within the specified directory are listed.
 380#    Sub directories are never recursed.  Path must have a trailing
 381#    slash.
 382__git_index_files ()
 383{
 384        local root="${2-.}" file
 385
 386        __git_ls_files_helper "$root" "$1" |
 387        while read -r file; do
 388                case "$file" in
 389                ?*/*) echo "${file%%/*}" ;;
 390                *) echo "$file" ;;
 391                esac
 392        done | sort | uniq
 393}
 394
 395# Lists branches from the local repository.
 396# 1: A prefix to be added to each listed branch (optional).
 397# 2: List only branches matching this word (optional; list all branches if
 398#    unset or empty).
 399# 3: A suffix to be appended to each listed branch (optional).
 400__git_heads ()
 401{
 402        local pfx="${1-}" cur_="${2-}" sfx="${3-}"
 403
 404        __git for-each-ref --format="${pfx//\%/%%}%(refname:strip=2)$sfx" \
 405                        "refs/heads/$cur_*" "refs/heads/$cur_*/**"
 406}
 407
 408# Lists tags from the local repository.
 409# Accepts the same positional parameters as __git_heads() above.
 410__git_tags ()
 411{
 412        local pfx="${1-}" cur_="${2-}" sfx="${3-}"
 413
 414        __git for-each-ref --format="${pfx//\%/%%}%(refname:strip=2)$sfx" \
 415                        "refs/tags/$cur_*" "refs/tags/$cur_*/**"
 416}
 417
 418# Lists refs from the local (by default) or from a remote repository.
 419# It accepts 0, 1 or 2 arguments:
 420# 1: The remote to list refs from (optional; ignored, if set but empty).
 421#    Can be the name of a configured remote, a path, or a URL.
 422# 2: In addition to local refs, list unique branches from refs/remotes/ for
 423#    'git checkout's tracking DWIMery (optional; ignored, if set but empty).
 424# 3: A prefix to be added to each listed ref (optional).
 425# 4: List only refs matching this word (optional; list all refs if unset or
 426#    empty).
 427# 5: A suffix to be appended to each listed ref (optional; ignored, if set
 428#    but empty).
 429#
 430# Use __git_complete_refs() instead.
 431__git_refs ()
 432{
 433        local i hash dir track="${2-}"
 434        local list_refs_from=path remote="${1-}"
 435        local format refs
 436        local pfx="${3-}" cur_="${4-$cur}" sfx="${5-}"
 437        local match="${4-}"
 438        local fer_pfx="${pfx//\%/%%}" # "escape" for-each-ref format specifiers
 439
 440        __git_find_repo_path
 441        dir="$__git_repo_path"
 442
 443        if [ -z "$remote" ]; then
 444                if [ -z "$dir" ]; then
 445                        return
 446                fi
 447        else
 448                if __git_is_configured_remote "$remote"; then
 449                        # configured remote takes precedence over a
 450                        # local directory with the same name
 451                        list_refs_from=remote
 452                elif [ -d "$remote/.git" ]; then
 453                        dir="$remote/.git"
 454                elif [ -d "$remote" ]; then
 455                        dir="$remote"
 456                else
 457                        list_refs_from=url
 458                fi
 459        fi
 460
 461        if [ "$list_refs_from" = path ]; then
 462                if [[ "$cur_" == ^* ]]; then
 463                        pfx="$pfx^"
 464                        fer_pfx="$fer_pfx^"
 465                        cur_=${cur_#^}
 466                        match=${match#^}
 467                fi
 468                case "$cur_" in
 469                refs|refs/*)
 470                        format="refname"
 471                        refs=("$match*" "$match*/**")
 472                        track=""
 473                        ;;
 474                *)
 475                        for i in HEAD FETCH_HEAD ORIG_HEAD MERGE_HEAD; do
 476                                case "$i" in
 477                                $match*)
 478                                        if [ -e "$dir/$i" ]; then
 479                                                echo "$pfx$i$sfx"
 480                                        fi
 481                                        ;;
 482                                esac
 483                        done
 484                        format="refname:strip=2"
 485                        refs=("refs/tags/$match*" "refs/tags/$match*/**"
 486                                "refs/heads/$match*" "refs/heads/$match*/**"
 487                                "refs/remotes/$match*" "refs/remotes/$match*/**")
 488                        ;;
 489                esac
 490                __git_dir="$dir" __git for-each-ref --format="$fer_pfx%($format)$sfx" \
 491                        "${refs[@]}"
 492                if [ -n "$track" ]; then
 493                        # employ the heuristic used by git checkout
 494                        # Try to find a remote branch that matches the completion word
 495                        # but only output if the branch name is unique
 496                        __git for-each-ref --format="$fer_pfx%(refname:strip=3)$sfx" \
 497                                --sort="refname:strip=3" \
 498                                "refs/remotes/*/$match*" "refs/remotes/*/$match*/**" | \
 499                        uniq -u
 500                fi
 501                return
 502        fi
 503        case "$cur_" in
 504        refs|refs/*)
 505                __git ls-remote "$remote" "$match*" | \
 506                while read -r hash i; do
 507                        case "$i" in
 508                        *^{}) ;;
 509                        *) echo "$pfx$i$sfx" ;;
 510                        esac
 511                done
 512                ;;
 513        *)
 514                if [ "$list_refs_from" = remote ]; then
 515                        case "HEAD" in
 516                        $match*)        echo "${pfx}HEAD$sfx" ;;
 517                        esac
 518                        __git for-each-ref --format="$fer_pfx%(refname:strip=3)$sfx" \
 519                                "refs/remotes/$remote/$match*" \
 520                                "refs/remotes/$remote/$match*/**"
 521                else
 522                        local query_symref
 523                        case "HEAD" in
 524                        $match*)        query_symref="HEAD" ;;
 525                        esac
 526                        __git ls-remote "$remote" $query_symref \
 527                                "refs/tags/$match*" "refs/heads/$match*" \
 528                                "refs/remotes/$match*" |
 529                        while read -r hash i; do
 530                                case "$i" in
 531                                *^{})   ;;
 532                                refs/*) echo "$pfx${i#refs/*/}$sfx" ;;
 533                                *)      echo "$pfx$i$sfx" ;;  # symbolic refs
 534                                esac
 535                        done
 536                fi
 537                ;;
 538        esac
 539}
 540
 541# Completes refs, short and long, local and remote, symbolic and pseudo.
 542#
 543# Usage: __git_complete_refs [<option>]...
 544# --remote=<remote>: The remote to list refs from, can be the name of a
 545#                    configured remote, a path, or a URL.
 546# --track: List unique remote branches for 'git checkout's tracking DWIMery.
 547# --pfx=<prefix>: A prefix to be added to each ref.
 548# --cur=<word>: The current ref to be completed.  Defaults to the current
 549#               word to be completed.
 550# --sfx=<suffix>: A suffix to be appended to each ref instead of the default
 551#                 space.
 552__git_complete_refs ()
 553{
 554        local remote track pfx cur_="$cur" sfx=" "
 555
 556        while test $# != 0; do
 557                case "$1" in
 558                --remote=*)     remote="${1##--remote=}" ;;
 559                --track)        track="yes" ;;
 560                --pfx=*)        pfx="${1##--pfx=}" ;;
 561                --cur=*)        cur_="${1##--cur=}" ;;
 562                --sfx=*)        sfx="${1##--sfx=}" ;;
 563                *)              return 1 ;;
 564                esac
 565                shift
 566        done
 567
 568        __gitcomp_direct "$(__git_refs "$remote" "$track" "$pfx" "$cur_" "$sfx")"
 569}
 570
 571# __git_refs2 requires 1 argument (to pass to __git_refs)
 572# Deprecated: use __git_complete_fetch_refspecs() instead.
 573__git_refs2 ()
 574{
 575        local i
 576        for i in $(__git_refs "$1"); do
 577                echo "$i:$i"
 578        done
 579}
 580
 581# Completes refspecs for fetching from a remote repository.
 582# 1: The remote repository.
 583# 2: A prefix to be added to each listed refspec (optional).
 584# 3: The ref to be completed as a refspec instead of the current word to be
 585#    completed (optional)
 586# 4: A suffix to be appended to each listed refspec instead of the default
 587#    space (optional).
 588__git_complete_fetch_refspecs ()
 589{
 590        local i remote="$1" pfx="${2-}" cur_="${3-$cur}" sfx="${4- }"
 591
 592        __gitcomp_direct "$(
 593                for i in $(__git_refs "$remote" "" "" "$cur_") ; do
 594                        echo "$pfx$i:$i$sfx"
 595                done
 596                )"
 597}
 598
 599# __git_refs_remotes requires 1 argument (to pass to ls-remote)
 600__git_refs_remotes ()
 601{
 602        local i hash
 603        __git ls-remote "$1" 'refs/heads/*' | \
 604        while read -r hash i; do
 605                echo "$i:refs/remotes/$1/${i#refs/heads/}"
 606        done
 607}
 608
 609__git_remotes ()
 610{
 611        __git_find_repo_path
 612        test -d "$__git_repo_path/remotes" && ls -1 "$__git_repo_path/remotes"
 613        __git remote
 614}
 615
 616# Returns true if $1 matches the name of a configured remote, false otherwise.
 617__git_is_configured_remote ()
 618{
 619        local remote
 620        for remote in $(__git_remotes); do
 621                if [ "$remote" = "$1" ]; then
 622                        return 0
 623                fi
 624        done
 625        return 1
 626}
 627
 628__git_list_merge_strategies ()
 629{
 630        git merge -s help 2>&1 |
 631        sed -n -e '/[Aa]vailable strategies are: /,/^$/{
 632                s/\.$//
 633                s/.*://
 634                s/^[    ]*//
 635                s/[     ]*$//
 636                p
 637        }'
 638}
 639
 640__git_merge_strategies=
 641# 'git merge -s help' (and thus detection of the merge strategy
 642# list) fails, unfortunately, if run outside of any git working
 643# tree.  __git_merge_strategies is set to the empty string in
 644# that case, and the detection will be repeated the next time it
 645# is needed.
 646__git_compute_merge_strategies ()
 647{
 648        test -n "$__git_merge_strategies" ||
 649        __git_merge_strategies=$(__git_list_merge_strategies)
 650}
 651
 652__git_complete_revlist_file ()
 653{
 654        local pfx ls ref cur_="$cur"
 655        case "$cur_" in
 656        *..?*:*)
 657                return
 658                ;;
 659        ?*:*)
 660                ref="${cur_%%:*}"
 661                cur_="${cur_#*:}"
 662                case "$cur_" in
 663                ?*/*)
 664                        pfx="${cur_%/*}"
 665                        cur_="${cur_##*/}"
 666                        ls="$ref:$pfx"
 667                        pfx="$pfx/"
 668                        ;;
 669                *)
 670                        ls="$ref"
 671                        ;;
 672                esac
 673
 674                case "$COMP_WORDBREAKS" in
 675                *:*) : great ;;
 676                *)   pfx="$ref:$pfx" ;;
 677                esac
 678
 679                __gitcomp_nl "$(__git ls-tree "$ls" \
 680                                | sed '/^100... blob /{
 681                                           s,^.*        ,,
 682                                           s,$, ,
 683                                       }
 684                                       /^120000 blob /{
 685                                           s,^.*        ,,
 686                                           s,$, ,
 687                                       }
 688                                       /^040000 tree /{
 689                                           s,^.*        ,,
 690                                           s,$,/,
 691                                       }
 692                                       s/^.*    //')" \
 693                        "$pfx" "$cur_" ""
 694                ;;
 695        *...*)
 696                pfx="${cur_%...*}..."
 697                cur_="${cur_#*...}"
 698                __git_complete_refs --pfx="$pfx" --cur="$cur_"
 699                ;;
 700        *..*)
 701                pfx="${cur_%..*}.."
 702                cur_="${cur_#*..}"
 703                __git_complete_refs --pfx="$pfx" --cur="$cur_"
 704                ;;
 705        *)
 706                __git_complete_refs
 707                ;;
 708        esac
 709}
 710
 711
 712# __git_complete_index_file requires 1 argument:
 713# 1: the options to pass to ls-file
 714#
 715# The exception is --committable, which finds the files appropriate commit.
 716__git_complete_index_file ()
 717{
 718        local pfx="" cur_="$cur"
 719
 720        case "$cur_" in
 721        ?*/*)
 722                pfx="${cur_%/*}"
 723                cur_="${cur_##*/}"
 724                pfx="${pfx}/"
 725                ;;
 726        esac
 727
 728        __gitcomp_file "$(__git_index_files "$1" ${pfx:+"$pfx"})" "$pfx" "$cur_"
 729}
 730
 731__git_complete_file ()
 732{
 733        __git_complete_revlist_file
 734}
 735
 736__git_complete_revlist ()
 737{
 738        __git_complete_revlist_file
 739}
 740
 741__git_complete_remote_or_refspec ()
 742{
 743        local cur_="$cur" cmd="${words[1]}"
 744        local i c=2 remote="" pfx="" lhs=1 no_complete_refspec=0
 745        if [ "$cmd" = "remote" ]; then
 746                ((c++))
 747        fi
 748        while [ $c -lt $cword ]; do
 749                i="${words[c]}"
 750                case "$i" in
 751                --mirror) [ "$cmd" = "push" ] && no_complete_refspec=1 ;;
 752                -d|--delete) [ "$cmd" = "push" ] && lhs=0 ;;
 753                --all)
 754                        case "$cmd" in
 755                        push) no_complete_refspec=1 ;;
 756                        fetch)
 757                                return
 758                                ;;
 759                        *) ;;
 760                        esac
 761                        ;;
 762                -*) ;;
 763                *) remote="$i"; break ;;
 764                esac
 765                ((c++))
 766        done
 767        if [ -z "$remote" ]; then
 768                __gitcomp_nl "$(__git_remotes)"
 769                return
 770        fi
 771        if [ $no_complete_refspec = 1 ]; then
 772                return
 773        fi
 774        [ "$remote" = "." ] && remote=
 775        case "$cur_" in
 776        *:*)
 777                case "$COMP_WORDBREAKS" in
 778                *:*) : great ;;
 779                *)   pfx="${cur_%%:*}:" ;;
 780                esac
 781                cur_="${cur_#*:}"
 782                lhs=0
 783                ;;
 784        +*)
 785                pfx="+"
 786                cur_="${cur_#+}"
 787                ;;
 788        esac
 789        case "$cmd" in
 790        fetch)
 791                if [ $lhs = 1 ]; then
 792                        __git_complete_fetch_refspecs "$remote" "$pfx" "$cur_"
 793                else
 794                        __git_complete_refs --pfx="$pfx" --cur="$cur_"
 795                fi
 796                ;;
 797        pull|remote)
 798                if [ $lhs = 1 ]; then
 799                        __git_complete_refs --remote="$remote" --pfx="$pfx" --cur="$cur_"
 800                else
 801                        __git_complete_refs --pfx="$pfx" --cur="$cur_"
 802                fi
 803                ;;
 804        push)
 805                if [ $lhs = 1 ]; then
 806                        __git_complete_refs --pfx="$pfx" --cur="$cur_"
 807                else
 808                        __git_complete_refs --remote="$remote" --pfx="$pfx" --cur="$cur_"
 809                fi
 810                ;;
 811        esac
 812}
 813
 814__git_complete_strategy ()
 815{
 816        __git_compute_merge_strategies
 817        case "$prev" in
 818        -s|--strategy)
 819                __gitcomp "$__git_merge_strategies"
 820                return 0
 821        esac
 822        case "$cur" in
 823        --strategy=*)
 824                __gitcomp "$__git_merge_strategies" "" "${cur##--strategy=}"
 825                return 0
 826                ;;
 827        esac
 828        return 1
 829}
 830
 831__git_commands () {
 832        if test -n "${GIT_TESTING_COMMAND_COMPLETION:-}"
 833        then
 834                printf "%s" "${GIT_TESTING_COMMAND_COMPLETION}"
 835        else
 836                git help -a|egrep '^  [a-zA-Z0-9]'
 837        fi
 838}
 839
 840__git_list_all_commands ()
 841{
 842        local i IFS=" "$'\n'
 843        for i in $(__git_commands)
 844        do
 845                case $i in
 846                *--*)             : helper pattern;;
 847                *) echo $i;;
 848                esac
 849        done
 850}
 851
 852__git_all_commands=
 853__git_compute_all_commands ()
 854{
 855        test -n "$__git_all_commands" ||
 856        __git_all_commands=$(__git_list_all_commands)
 857}
 858
 859__git_list_porcelain_commands ()
 860{
 861        local i IFS=" "$'\n'
 862        __git_compute_all_commands
 863        for i in $__git_all_commands
 864        do
 865                case $i in
 866                *--*)             : helper pattern;;
 867                applymbox)        : ask gittus;;
 868                applypatch)       : ask gittus;;
 869                archimport)       : import;;
 870                cat-file)         : plumbing;;
 871                check-attr)       : plumbing;;
 872                check-ignore)     : plumbing;;
 873                check-mailmap)    : plumbing;;
 874                check-ref-format) : plumbing;;
 875                checkout-index)   : plumbing;;
 876                column)           : internal helper;;
 877                commit-tree)      : plumbing;;
 878                count-objects)    : infrequent;;
 879                credential)       : credentials;;
 880                credential-*)     : credentials helper;;
 881                cvsexportcommit)  : export;;
 882                cvsimport)        : import;;
 883                cvsserver)        : daemon;;
 884                daemon)           : daemon;;
 885                diff-files)       : plumbing;;
 886                diff-index)       : plumbing;;
 887                diff-tree)        : plumbing;;
 888                fast-import)      : import;;
 889                fast-export)      : export;;
 890                fsck-objects)     : plumbing;;
 891                fetch-pack)       : plumbing;;
 892                fmt-merge-msg)    : plumbing;;
 893                for-each-ref)     : plumbing;;
 894                hash-object)      : plumbing;;
 895                http-*)           : transport;;
 896                index-pack)       : plumbing;;
 897                init-db)          : deprecated;;
 898                local-fetch)      : plumbing;;
 899                ls-files)         : plumbing;;
 900                ls-remote)        : plumbing;;
 901                ls-tree)          : plumbing;;
 902                mailinfo)         : plumbing;;
 903                mailsplit)        : plumbing;;
 904                merge-*)          : plumbing;;
 905                mktree)           : plumbing;;
 906                mktag)            : plumbing;;
 907                pack-objects)     : plumbing;;
 908                pack-redundant)   : plumbing;;
 909                pack-refs)        : plumbing;;
 910                parse-remote)     : plumbing;;
 911                patch-id)         : plumbing;;
 912                prune)            : plumbing;;
 913                prune-packed)     : plumbing;;
 914                quiltimport)      : import;;
 915                read-tree)        : plumbing;;
 916                receive-pack)     : plumbing;;
 917                remote-*)         : transport;;
 918                rerere)           : plumbing;;
 919                rev-list)         : plumbing;;
 920                rev-parse)        : plumbing;;
 921                runstatus)        : plumbing;;
 922                sh-setup)         : internal;;
 923                shell)            : daemon;;
 924                show-ref)         : plumbing;;
 925                send-pack)        : plumbing;;
 926                show-index)       : plumbing;;
 927                ssh-*)            : transport;;
 928                stripspace)       : plumbing;;
 929                symbolic-ref)     : plumbing;;
 930                unpack-file)      : plumbing;;
 931                unpack-objects)   : plumbing;;
 932                update-index)     : plumbing;;
 933                update-ref)       : plumbing;;
 934                update-server-info) : daemon;;
 935                upload-archive)   : plumbing;;
 936                upload-pack)      : plumbing;;
 937                write-tree)       : plumbing;;
 938                var)              : infrequent;;
 939                verify-pack)      : infrequent;;
 940                verify-tag)       : plumbing;;
 941                *) echo $i;;
 942                esac
 943        done
 944}
 945
 946__git_porcelain_commands=
 947__git_compute_porcelain_commands ()
 948{
 949        test -n "$__git_porcelain_commands" ||
 950        __git_porcelain_commands=$(__git_list_porcelain_commands)
 951}
 952
 953# Lists all set config variables starting with the given section prefix,
 954# with the prefix removed.
 955__git_get_config_variables ()
 956{
 957        local section="$1" i IFS=$'\n'
 958        for i in $(__git config --name-only --get-regexp "^$section\..*"); do
 959                echo "${i#$section.}"
 960        done
 961}
 962
 963__git_pretty_aliases ()
 964{
 965        __git_get_config_variables "pretty"
 966}
 967
 968__git_aliases ()
 969{
 970        __git_get_config_variables "alias"
 971}
 972
 973# __git_aliased_command requires 1 argument
 974__git_aliased_command ()
 975{
 976        local word cmdline=$(__git config --get "alias.$1")
 977        for word in $cmdline; do
 978                case "$word" in
 979                \!gitk|gitk)
 980                        echo "gitk"
 981                        return
 982                        ;;
 983                \!*)    : shell command alias ;;
 984                -*)     : option ;;
 985                *=*)    : setting env ;;
 986                git)    : git itself ;;
 987                \(\))   : skip parens of shell function definition ;;
 988                {)      : skip start of shell helper function ;;
 989                :)      : skip null command ;;
 990                \'*)    : skip opening quote after sh -c ;;
 991                *)
 992                        echo "$word"
 993                        return
 994                esac
 995        done
 996}
 997
 998# __git_find_on_cmdline requires 1 argument
 999__git_find_on_cmdline ()
1000{
1001        local word subcommand c=1
1002        while [ $c -lt $cword ]; do
1003                word="${words[c]}"
1004                for subcommand in $1; do
1005                        if [ "$subcommand" = "$word" ]; then
1006                                echo "$subcommand"
1007                                return
1008                        fi
1009                done
1010                ((c++))
1011        done
1012}
1013
1014# Echo the value of an option set on the command line or config
1015#
1016# $1: short option name
1017# $2: long option name including =
1018# $3: list of possible values
1019# $4: config string (optional)
1020#
1021# example:
1022# result="$(__git_get_option_value "-d" "--do-something=" \
1023#     "yes no" "core.doSomething")"
1024#
1025# result is then either empty (no option set) or "yes" or "no"
1026#
1027# __git_get_option_value requires 3 arguments
1028__git_get_option_value ()
1029{
1030        local c short_opt long_opt val
1031        local result= values config_key word
1032
1033        short_opt="$1"
1034        long_opt="$2"
1035        values="$3"
1036        config_key="$4"
1037
1038        ((c = $cword - 1))
1039        while [ $c -ge 0 ]; do
1040                word="${words[c]}"
1041                for val in $values; do
1042                        if [ "$short_opt$val" = "$word" ] ||
1043                           [ "$long_opt$val"  = "$word" ]; then
1044                                result="$val"
1045                                break 2
1046                        fi
1047                done
1048                ((c--))
1049        done
1050
1051        if [ -n "$config_key" ] && [ -z "$result" ]; then
1052                result="$(__git config "$config_key")"
1053        fi
1054
1055        echo "$result"
1056}
1057
1058__git_has_doubledash ()
1059{
1060        local c=1
1061        while [ $c -lt $cword ]; do
1062                if [ "--" = "${words[c]}" ]; then
1063                        return 0
1064                fi
1065                ((c++))
1066        done
1067        return 1
1068}
1069
1070# Try to count non option arguments passed on the command line for the
1071# specified git command.
1072# When options are used, it is necessary to use the special -- option to
1073# tell the implementation were non option arguments begin.
1074# XXX this can not be improved, since options can appear everywhere, as
1075# an example:
1076#       git mv x -n y
1077#
1078# __git_count_arguments requires 1 argument: the git command executed.
1079__git_count_arguments ()
1080{
1081        local word i c=0
1082
1083        # Skip "git" (first argument)
1084        for ((i=1; i < ${#words[@]}; i++)); do
1085                word="${words[i]}"
1086
1087                case "$word" in
1088                        --)
1089                                # Good; we can assume that the following are only non
1090                                # option arguments.
1091                                ((c = 0))
1092                                ;;
1093                        "$1")
1094                                # Skip the specified git command and discard git
1095                                # main options
1096                                ((c = 0))
1097                                ;;
1098                        ?*)
1099                                ((c++))
1100                                ;;
1101                esac
1102        done
1103
1104        printf "%d" $c
1105}
1106
1107__git_whitespacelist="nowarn warn error error-all fix"
1108__git_am_inprogress_options="--skip --continue --resolved --abort"
1109
1110_git_am ()
1111{
1112        __git_find_repo_path
1113        if [ -d "$__git_repo_path"/rebase-apply ]; then
1114                __gitcomp "$__git_am_inprogress_options"
1115                return
1116        fi
1117        case "$cur" in
1118        --whitespace=*)
1119                __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
1120                return
1121                ;;
1122        --*)
1123                __gitcomp_builtin am "--no-utf8" \
1124                        "$__git_am_inprogress_options"
1125                return
1126        esac
1127}
1128
1129_git_apply ()
1130{
1131        case "$cur" in
1132        --whitespace=*)
1133                __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
1134                return
1135                ;;
1136        --*)
1137                __gitcomp_builtin apply
1138                return
1139        esac
1140}
1141
1142_git_add ()
1143{
1144        case "$cur" in
1145        --*)
1146                __gitcomp_builtin add
1147                return
1148        esac
1149
1150        local complete_opt="--others --modified --directory --no-empty-directory"
1151        if test -n "$(__git_find_on_cmdline "-u --update")"
1152        then
1153                complete_opt="--modified"
1154        fi
1155        __git_complete_index_file "$complete_opt"
1156}
1157
1158_git_archive ()
1159{
1160        case "$cur" in
1161        --format=*)
1162                __gitcomp "$(git archive --list)" "" "${cur##--format=}"
1163                return
1164                ;;
1165        --remote=*)
1166                __gitcomp_nl "$(__git_remotes)" "" "${cur##--remote=}"
1167                return
1168                ;;
1169        --*)
1170                __gitcomp "
1171                        --format= --list --verbose
1172                        --prefix= --remote= --exec= --output
1173                        "
1174                return
1175                ;;
1176        esac
1177        __git_complete_file
1178}
1179
1180_git_bisect ()
1181{
1182        __git_has_doubledash && return
1183
1184        local subcommands="start bad good skip reset visualize replay log run"
1185        local subcommand="$(__git_find_on_cmdline "$subcommands")"
1186        if [ -z "$subcommand" ]; then
1187                __git_find_repo_path
1188                if [ -f "$__git_repo_path"/BISECT_START ]; then
1189                        __gitcomp "$subcommands"
1190                else
1191                        __gitcomp "replay start"
1192                fi
1193                return
1194        fi
1195
1196        case "$subcommand" in
1197        bad|good|reset|skip|start)
1198                __git_complete_refs
1199                ;;
1200        *)
1201                ;;
1202        esac
1203}
1204
1205_git_branch ()
1206{
1207        local i c=1 only_local_ref="n" has_r="n"
1208
1209        while [ $c -lt $cword ]; do
1210                i="${words[c]}"
1211                case "$i" in
1212                -d|--delete|-m|--move)  only_local_ref="y" ;;
1213                -r|--remotes)           has_r="y" ;;
1214                esac
1215                ((c++))
1216        done
1217
1218        case "$cur" in
1219        --set-upstream-to=*)
1220                __git_complete_refs --cur="${cur##--set-upstream-to=}"
1221                ;;
1222        --*)
1223                __gitcomp_builtin branch "--no-color --no-abbrev
1224                        --no-track --no-column
1225                        "
1226                ;;
1227        *)
1228                if [ $only_local_ref = "y" -a $has_r = "n" ]; then
1229                        __gitcomp_direct "$(__git_heads "" "$cur" " ")"
1230                else
1231                        __git_complete_refs
1232                fi
1233                ;;
1234        esac
1235}
1236
1237_git_bundle ()
1238{
1239        local cmd="${words[2]}"
1240        case "$cword" in
1241        2)
1242                __gitcomp "create list-heads verify unbundle"
1243                ;;
1244        3)
1245                # looking for a file
1246                ;;
1247        *)
1248                case "$cmd" in
1249                        create)
1250                                __git_complete_revlist
1251                        ;;
1252                esac
1253                ;;
1254        esac
1255}
1256
1257_git_checkout ()
1258{
1259        __git_has_doubledash && return
1260
1261        case "$cur" in
1262        --conflict=*)
1263                __gitcomp "diff3 merge" "" "${cur##--conflict=}"
1264                ;;
1265        --*)
1266                __gitcomp_builtin checkout "--no-track --no-recurse-submodules"
1267                ;;
1268        *)
1269                # check if --track, --no-track, or --no-guess was specified
1270                # if so, disable DWIM mode
1271                local flags="--track --no-track --no-guess" track_opt="--track"
1272                if [ "$GIT_COMPLETION_CHECKOUT_NO_GUESS" = "1" ] ||
1273                   [ -n "$(__git_find_on_cmdline "$flags")" ]; then
1274                        track_opt=''
1275                fi
1276                __git_complete_refs $track_opt
1277                ;;
1278        esac
1279}
1280
1281_git_cherry ()
1282{
1283        __git_complete_refs
1284}
1285
1286__git_cherry_pick_inprogress_options="--continue --quit --abort"
1287
1288_git_cherry_pick ()
1289{
1290        __git_find_repo_path
1291        if [ -f "$__git_repo_path"/CHERRY_PICK_HEAD ]; then
1292                __gitcomp "$__git_cherry_pick_inprogress_options"
1293                return
1294        fi
1295        case "$cur" in
1296        --*)
1297                __gitcomp_builtin cherry-pick "" \
1298                        "$__git_cherry_pick_inprogress_options"
1299                ;;
1300        *)
1301                __git_complete_refs
1302                ;;
1303        esac
1304}
1305
1306_git_clean ()
1307{
1308        case "$cur" in
1309        --*)
1310                __gitcomp_builtin clean
1311                return
1312                ;;
1313        esac
1314
1315        # XXX should we check for -x option ?
1316        __git_complete_index_file "--others --directory"
1317}
1318
1319_git_clone ()
1320{
1321        case "$cur" in
1322        --*)
1323                __gitcomp_builtin clone "--no-single-branch"
1324                return
1325                ;;
1326        esac
1327}
1328
1329__git_untracked_file_modes="all no normal"
1330
1331_git_commit ()
1332{
1333        case "$prev" in
1334        -c|-C)
1335                __git_complete_refs
1336                return
1337                ;;
1338        esac
1339
1340        case "$cur" in
1341        --cleanup=*)
1342                __gitcomp "default scissors strip verbatim whitespace
1343                        " "" "${cur##--cleanup=}"
1344                return
1345                ;;
1346        --reuse-message=*|--reedit-message=*|\
1347        --fixup=*|--squash=*)
1348                __git_complete_refs --cur="${cur#*=}"
1349                return
1350                ;;
1351        --untracked-files=*)
1352                __gitcomp "$__git_untracked_file_modes" "" "${cur##--untracked-files=}"
1353                return
1354                ;;
1355        --*)
1356                __gitcomp_builtin commit "--no-edit --verify"
1357                return
1358        esac
1359
1360        if __git rev-parse --verify --quiet HEAD >/dev/null; then
1361                __git_complete_index_file "--committable"
1362        else
1363                # This is the first commit
1364                __git_complete_index_file "--cached"
1365        fi
1366}
1367
1368_git_describe ()
1369{
1370        case "$cur" in
1371        --*)
1372                __gitcomp_builtin describe
1373                return
1374        esac
1375        __git_complete_refs
1376}
1377
1378__git_diff_algorithms="myers minimal patience histogram"
1379
1380__git_diff_submodule_formats="diff log short"
1381
1382__git_diff_common_options="--stat --numstat --shortstat --summary
1383                        --patch-with-stat --name-only --name-status --color
1384                        --no-color --color-words --no-renames --check
1385                        --full-index --binary --abbrev --diff-filter=
1386                        --find-copies-harder --ignore-cr-at-eol
1387                        --text --ignore-space-at-eol --ignore-space-change
1388                        --ignore-all-space --ignore-blank-lines --exit-code
1389                        --quiet --ext-diff --no-ext-diff
1390                        --no-prefix --src-prefix= --dst-prefix=
1391                        --inter-hunk-context=
1392                        --patience --histogram --minimal
1393                        --raw --word-diff --word-diff-regex=
1394                        --dirstat --dirstat= --dirstat-by-file
1395                        --dirstat-by-file= --cumulative
1396                        --diff-algorithm=
1397                        --submodule --submodule= --ignore-submodules
1398"
1399
1400_git_diff ()
1401{
1402        __git_has_doubledash && return
1403
1404        case "$cur" in
1405        --diff-algorithm=*)
1406                __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}"
1407                return
1408                ;;
1409        --submodule=*)
1410                __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}"
1411                return
1412                ;;
1413        --*)
1414                __gitcomp "--cached --staged --pickaxe-all --pickaxe-regex
1415                        --base --ours --theirs --no-index
1416                        $__git_diff_common_options
1417                        "
1418                return
1419                ;;
1420        esac
1421        __git_complete_revlist_file
1422}
1423
1424__git_mergetools_common="diffuse diffmerge ecmerge emerge kdiff3 meld opendiff
1425                        tkdiff vimdiff gvimdiff xxdiff araxis p4merge bc codecompare
1426"
1427
1428_git_difftool ()
1429{
1430        __git_has_doubledash && return
1431
1432        case "$cur" in
1433        --tool=*)
1434                __gitcomp "$__git_mergetools_common kompare" "" "${cur##--tool=}"
1435                return
1436                ;;
1437        --*)
1438                __gitcomp_builtin difftool "$__git_diff_common_options
1439                                        --base --cached --ours --theirs
1440                                        --pickaxe-all --pickaxe-regex
1441                                        --relative --staged
1442                                        "
1443                return
1444                ;;
1445        esac
1446        __git_complete_revlist_file
1447}
1448
1449__git_fetch_recurse_submodules="yes on-demand no"
1450
1451_git_fetch ()
1452{
1453        case "$cur" in
1454        --recurse-submodules=*)
1455                __gitcomp "$__git_fetch_recurse_submodules" "" "${cur##--recurse-submodules=}"
1456                return
1457                ;;
1458        --*)
1459                __gitcomp_builtin fetch "--no-tags"
1460                return
1461                ;;
1462        esac
1463        __git_complete_remote_or_refspec
1464}
1465
1466__git_format_patch_options="
1467        --stdout --attach --no-attach --thread --thread= --no-thread
1468        --numbered --start-number --numbered-files --keep-subject --signoff
1469        --signature --no-signature --in-reply-to= --cc= --full-index --binary
1470        --not --all --cover-letter --no-prefix --src-prefix= --dst-prefix=
1471        --inline --suffix= --ignore-if-in-upstream --subject-prefix=
1472        --output-directory --reroll-count --to= --quiet --notes
1473"
1474
1475_git_format_patch ()
1476{
1477        case "$cur" in
1478        --thread=*)
1479                __gitcomp "
1480                        deep shallow
1481                        " "" "${cur##--thread=}"
1482                return
1483                ;;
1484        --*)
1485                __gitcomp "$__git_format_patch_options"
1486                return
1487                ;;
1488        esac
1489        __git_complete_revlist
1490}
1491
1492_git_fsck ()
1493{
1494        case "$cur" in
1495        --*)
1496                __gitcomp_builtin fsck "--no-reflogs"
1497                return
1498                ;;
1499        esac
1500}
1501
1502_git_gc ()
1503{
1504        case "$cur" in
1505        --*)
1506                __gitcomp_builtin gc
1507                return
1508                ;;
1509        esac
1510}
1511
1512_git_gitk ()
1513{
1514        _gitk
1515}
1516
1517# Lists matching symbol names from a tag (as in ctags) file.
1518# 1: List symbol names matching this word.
1519# 2: The tag file to list symbol names from.
1520# 3: A prefix to be added to each listed symbol name (optional).
1521# 4: A suffix to be appended to each listed symbol name (optional).
1522__git_match_ctag () {
1523        awk -v pfx="${3-}" -v sfx="${4-}" "
1524                /^${1//\//\\/}/ { print pfx \$1 sfx }
1525                " "$2"
1526}
1527
1528# Complete symbol names from a tag file.
1529# Usage: __git_complete_symbol [<option>]...
1530# --tags=<file>: The tag file to list symbol names from instead of the
1531#                default "tags".
1532# --pfx=<prefix>: A prefix to be added to each symbol name.
1533# --cur=<word>: The current symbol name to be completed.  Defaults to
1534#               the current word to be completed.
1535# --sfx=<suffix>: A suffix to be appended to each symbol name instead
1536#                 of the default space.
1537__git_complete_symbol () {
1538        local tags=tags pfx="" cur_="${cur-}" sfx=" "
1539
1540        while test $# != 0; do
1541                case "$1" in
1542                --tags=*)       tags="${1##--tags=}" ;;
1543                --pfx=*)        pfx="${1##--pfx=}" ;;
1544                --cur=*)        cur_="${1##--cur=}" ;;
1545                --sfx=*)        sfx="${1##--sfx=}" ;;
1546                *)              return 1 ;;
1547                esac
1548                shift
1549        done
1550
1551        if test -r "$tags"; then
1552                __gitcomp_direct "$(__git_match_ctag "$cur_" "$tags" "$pfx" "$sfx")"
1553        fi
1554}
1555
1556_git_grep ()
1557{
1558        __git_has_doubledash && return
1559
1560        case "$cur" in
1561        --*)
1562                __gitcomp_builtin grep
1563                return
1564                ;;
1565        esac
1566
1567        case "$cword,$prev" in
1568        2,*|*,-*)
1569                __git_complete_symbol && return
1570                ;;
1571        esac
1572
1573        __git_complete_refs
1574}
1575
1576_git_help ()
1577{
1578        case "$cur" in
1579        --*)
1580                __gitcomp_builtin help
1581                return
1582                ;;
1583        esac
1584        __git_compute_all_commands
1585        __gitcomp "$__git_all_commands $(__git_aliases)
1586                attributes cli core-tutorial cvs-migration
1587                diffcore everyday gitk glossary hooks ignore modules
1588                namespaces repository-layout revisions tutorial tutorial-2
1589                workflows
1590                "
1591}
1592
1593_git_init ()
1594{
1595        case "$cur" in
1596        --shared=*)
1597                __gitcomp "
1598                        false true umask group all world everybody
1599                        " "" "${cur##--shared=}"
1600                return
1601                ;;
1602        --*)
1603                __gitcomp_builtin init
1604                return
1605                ;;
1606        esac
1607}
1608
1609_git_ls_files ()
1610{
1611        case "$cur" in
1612        --*)
1613                __gitcomp_builtin ls-files "--no-empty-directory"
1614                return
1615                ;;
1616        esac
1617
1618        # XXX ignore options like --modified and always suggest all cached
1619        # files.
1620        __git_complete_index_file "--cached"
1621}
1622
1623_git_ls_remote ()
1624{
1625        case "$cur" in
1626        --*)
1627                __gitcomp_builtin ls-remote
1628                return
1629                ;;
1630        esac
1631        __gitcomp_nl "$(__git_remotes)"
1632}
1633
1634_git_ls_tree ()
1635{
1636        __git_complete_file
1637}
1638
1639# Options that go well for log, shortlog and gitk
1640__git_log_common_options="
1641        --not --all
1642        --branches --tags --remotes
1643        --first-parent --merges --no-merges
1644        --max-count=
1645        --max-age= --since= --after=
1646        --min-age= --until= --before=
1647        --min-parents= --max-parents=
1648        --no-min-parents --no-max-parents
1649"
1650# Options that go well for log and gitk (not shortlog)
1651__git_log_gitk_options="
1652        --dense --sparse --full-history
1653        --simplify-merges --simplify-by-decoration
1654        --left-right --notes --no-notes
1655"
1656# Options that go well for log and shortlog (not gitk)
1657__git_log_shortlog_options="
1658        --author= --committer= --grep=
1659        --all-match --invert-grep
1660"
1661
1662__git_log_pretty_formats="oneline short medium full fuller email raw format:"
1663__git_log_date_formats="relative iso8601 rfc2822 short local default raw"
1664
1665_git_log ()
1666{
1667        __git_has_doubledash && return
1668        __git_find_repo_path
1669
1670        local merge=""
1671        if [ -f "$__git_repo_path/MERGE_HEAD" ]; then
1672                merge="--merge"
1673        fi
1674        case "$prev,$cur" in
1675        -L,:*:*)
1676                return  # fall back to Bash filename completion
1677                ;;
1678        -L,:*)
1679                __git_complete_symbol --cur="${cur#:}" --sfx=":"
1680                return
1681                ;;
1682        -G,*|-S,*)
1683                __git_complete_symbol
1684                return
1685                ;;
1686        esac
1687        case "$cur" in
1688        --pretty=*|--format=*)
1689                __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
1690                        " "" "${cur#*=}"
1691                return
1692                ;;
1693        --date=*)
1694                __gitcomp "$__git_log_date_formats" "" "${cur##--date=}"
1695                return
1696                ;;
1697        --decorate=*)
1698                __gitcomp "full short no" "" "${cur##--decorate=}"
1699                return
1700                ;;
1701        --diff-algorithm=*)
1702                __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}"
1703                return
1704                ;;
1705        --submodule=*)
1706                __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}"
1707                return
1708                ;;
1709        --*)
1710                __gitcomp "
1711                        $__git_log_common_options
1712                        $__git_log_shortlog_options
1713                        $__git_log_gitk_options
1714                        --root --topo-order --date-order --reverse
1715                        --follow --full-diff
1716                        --abbrev-commit --abbrev=
1717                        --relative-date --date=
1718                        --pretty= --format= --oneline
1719                        --show-signature
1720                        --cherry-mark
1721                        --cherry-pick
1722                        --graph
1723                        --decorate --decorate=
1724                        --walk-reflogs
1725                        --parents --children
1726                        $merge
1727                        $__git_diff_common_options
1728                        --pickaxe-all --pickaxe-regex
1729                        "
1730                return
1731                ;;
1732        -L:*:*)
1733                return  # fall back to Bash filename completion
1734                ;;
1735        -L:*)
1736                __git_complete_symbol --cur="${cur#-L:}" --sfx=":"
1737                return
1738                ;;
1739        -G*)
1740                __git_complete_symbol --pfx="-G" --cur="${cur#-G}"
1741                return
1742                ;;
1743        -S*)
1744                __git_complete_symbol --pfx="-S" --cur="${cur#-S}"
1745                return
1746                ;;
1747        esac
1748        __git_complete_revlist
1749}
1750
1751_git_merge ()
1752{
1753        __git_complete_strategy && return
1754
1755        case "$cur" in
1756        --*)
1757                __gitcomp_builtin merge "--rerere-autoupdate
1758                                --no-rerere-autoupdate
1759                                --no-commit --no-edit --no-ff
1760                                --no-log --no-progress
1761                                --no-squash --no-stat
1762                                --no-verify-signatures
1763                                "
1764                return
1765        esac
1766        __git_complete_refs
1767}
1768
1769_git_mergetool ()
1770{
1771        case "$cur" in
1772        --tool=*)
1773                __gitcomp "$__git_mergetools_common tortoisemerge" "" "${cur##--tool=}"
1774                return
1775                ;;
1776        --*)
1777                __gitcomp "--tool= --prompt --no-prompt"
1778                return
1779                ;;
1780        esac
1781}
1782
1783_git_merge_base ()
1784{
1785        case "$cur" in
1786        --*)
1787                __gitcomp_builtin merge-base
1788                return
1789                ;;
1790        esac
1791        __git_complete_refs
1792}
1793
1794_git_mv ()
1795{
1796        case "$cur" in
1797        --*)
1798                __gitcomp_builtin mv
1799                return
1800                ;;
1801        esac
1802
1803        if [ $(__git_count_arguments "mv") -gt 0 ]; then
1804                # We need to show both cached and untracked files (including
1805                # empty directories) since this may not be the last argument.
1806                __git_complete_index_file "--cached --others --directory"
1807        else
1808                __git_complete_index_file "--cached"
1809        fi
1810}
1811
1812_git_name_rev ()
1813{
1814        __gitcomp_builtin name-rev
1815}
1816
1817_git_notes ()
1818{
1819        local subcommands='add append copy edit list prune remove show'
1820        local subcommand="$(__git_find_on_cmdline "$subcommands")"
1821
1822        case "$subcommand,$cur" in
1823        ,--*)
1824                __gitcomp_builtin notes
1825                ;;
1826        ,*)
1827                case "$prev" in
1828                --ref)
1829                        __git_complete_refs
1830                        ;;
1831                *)
1832                        __gitcomp "$subcommands --ref"
1833                        ;;
1834                esac
1835                ;;
1836        add,--reuse-message=*|append,--reuse-message=*|\
1837        add,--reedit-message=*|append,--reedit-message=*)
1838                __git_complete_refs --cur="${cur#*=}"
1839                ;;
1840        add,--*)
1841                __gitcomp_builtin notes_add
1842                ;;
1843        append,--*)
1844                __gitcomp_builtin notes_append
1845                ;;
1846        copy,--*)
1847                __gitcomp_builtin notes_copy
1848                ;;
1849        prune,--*)
1850                __gitcomp_builtin notes_prune
1851                ;;
1852        prune,*)
1853                ;;
1854        *)
1855                case "$prev" in
1856                -m|-F)
1857                        ;;
1858                *)
1859                        __git_complete_refs
1860                        ;;
1861                esac
1862                ;;
1863        esac
1864}
1865
1866_git_pull ()
1867{
1868        __git_complete_strategy && return
1869
1870        case "$cur" in
1871        --recurse-submodules=*)
1872                __gitcomp "$__git_fetch_recurse_submodules" "" "${cur##--recurse-submodules=}"
1873                return
1874                ;;
1875        --*)
1876                __gitcomp_builtin pull "--no-autostash --no-commit --no-edit
1877                                        --no-ff --no-log --no-progress --no-rebase
1878                                        --no-squash --no-stat --no-tags
1879                                        --no-verify-signatures"
1880
1881                return
1882                ;;
1883        esac
1884        __git_complete_remote_or_refspec
1885}
1886
1887__git_push_recurse_submodules="check on-demand only"
1888
1889__git_complete_force_with_lease ()
1890{
1891        local cur_=$1
1892
1893        case "$cur_" in
1894        --*=)
1895                ;;
1896        *:*)
1897                __git_complete_refs --cur="${cur_#*:}"
1898                ;;
1899        *)
1900                __git_complete_refs --cur="$cur_"
1901                ;;
1902        esac
1903}
1904
1905_git_push ()
1906{
1907        case "$prev" in
1908        --repo)
1909                __gitcomp_nl "$(__git_remotes)"
1910                return
1911                ;;
1912        --recurse-submodules)
1913                __gitcomp "$__git_push_recurse_submodules"
1914                return
1915                ;;
1916        esac
1917        case "$cur" in
1918        --repo=*)
1919                __gitcomp_nl "$(__git_remotes)" "" "${cur##--repo=}"
1920                return
1921                ;;
1922        --recurse-submodules=*)
1923                __gitcomp "$__git_push_recurse_submodules" "" "${cur##--recurse-submodules=}"
1924                return
1925                ;;
1926        --force-with-lease=*)
1927                __git_complete_force_with_lease "${cur##--force-with-lease=}"
1928                return
1929                ;;
1930        --*)
1931                __gitcomp_builtin push
1932                return
1933                ;;
1934        esac
1935        __git_complete_remote_or_refspec
1936}
1937
1938_git_rebase ()
1939{
1940        __git_find_repo_path
1941        if [ -f "$__git_repo_path"/rebase-merge/interactive ]; then
1942                __gitcomp "--continue --skip --abort --quit --edit-todo"
1943                return
1944        elif [ -d "$__git_repo_path"/rebase-apply ] || \
1945             [ -d "$__git_repo_path"/rebase-merge ]; then
1946                __gitcomp "--continue --skip --abort --quit"
1947                return
1948        fi
1949        __git_complete_strategy && return
1950        case "$cur" in
1951        --whitespace=*)
1952                __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
1953                return
1954                ;;
1955        --*)
1956                __gitcomp "
1957                        --onto --merge --strategy --interactive
1958                        --preserve-merges --stat --no-stat
1959                        --committer-date-is-author-date --ignore-date
1960                        --ignore-whitespace --whitespace=
1961                        --autosquash --no-autosquash
1962                        --fork-point --no-fork-point
1963                        --autostash --no-autostash
1964                        --verify --no-verify
1965                        --keep-empty --root --force-rebase --no-ff
1966                        --exec
1967                        "
1968
1969                return
1970        esac
1971        __git_complete_refs
1972}
1973
1974_git_reflog ()
1975{
1976        local subcommands="show delete expire"
1977        local subcommand="$(__git_find_on_cmdline "$subcommands")"
1978
1979        if [ -z "$subcommand" ]; then
1980                __gitcomp "$subcommands"
1981        else
1982                __git_complete_refs
1983        fi
1984}
1985
1986__git_send_email_confirm_options="always never auto cc compose"
1987__git_send_email_suppresscc_options="author self cc bodycc sob cccmd body all"
1988
1989_git_send_email ()
1990{
1991        case "$prev" in
1992        --to|--cc|--bcc|--from)
1993                __gitcomp "$(__git send-email --dump-aliases)"
1994                return
1995                ;;
1996        esac
1997
1998        case "$cur" in
1999        --confirm=*)
2000                __gitcomp "
2001                        $__git_send_email_confirm_options
2002                        " "" "${cur##--confirm=}"
2003                return
2004                ;;
2005        --suppress-cc=*)
2006                __gitcomp "
2007                        $__git_send_email_suppresscc_options
2008                        " "" "${cur##--suppress-cc=}"
2009
2010                return
2011                ;;
2012        --smtp-encryption=*)
2013                __gitcomp "ssl tls" "" "${cur##--smtp-encryption=}"
2014                return
2015                ;;
2016        --thread=*)
2017                __gitcomp "
2018                        deep shallow
2019                        " "" "${cur##--thread=}"
2020                return
2021                ;;
2022        --to=*|--cc=*|--bcc=*|--from=*)
2023                __gitcomp "$(__git send-email --dump-aliases)" "" "${cur#--*=}"
2024                return
2025                ;;
2026        --*)
2027                __gitcomp "--annotate --bcc --cc --cc-cmd --chain-reply-to
2028                        --compose --confirm= --dry-run --envelope-sender
2029                        --from --identity
2030                        --in-reply-to --no-chain-reply-to --no-signed-off-by-cc
2031                        --no-suppress-from --no-thread --quiet
2032                        --signed-off-by-cc --smtp-pass --smtp-server
2033                        --smtp-server-port --smtp-encryption= --smtp-user
2034                        --subject --suppress-cc= --suppress-from --thread --to
2035                        --validate --no-validate
2036                        $__git_format_patch_options"
2037                return
2038                ;;
2039        esac
2040        __git_complete_revlist
2041}
2042
2043_git_stage ()
2044{
2045        _git_add
2046}
2047
2048_git_status ()
2049{
2050        local complete_opt
2051        local untracked_state
2052
2053        case "$cur" in
2054        --ignore-submodules=*)
2055                __gitcomp "none untracked dirty all" "" "${cur##--ignore-submodules=}"
2056                return
2057                ;;
2058        --untracked-files=*)
2059                __gitcomp "$__git_untracked_file_modes" "" "${cur##--untracked-files=}"
2060                return
2061                ;;
2062        --column=*)
2063                __gitcomp "
2064                        always never auto column row plain dense nodense
2065                        " "" "${cur##--column=}"
2066                return
2067                ;;
2068        --*)
2069                __gitcomp "
2070                        --short --branch --porcelain --long --verbose
2071                        --untracked-files= --ignore-submodules= --ignored
2072                        --column= --no-column
2073                        "
2074                return
2075                ;;
2076        esac
2077
2078        untracked_state="$(__git_get_option_value "-u" "--untracked-files=" \
2079                "$__git_untracked_file_modes" "status.showUntrackedFiles")"
2080
2081        case "$untracked_state" in
2082        no)
2083                # --ignored option does not matter
2084                complete_opt=
2085                ;;
2086        all|normal|*)
2087                complete_opt="--cached --directory --no-empty-directory --others"
2088
2089                if [ -n "$(__git_find_on_cmdline "--ignored")" ]; then
2090                        complete_opt="$complete_opt --ignored --exclude=*"
2091                fi
2092                ;;
2093        esac
2094
2095        __git_complete_index_file "$complete_opt"
2096}
2097
2098__git_config_get_set_variables ()
2099{
2100        local prevword word config_file= c=$cword
2101        while [ $c -gt 1 ]; do
2102                word="${words[c]}"
2103                case "$word" in
2104                --system|--global|--local|--file=*)
2105                        config_file="$word"
2106                        break
2107                        ;;
2108                -f|--file)
2109                        config_file="$word $prevword"
2110                        break
2111                        ;;
2112                esac
2113                prevword=$word
2114                c=$((--c))
2115        done
2116
2117        __git config $config_file --name-only --list
2118}
2119
2120_git_config ()
2121{
2122        case "$prev" in
2123        branch.*.remote|branch.*.pushremote)
2124                __gitcomp_nl "$(__git_remotes)"
2125                return
2126                ;;
2127        branch.*.merge)
2128                __git_complete_refs
2129                return
2130                ;;
2131        branch.*.rebase)
2132                __gitcomp "false true preserve interactive"
2133                return
2134                ;;
2135        remote.pushdefault)
2136                __gitcomp_nl "$(__git_remotes)"
2137                return
2138                ;;
2139        remote.*.fetch)
2140                local remote="${prev#remote.}"
2141                remote="${remote%.fetch}"
2142                if [ -z "$cur" ]; then
2143                        __gitcomp_nl "refs/heads/" "" "" ""
2144                        return
2145                fi
2146                __gitcomp_nl "$(__git_refs_remotes "$remote")"
2147                return
2148                ;;
2149        remote.*.push)
2150                local remote="${prev#remote.}"
2151                remote="${remote%.push}"
2152                __gitcomp_nl "$(__git for-each-ref \
2153                        --format='%(refname):%(refname)' refs/heads)"
2154                return
2155                ;;
2156        pull.twohead|pull.octopus)
2157                __git_compute_merge_strategies
2158                __gitcomp "$__git_merge_strategies"
2159                return
2160                ;;
2161        color.branch|color.diff|color.interactive|\
2162        color.showbranch|color.status|color.ui)
2163                __gitcomp "always never auto"
2164                return
2165                ;;
2166        color.pager)
2167                __gitcomp "false true"
2168                return
2169                ;;
2170        color.*.*)
2171                __gitcomp "
2172                        normal black red green yellow blue magenta cyan white
2173                        bold dim ul blink reverse
2174                        "
2175                return
2176                ;;
2177        diff.submodule)
2178                __gitcomp "log short"
2179                return
2180                ;;
2181        help.format)
2182                __gitcomp "man info web html"
2183                return
2184                ;;
2185        log.date)
2186                __gitcomp "$__git_log_date_formats"
2187                return
2188                ;;
2189        sendemail.aliasesfiletype)
2190                __gitcomp "mutt mailrc pine elm gnus"
2191                return
2192                ;;
2193        sendemail.confirm)
2194                __gitcomp "$__git_send_email_confirm_options"
2195                return
2196                ;;
2197        sendemail.suppresscc)
2198                __gitcomp "$__git_send_email_suppresscc_options"
2199                return
2200                ;;
2201        sendemail.transferencoding)
2202                __gitcomp "7bit 8bit quoted-printable base64"
2203                return
2204                ;;
2205        --get|--get-all|--unset|--unset-all)
2206                __gitcomp_nl "$(__git_config_get_set_variables)"
2207                return
2208                ;;
2209        *.*)
2210                return
2211                ;;
2212        esac
2213        case "$cur" in
2214        --*)
2215                __gitcomp_builtin config
2216                return
2217                ;;
2218        branch.*.*)
2219                local pfx="${cur%.*}." cur_="${cur##*.}"
2220                __gitcomp "remote pushremote merge mergeoptions rebase" "$pfx" "$cur_"
2221                return
2222                ;;
2223        branch.*)
2224                local pfx="${cur%.*}." cur_="${cur#*.}"
2225                __gitcomp_direct "$(__git_heads "$pfx" "$cur_" ".")"
2226                __gitcomp_nl_append $'autosetupmerge\nautosetuprebase\n' "$pfx" "$cur_"
2227                return
2228                ;;
2229        guitool.*.*)
2230                local pfx="${cur%.*}." cur_="${cur##*.}"
2231                __gitcomp "
2232                        argprompt cmd confirm needsfile noconsole norescan
2233                        prompt revprompt revunmerged title
2234                        " "$pfx" "$cur_"
2235                return
2236                ;;
2237        difftool.*.*)
2238                local pfx="${cur%.*}." cur_="${cur##*.}"
2239                __gitcomp "cmd path" "$pfx" "$cur_"
2240                return
2241                ;;
2242        man.*.*)
2243                local pfx="${cur%.*}." cur_="${cur##*.}"
2244                __gitcomp "cmd path" "$pfx" "$cur_"
2245                return
2246                ;;
2247        mergetool.*.*)
2248                local pfx="${cur%.*}." cur_="${cur##*.}"
2249                __gitcomp "cmd path trustExitCode" "$pfx" "$cur_"
2250                return
2251                ;;
2252        pager.*)
2253                local pfx="${cur%.*}." cur_="${cur#*.}"
2254                __git_compute_all_commands
2255                __gitcomp_nl "$__git_all_commands" "$pfx" "$cur_"
2256                return
2257                ;;
2258        remote.*.*)
2259                local pfx="${cur%.*}." cur_="${cur##*.}"
2260                __gitcomp "
2261                        url proxy fetch push mirror skipDefaultUpdate
2262                        receivepack uploadpack tagopt pushurl
2263                        " "$pfx" "$cur_"
2264                return
2265                ;;
2266        remote.*)
2267                local pfx="${cur%.*}." cur_="${cur#*.}"
2268                __gitcomp_nl "$(__git_remotes)" "$pfx" "$cur_" "."
2269                __gitcomp_nl_append "pushdefault" "$pfx" "$cur_"
2270                return
2271                ;;
2272        url.*.*)
2273                local pfx="${cur%.*}." cur_="${cur##*.}"
2274                __gitcomp "insteadOf pushInsteadOf" "$pfx" "$cur_"
2275                return
2276                ;;
2277        esac
2278        __gitcomp "
2279                add.ignoreErrors
2280                advice.amWorkDir
2281                advice.commitBeforeMerge
2282                advice.detachedHead
2283                advice.implicitIdentity
2284                advice.pushAlreadyExists
2285                advice.pushFetchFirst
2286                advice.pushNeedsForce
2287                advice.pushNonFFCurrent
2288                advice.pushNonFFMatching
2289                advice.pushUpdateRejected
2290                advice.resolveConflict
2291                advice.rmHints
2292                advice.statusHints
2293                advice.statusUoption
2294                advice.ignoredHook
2295                alias.
2296                am.keepcr
2297                am.threeWay
2298                apply.ignorewhitespace
2299                apply.whitespace
2300                branch.autosetupmerge
2301                branch.autosetuprebase
2302                browser.
2303                clean.requireForce
2304                color.branch
2305                color.branch.current
2306                color.branch.local
2307                color.branch.plain
2308                color.branch.remote
2309                color.decorate.HEAD
2310                color.decorate.branch
2311                color.decorate.remoteBranch
2312                color.decorate.stash
2313                color.decorate.tag
2314                color.diff
2315                color.diff.commit
2316                color.diff.frag
2317                color.diff.func
2318                color.diff.meta
2319                color.diff.new
2320                color.diff.old
2321                color.diff.plain
2322                color.diff.whitespace
2323                color.grep
2324                color.grep.context
2325                color.grep.filename
2326                color.grep.function
2327                color.grep.linenumber
2328                color.grep.match
2329                color.grep.selected
2330                color.grep.separator
2331                color.interactive
2332                color.interactive.error
2333                color.interactive.header
2334                color.interactive.help
2335                color.interactive.prompt
2336                color.pager
2337                color.showbranch
2338                color.status
2339                color.status.added
2340                color.status.changed
2341                color.status.header
2342                color.status.localBranch
2343                color.status.nobranch
2344                color.status.remoteBranch
2345                color.status.unmerged
2346                color.status.untracked
2347                color.status.updated
2348                color.ui
2349                commit.cleanup
2350                commit.gpgSign
2351                commit.status
2352                commit.template
2353                commit.verbose
2354                core.abbrev
2355                core.askpass
2356                core.attributesfile
2357                core.autocrlf
2358                core.bare
2359                core.bigFileThreshold
2360                core.checkStat
2361                core.commentChar
2362                core.compression
2363                core.createObject
2364                core.deltaBaseCacheLimit
2365                core.editor
2366                core.eol
2367                core.excludesfile
2368                core.fileMode
2369                core.fsyncobjectfiles
2370                core.gitProxy
2371                core.hideDotFiles
2372                core.hooksPath
2373                core.ignoreStat
2374                core.ignorecase
2375                core.logAllRefUpdates
2376                core.loosecompression
2377                core.notesRef
2378                core.packedGitLimit
2379                core.packedGitWindowSize
2380                core.packedRefsTimeout
2381                core.pager
2382                core.precomposeUnicode
2383                core.preferSymlinkRefs
2384                core.preloadindex
2385                core.protectHFS
2386                core.protectNTFS
2387                core.quotepath
2388                core.repositoryFormatVersion
2389                core.safecrlf
2390                core.sharedRepository
2391                core.sparseCheckout
2392                core.splitIndex
2393                core.sshCommand
2394                core.symlinks
2395                core.trustctime
2396                core.untrackedCache
2397                core.warnAmbiguousRefs
2398                core.whitespace
2399                core.worktree
2400                credential.helper
2401                credential.useHttpPath
2402                credential.username
2403                credentialCache.ignoreSIGHUP
2404                diff.autorefreshindex
2405                diff.external
2406                diff.ignoreSubmodules
2407                diff.mnemonicprefix
2408                diff.noprefix
2409                diff.renameLimit
2410                diff.renames
2411                diff.statGraphWidth
2412                diff.submodule
2413                diff.suppressBlankEmpty
2414                diff.tool
2415                diff.wordRegex
2416                diff.algorithm
2417                difftool.
2418                difftool.prompt
2419                fetch.recurseSubmodules
2420                fetch.unpackLimit
2421                format.attach
2422                format.cc
2423                format.coverLetter
2424                format.from
2425                format.headers
2426                format.numbered
2427                format.pretty
2428                format.signature
2429                format.signoff
2430                format.subjectprefix
2431                format.suffix
2432                format.thread
2433                format.to
2434                gc.
2435                gc.aggressiveDepth
2436                gc.aggressiveWindow
2437                gc.auto
2438                gc.autoDetach
2439                gc.autopacklimit
2440                gc.logExpiry
2441                gc.packrefs
2442                gc.pruneexpire
2443                gc.reflogexpire
2444                gc.reflogexpireunreachable
2445                gc.rerereresolved
2446                gc.rerereunresolved
2447                gc.worktreePruneExpire
2448                gitcvs.allbinary
2449                gitcvs.commitmsgannotation
2450                gitcvs.dbTableNamePrefix
2451                gitcvs.dbdriver
2452                gitcvs.dbname
2453                gitcvs.dbpass
2454                gitcvs.dbuser
2455                gitcvs.enabled
2456                gitcvs.logfile
2457                gitcvs.usecrlfattr
2458                guitool.
2459                gui.blamehistoryctx
2460                gui.commitmsgwidth
2461                gui.copyblamethreshold
2462                gui.diffcontext
2463                gui.encoding
2464                gui.fastcopyblame
2465                gui.matchtrackingbranch
2466                gui.newbranchtemplate
2467                gui.pruneduringfetch
2468                gui.spellingdictionary
2469                gui.trustmtime
2470                help.autocorrect
2471                help.browser
2472                help.format
2473                http.lowSpeedLimit
2474                http.lowSpeedTime
2475                http.maxRequests
2476                http.minSessions
2477                http.noEPSV
2478                http.postBuffer
2479                http.proxy
2480                http.sslCipherList
2481                http.sslVersion
2482                http.sslCAInfo
2483                http.sslCAPath
2484                http.sslCert
2485                http.sslCertPasswordProtected
2486                http.sslKey
2487                http.sslVerify
2488                http.useragent
2489                i18n.commitEncoding
2490                i18n.logOutputEncoding
2491                imap.authMethod
2492                imap.folder
2493                imap.host
2494                imap.pass
2495                imap.port
2496                imap.preformattedHTML
2497                imap.sslverify
2498                imap.tunnel
2499                imap.user
2500                init.templatedir
2501                instaweb.browser
2502                instaweb.httpd
2503                instaweb.local
2504                instaweb.modulepath
2505                instaweb.port
2506                interactive.singlekey
2507                log.date
2508                log.decorate
2509                log.showroot
2510                mailmap.file
2511                man.
2512                man.viewer
2513                merge.
2514                merge.conflictstyle
2515                merge.log
2516                merge.renameLimit
2517                merge.renormalize
2518                merge.stat
2519                merge.tool
2520                merge.verbosity
2521                mergetool.
2522                mergetool.keepBackup
2523                mergetool.keepTemporaries
2524                mergetool.prompt
2525                notes.displayRef
2526                notes.rewrite.
2527                notes.rewrite.amend
2528                notes.rewrite.rebase
2529                notes.rewriteMode
2530                notes.rewriteRef
2531                pack.compression
2532                pack.deltaCacheLimit
2533                pack.deltaCacheSize
2534                pack.depth
2535                pack.indexVersion
2536                pack.packSizeLimit
2537                pack.threads
2538                pack.window
2539                pack.windowMemory
2540                pager.
2541                pretty.
2542                pull.octopus
2543                pull.twohead
2544                push.default
2545                push.followTags
2546                rebase.autosquash
2547                rebase.stat
2548                receive.autogc
2549                receive.denyCurrentBranch
2550                receive.denyDeleteCurrent
2551                receive.denyDeletes
2552                receive.denyNonFastForwards
2553                receive.fsckObjects
2554                receive.unpackLimit
2555                receive.updateserverinfo
2556                remote.pushdefault
2557                remotes.
2558                repack.usedeltabaseoffset
2559                rerere.autoupdate
2560                rerere.enabled
2561                sendemail.
2562                sendemail.aliasesfile
2563                sendemail.aliasfiletype
2564                sendemail.bcc
2565                sendemail.cc
2566                sendemail.cccmd
2567                sendemail.chainreplyto
2568                sendemail.confirm
2569                sendemail.envelopesender
2570                sendemail.from
2571                sendemail.identity
2572                sendemail.multiedit
2573                sendemail.signedoffbycc
2574                sendemail.smtpdomain
2575                sendemail.smtpencryption
2576                sendemail.smtppass
2577                sendemail.smtpserver
2578                sendemail.smtpserveroption
2579                sendemail.smtpserverport
2580                sendemail.smtpuser
2581                sendemail.suppresscc
2582                sendemail.suppressfrom
2583                sendemail.thread
2584                sendemail.to
2585                sendemail.tocmd
2586                sendemail.validate
2587                sendemail.smtpbatchsize
2588                sendemail.smtprelogindelay
2589                showbranch.default
2590                status.relativePaths
2591                status.showUntrackedFiles
2592                status.submodulesummary
2593                submodule.
2594                tar.umask
2595                transfer.unpackLimit
2596                url.
2597                user.email
2598                user.name
2599                user.signingkey
2600                web.browser
2601                branch. remote.
2602        "
2603}
2604
2605_git_remote ()
2606{
2607        local subcommands="
2608                add rename remove set-head set-branches
2609                get-url set-url show prune update
2610                "
2611        local subcommand="$(__git_find_on_cmdline "$subcommands")"
2612        if [ -z "$subcommand" ]; then
2613                case "$cur" in
2614                --*)
2615                        __gitcomp_builtin remote
2616                        ;;
2617                *)
2618                        __gitcomp "$subcommands"
2619                        ;;
2620                esac
2621                return
2622        fi
2623
2624        case "$subcommand,$cur" in
2625        add,--*)
2626                __gitcomp_builtin remote_add "--no-tags"
2627                ;;
2628        add,*)
2629                ;;
2630        set-head,--*)
2631                __gitcomp_builtin remote_set-head
2632                ;;
2633        set-branches,--*)
2634                __gitcomp_builtin remote_set-branches
2635                ;;
2636        set-head,*|set-branches,*)
2637                __git_complete_remote_or_refspec
2638                ;;
2639        update,--*)
2640                __gitcomp_builtin remote_update
2641                ;;
2642        update,*)
2643                __gitcomp "$(__git_get_config_variables "remotes")"
2644                ;;
2645        set-url,--*)
2646                __gitcomp_builtin remote_set-url
2647                ;;
2648        get-url,--*)
2649                __gitcomp_builtin remote_get-url
2650                ;;
2651        prune,--*)
2652                __gitcomp_builtin remote_prune
2653                ;;
2654        *)
2655                __gitcomp_nl "$(__git_remotes)"
2656                ;;
2657        esac
2658}
2659
2660_git_replace ()
2661{
2662        case "$cur" in
2663        --*)
2664                __gitcomp_builtin replace
2665                return
2666                ;;
2667        esac
2668        __git_complete_refs
2669}
2670
2671_git_rerere ()
2672{
2673        local subcommands="clear forget diff remaining status gc"
2674        local subcommand="$(__git_find_on_cmdline "$subcommands")"
2675        if test -z "$subcommand"
2676        then
2677                __gitcomp "$subcommands"
2678                return
2679        fi
2680}
2681
2682_git_reset ()
2683{
2684        __git_has_doubledash && return
2685
2686        case "$cur" in
2687        --*)
2688                __gitcomp_builtin reset
2689                return
2690                ;;
2691        esac
2692        __git_complete_refs
2693}
2694
2695_git_revert ()
2696{
2697        __git_find_repo_path
2698        if [ -f "$__git_repo_path"/REVERT_HEAD ]; then
2699                __gitcomp "--continue --quit --abort"
2700                return
2701        fi
2702        case "$cur" in
2703        --*)
2704                __gitcomp "
2705                        --edit --mainline --no-edit --no-commit --signoff
2706                        --strategy= --strategy-option=
2707                        "
2708                return
2709                ;;
2710        esac
2711        __git_complete_refs
2712}
2713
2714_git_rm ()
2715{
2716        case "$cur" in
2717        --*)
2718                __gitcomp "--cached --dry-run --ignore-unmatch --quiet"
2719                return
2720                ;;
2721        esac
2722
2723        __git_complete_index_file "--cached"
2724}
2725
2726_git_shortlog ()
2727{
2728        __git_has_doubledash && return
2729
2730        case "$cur" in
2731        --*)
2732                __gitcomp "
2733                        $__git_log_common_options
2734                        $__git_log_shortlog_options
2735                        --numbered --summary --email
2736                        "
2737                return
2738                ;;
2739        esac
2740        __git_complete_revlist
2741}
2742
2743_git_show ()
2744{
2745        __git_has_doubledash && return
2746
2747        case "$cur" in
2748        --pretty=*|--format=*)
2749                __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
2750                        " "" "${cur#*=}"
2751                return
2752                ;;
2753        --diff-algorithm=*)
2754                __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}"
2755                return
2756                ;;
2757        --submodule=*)
2758                __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}"
2759                return
2760                ;;
2761        --*)
2762                __gitcomp "--pretty= --format= --abbrev-commit --oneline
2763                        --show-signature
2764                        $__git_diff_common_options
2765                        "
2766                return
2767                ;;
2768        esac
2769        __git_complete_revlist_file
2770}
2771
2772_git_show_branch ()
2773{
2774        case "$cur" in
2775        --*)
2776                __gitcomp "
2777                        --all --remotes --topo-order --date-order --current --more=
2778                        --list --independent --merge-base --no-name
2779                        --color --no-color
2780                        --sha1-name --sparse --topics --reflog
2781                        "
2782                return
2783                ;;
2784        esac
2785        __git_complete_revlist
2786}
2787
2788_git_stash ()
2789{
2790        local save_opts='--all --keep-index --no-keep-index --quiet --patch --include-untracked'
2791        local subcommands='push save list show apply clear drop pop create branch'
2792        local subcommand="$(__git_find_on_cmdline "$subcommands")"
2793        if [ -z "$subcommand" ]; then
2794                case "$cur" in
2795                --*)
2796                        __gitcomp "$save_opts"
2797                        ;;
2798                *)
2799                        if [ -z "$(__git_find_on_cmdline "$save_opts")" ]; then
2800                                __gitcomp "$subcommands"
2801                        fi
2802                        ;;
2803                esac
2804        else
2805                case "$subcommand,$cur" in
2806                push,--*)
2807                        __gitcomp "$save_opts --message"
2808                        ;;
2809                save,--*)
2810                        __gitcomp "$save_opts"
2811                        ;;
2812                apply,--*|pop,--*)
2813                        __gitcomp "--index --quiet"
2814                        ;;
2815                drop,--*)
2816                        __gitcomp "--quiet"
2817                        ;;
2818                show,--*|branch,--*)
2819                        ;;
2820                branch,*)
2821                        if [ $cword -eq 3 ]; then
2822                                __git_complete_refs
2823                        else
2824                                __gitcomp_nl "$(__git stash list \
2825                                                | sed -n -e 's/:.*//p')"
2826                        fi
2827                        ;;
2828                show,*|apply,*|drop,*|pop,*)
2829                        __gitcomp_nl "$(__git stash list \
2830                                        | sed -n -e 's/:.*//p')"
2831                        ;;
2832                *)
2833                        ;;
2834                esac
2835        fi
2836}
2837
2838_git_submodule ()
2839{
2840        __git_has_doubledash && return
2841
2842        local subcommands="add status init deinit update summary foreach sync"
2843        local subcommand="$(__git_find_on_cmdline "$subcommands")"
2844        if [ -z "$subcommand" ]; then
2845                case "$cur" in
2846                --*)
2847                        __gitcomp "--quiet"
2848                        ;;
2849                *)
2850                        __gitcomp "$subcommands"
2851                        ;;
2852                esac
2853                return
2854        fi
2855
2856        case "$subcommand,$cur" in
2857        add,--*)
2858                __gitcomp "--branch --force --name --reference --depth"
2859                ;;
2860        status,--*)
2861                __gitcomp "--cached --recursive"
2862                ;;
2863        deinit,--*)
2864                __gitcomp "--force --all"
2865                ;;
2866        update,--*)
2867                __gitcomp "
2868                        --init --remote --no-fetch
2869                        --recommend-shallow --no-recommend-shallow
2870                        --force --rebase --merge --reference --depth --recursive --jobs
2871                "
2872                ;;
2873        summary,--*)
2874                __gitcomp "--cached --files --summary-limit"
2875                ;;
2876        foreach,--*|sync,--*)
2877                __gitcomp "--recursive"
2878                ;;
2879        *)
2880                ;;
2881        esac
2882}
2883
2884_git_svn ()
2885{
2886        local subcommands="
2887                init fetch clone rebase dcommit log find-rev
2888                set-tree commit-diff info create-ignore propget
2889                proplist show-ignore show-externals branch tag blame
2890                migrate mkdirs reset gc
2891                "
2892        local subcommand="$(__git_find_on_cmdline "$subcommands")"
2893        if [ -z "$subcommand" ]; then
2894                __gitcomp "$subcommands"
2895        else
2896                local remote_opts="--username= --config-dir= --no-auth-cache"
2897                local fc_opts="
2898                        --follow-parent --authors-file= --repack=
2899                        --no-metadata --use-svm-props --use-svnsync-props
2900                        --log-window-size= --no-checkout --quiet
2901                        --repack-flags --use-log-author --localtime
2902                        --add-author-from
2903                        --ignore-paths= --include-paths= $remote_opts
2904                        "
2905                local init_opts="
2906                        --template= --shared= --trunk= --tags=
2907                        --branches= --stdlayout --minimize-url
2908                        --no-metadata --use-svm-props --use-svnsync-props
2909                        --rewrite-root= --prefix= $remote_opts
2910                        "
2911                local cmt_opts="
2912                        --edit --rmdir --find-copies-harder --copy-similarity=
2913                        "
2914
2915                case "$subcommand,$cur" in
2916                fetch,--*)
2917                        __gitcomp "--revision= --fetch-all $fc_opts"
2918                        ;;
2919                clone,--*)
2920                        __gitcomp "--revision= $fc_opts $init_opts"
2921                        ;;
2922                init,--*)
2923                        __gitcomp "$init_opts"
2924                        ;;
2925                dcommit,--*)
2926                        __gitcomp "
2927                                --merge --strategy= --verbose --dry-run
2928                                --fetch-all --no-rebase --commit-url
2929                                --revision --interactive $cmt_opts $fc_opts
2930                                "
2931                        ;;
2932                set-tree,--*)
2933                        __gitcomp "--stdin $cmt_opts $fc_opts"
2934                        ;;
2935                create-ignore,--*|propget,--*|proplist,--*|show-ignore,--*|\
2936                show-externals,--*|mkdirs,--*)
2937                        __gitcomp "--revision="
2938                        ;;
2939                log,--*)
2940                        __gitcomp "
2941                                --limit= --revision= --verbose --incremental
2942                                --oneline --show-commit --non-recursive
2943                                --authors-file= --color
2944                                "
2945                        ;;
2946                rebase,--*)
2947                        __gitcomp "
2948                                --merge --verbose --strategy= --local
2949                                --fetch-all --dry-run $fc_opts
2950                                "
2951                        ;;
2952                commit-diff,--*)
2953                        __gitcomp "--message= --file= --revision= $cmt_opts"
2954                        ;;
2955                info,--*)
2956                        __gitcomp "--url"
2957                        ;;
2958                branch,--*)
2959                        __gitcomp "--dry-run --message --tag"
2960                        ;;
2961                tag,--*)
2962                        __gitcomp "--dry-run --message"
2963                        ;;
2964                blame,--*)
2965                        __gitcomp "--git-format"
2966                        ;;
2967                migrate,--*)
2968                        __gitcomp "
2969                                --config-dir= --ignore-paths= --minimize
2970                                --no-auth-cache --username=
2971                                "
2972                        ;;
2973                reset,--*)
2974                        __gitcomp "--revision= --parent"
2975                        ;;
2976                *)
2977                        ;;
2978                esac
2979        fi
2980}
2981
2982_git_tag ()
2983{
2984        local i c=1 f=0
2985        while [ $c -lt $cword ]; do
2986                i="${words[c]}"
2987                case "$i" in
2988                -d|-v)
2989                        __gitcomp_direct "$(__git_tags "" "$cur" " ")"
2990                        return
2991                        ;;
2992                -f)
2993                        f=1
2994                        ;;
2995                esac
2996                ((c++))
2997        done
2998
2999        case "$prev" in
3000        -m|-F)
3001                ;;
3002        -*|tag)
3003                if [ $f = 1 ]; then
3004                        __gitcomp_direct "$(__git_tags "" "$cur" " ")"
3005                fi
3006                ;;
3007        *)
3008                __git_complete_refs
3009                ;;
3010        esac
3011
3012        case "$cur" in
3013        --*)
3014                __gitcomp "
3015                        --list --delete --verify --annotate --message --file
3016                        --sign --cleanup --local-user --force --column --sort=
3017                        --contains --no-contains --points-at --merged --no-merged --create-reflog
3018                        "
3019                ;;
3020        esac
3021}
3022
3023_git_whatchanged ()
3024{
3025        _git_log
3026}
3027
3028_git_worktree ()
3029{
3030        local subcommands="add list lock prune unlock"
3031        local subcommand="$(__git_find_on_cmdline "$subcommands")"
3032        if [ -z "$subcommand" ]; then
3033                __gitcomp "$subcommands"
3034        else
3035                case "$subcommand,$cur" in
3036                add,--*)
3037                        __gitcomp "--detach"
3038                        ;;
3039                list,--*)
3040                        __gitcomp "--porcelain"
3041                        ;;
3042                lock,--*)
3043                        __gitcomp "--reason"
3044                        ;;
3045                prune,--*)
3046                        __gitcomp "--dry-run --expire --verbose"
3047                        ;;
3048                *)
3049                        ;;
3050                esac
3051        fi
3052}
3053
3054__git_main ()
3055{
3056        local i c=1 command __git_dir __git_repo_path
3057        local __git_C_args C_args_count=0
3058
3059        while [ $c -lt $cword ]; do
3060                i="${words[c]}"
3061                case "$i" in
3062                --git-dir=*) __git_dir="${i#--git-dir=}" ;;
3063                --git-dir)   ((c++)) ; __git_dir="${words[c]}" ;;
3064                --bare)      __git_dir="." ;;
3065                --help) command="help"; break ;;
3066                -c|--work-tree|--namespace) ((c++)) ;;
3067                -C)     __git_C_args[C_args_count++]=-C
3068                        ((c++))
3069                        __git_C_args[C_args_count++]="${words[c]}"
3070                        ;;
3071                -*) ;;
3072                *) command="$i"; break ;;
3073                esac
3074                ((c++))
3075        done
3076
3077        if [ -z "$command" ]; then
3078                case "$prev" in
3079                --git-dir|-C|--work-tree)
3080                        # these need a path argument, let's fall back to
3081                        # Bash filename completion
3082                        return
3083                        ;;
3084                -c|--namespace)
3085                        # we don't support completing these options' arguments
3086                        return
3087                        ;;
3088                esac
3089                case "$cur" in
3090                --*)   __gitcomp "
3091                        --paginate
3092                        --no-pager
3093                        --git-dir=
3094                        --bare
3095                        --version
3096                        --exec-path
3097                        --exec-path=
3098                        --html-path
3099                        --man-path
3100                        --info-path
3101                        --work-tree=
3102                        --namespace=
3103                        --no-replace-objects
3104                        --help
3105                        "
3106                        ;;
3107                *)     __git_compute_porcelain_commands
3108                       __gitcomp "$__git_porcelain_commands $(__git_aliases)" ;;
3109                esac
3110                return
3111        fi
3112
3113        local completion_func="_git_${command//-/_}"
3114        declare -f $completion_func >/dev/null 2>/dev/null && $completion_func && return
3115
3116        local expansion=$(__git_aliased_command "$command")
3117        if [ -n "$expansion" ]; then
3118                words[1]=$expansion
3119                completion_func="_git_${expansion//-/_}"
3120                declare -f $completion_func >/dev/null 2>/dev/null && $completion_func
3121        fi
3122}
3123
3124__gitk_main ()
3125{
3126        __git_has_doubledash && return
3127
3128        local __git_repo_path
3129        __git_find_repo_path
3130
3131        local merge=""
3132        if [ -f "$__git_repo_path/MERGE_HEAD" ]; then
3133                merge="--merge"
3134        fi
3135        case "$cur" in
3136        --*)
3137                __gitcomp "
3138                        $__git_log_common_options
3139                        $__git_log_gitk_options
3140                        $merge
3141                        "
3142                return
3143                ;;
3144        esac
3145        __git_complete_revlist
3146}
3147
3148if [[ -n ${ZSH_VERSION-} ]]; then
3149        echo "WARNING: this script is deprecated, please see git-completion.zsh" 1>&2
3150
3151        autoload -U +X compinit && compinit
3152
3153        __gitcomp ()
3154        {
3155                emulate -L zsh
3156
3157                local cur_="${3-$cur}"
3158
3159                case "$cur_" in
3160                --*=)
3161                        ;;
3162                *)
3163                        local c IFS=$' \t\n'
3164                        local -a array
3165                        for c in ${=1}; do
3166                                c="$c${4-}"
3167                                case $c in
3168                                --*=*|*.) ;;
3169                                *) c="$c " ;;
3170                                esac
3171                                array[${#array[@]}+1]="$c"
3172                        done
3173                        compset -P '*[=:]'
3174                        compadd -Q -S '' -p "${2-}" -a -- array && _ret=0
3175                        ;;
3176                esac
3177        }
3178
3179        __gitcomp_direct ()
3180        {
3181                emulate -L zsh
3182
3183                local IFS=$'\n'
3184                compset -P '*[=:]'
3185                compadd -Q -- ${=1} && _ret=0
3186        }
3187
3188        __gitcomp_nl ()
3189        {
3190                emulate -L zsh
3191
3192                local IFS=$'\n'
3193                compset -P '*[=:]'
3194                compadd -Q -S "${4- }" -p "${2-}" -- ${=1} && _ret=0
3195        }
3196
3197        __gitcomp_file ()
3198        {
3199                emulate -L zsh
3200
3201                local IFS=$'\n'
3202                compset -P '*[=:]'
3203                compadd -Q -p "${2-}" -f -- ${=1} && _ret=0
3204        }
3205
3206        _git ()
3207        {
3208                local _ret=1 cur cword prev
3209                cur=${words[CURRENT]}
3210                prev=${words[CURRENT-1]}
3211                let cword=CURRENT-1
3212                emulate ksh -c __${service}_main
3213                let _ret && _default && _ret=0
3214                return _ret
3215        }
3216
3217        compdef _git git gitk
3218        return
3219fi
3220
3221__git_func_wrap ()
3222{
3223        local cur words cword prev
3224        _get_comp_words_by_ref -n =: cur words cword prev
3225        $1
3226}
3227
3228# Setup completion for certain functions defined above by setting common
3229# variables and workarounds.
3230# This is NOT a public function; use at your own risk.
3231__git_complete ()
3232{
3233        local wrapper="__git_wrap${2}"
3234        eval "$wrapper () { __git_func_wrap $2 ; }"
3235        complete -o bashdefault -o default -o nospace -F $wrapper $1 2>/dev/null \
3236                || complete -o default -o nospace -F $wrapper $1
3237}
3238
3239# wrapper for backwards compatibility
3240_git ()
3241{
3242        __git_wrap__git_main
3243}
3244
3245# wrapper for backwards compatibility
3246_gitk ()
3247{
3248        __git_wrap__gitk_main
3249}
3250
3251__git_complete git __git_main
3252__git_complete gitk __gitk_main
3253
3254# The following are necessary only for Cygwin, and only are needed
3255# when the user has tab-completed the executable name and consequently
3256# included the '.exe' suffix.
3257#
3258if [ Cygwin = "$(uname -o 2>/dev/null)" ]; then
3259__git_complete git.exe __git_main
3260fi