1 # bash/zsh completion support for core Git.
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.
7 # The contained completion routines provide support for completing:
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
18 # To use these routines:
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.
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 ; ... '".
32 # If you have a command that is not part of git, but you would still
33 # like completion, you can use __git_complete:
35 # __git_complete gl git_log
37 # Or if it's a main command (i.e. git or gitk):
39 # __git_complete gk gitk
41 # Compatible with bash 3.2.57.
43 # You can set the following environment variables to influence the behavior of
44 # the completion routines:
46 # GIT_COMPLETION_CHECKOUT_NO_GUESS
48 # When set to "1", do not include "DWIM" suggestions in git-checkout
49 # and git-switch completion (e.g., completing "foo" when "origin/foo"
52 # GIT_COMPLETION_SHOW_ALL
54 # When set to "1" suggest all options, including options which are
55 # typically hidden (e.g. '--allow-empty' for 'git commit').
57 case "$COMP_WORDBREAKS" in
59 *) COMP_WORDBREAKS="$COMP_WORDBREAKS:"
62 # Discovers the path to the git repository taking any '--git-dir=<path>' and
63 # '-C <path>' options into account and stores it in the $__git_repo_path
65 __git_find_repo_path ()
67 if [ -n "${__git_repo_path-}" ]; then
68 # we already know where it is
72 if [ -n "${__git_C_args-}" ]; then
73 __git_repo_path="$(git "${__git_C_args[@]}" \
74 ${__git_dir:+--git-dir="$__git_dir"} \
75 rev-parse --absolute-git-dir 2>/dev/null)"
76 elif [ -n "${__git_dir-}" ]; then
77 test -d "$__git_dir" &&
78 __git_repo_path="$__git_dir"
79 elif [ -n "${GIT_DIR-}" ]; then
80 test -d "${GIT_DIR-}" &&
81 __git_repo_path="$GIT_DIR"
82 elif [ -d .git ]; then
85 __git_repo_path="$(git rev-parse --git-dir 2>/dev/null)"
89 # Deprecated: use __git_find_repo_path() and $__git_repo_path instead
90 # __gitdir accepts 0 or 1 arguments (i.e., location)
91 # returns location of .git repo
94 if [ -z "${1-}" ]; then
95 __git_find_repo_path || return 1
96 echo "$__git_repo_path"
97 elif [ -d "$1/.git" ]; then
104 # Runs git with all the options given as argument, respecting any
105 # '--git-dir=<path>' and '-C <path>' options present on the command line
108 git ${__git_C_args:+"${__git_C_args[@]}"} \
109 ${__git_dir:+--git-dir="$__git_dir"} "$@" 2>/dev/null
112 # Removes backslash escaping, single quotes and double quotes from a word,
113 # stores the result in the variable $dequoted_word.
114 # 1: The word to dequote.
117 local rest="$1" len ch
121 while test -n "$rest"; do
122 len=${#dequoted_word}
123 dequoted_word="$dequoted_word${rest%%[\\\'\"]*}"
124 rest="${rest:$((${#dequoted_word}-$len))}"
126 case "${rest:0:1}" in
133 dequoted_word="$dequoted_word$ch"
140 len=${#dequoted_word}
141 dequoted_word="$dequoted_word${rest%%\'*}"
142 rest="${rest:$((${#dequoted_word}-$len+1))}"
146 while test -n "$rest" ; do
147 len=${#dequoted_word}
148 dequoted_word="$dequoted_word${rest%%[\\\"]*}"
149 rest="${rest:$((${#dequoted_word}-$len))}"
150 case "${rest:0:1}" in
155 dequoted_word="$dequoted_word$ch"
160 dequoted_word="$dequoted_word\\$ch"
176 # The following function is based on code from:
178 # bash_completion - programmable completion functions for bash 3.2+
180 # Copyright © 2006-2008, Ian Macdonald <ian@caliban.org>
181 # © 2009-2010, Bash Completion Maintainers
182 # <bash-completion-devel@lists.alioth.debian.org>
184 # This program is free software; you can redistribute it and/or modify
185 # it under the terms of the GNU General Public License as published by
186 # the Free Software Foundation; either version 2, or (at your option)
189 # This program is distributed in the hope that it will be useful,
190 # but WITHOUT ANY WARRANTY; without even the implied warranty of
191 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
192 # GNU General Public License for more details.
194 # You should have received a copy of the GNU General Public License
195 # along with this program; if not, see <http://www.gnu.org/licenses/>.
197 # The latest version of this software can be obtained here:
199 # http://bash-completion.alioth.debian.org/
203 # This function can be used to access a tokenized list of words
204 # on the command line:
206 # __git_reassemble_comp_words_by_ref '=:'
207 # if test "${words_[cword_-1]}" = -w
212 # The argument should be a collection of characters from the list of
213 # word completion separators (COMP_WORDBREAKS) to treat as ordinary
216 # This is roughly equivalent to going back in time and setting
217 # COMP_WORDBREAKS to exclude those characters. The intent is to
218 # make option types like --date=<type> and <rev>:<path> easy to
219 # recognize by treating each shell word as a single token.
221 # It is best not to set COMP_WORDBREAKS directly because the value is
222 # shared with other completion scripts. By the time the completion
223 # function gets called, COMP_WORDS has already been populated so local
224 # changes to COMP_WORDBREAKS have no effect.
226 # Output: words_, cword_, cur_.
228 __git_reassemble_comp_words_by_ref()
230 local exclude i j first
231 # Which word separators to exclude?
232 exclude="${1//[^$COMP_WORDBREAKS]}"
234 if [ -z "$exclude" ]; then
235 words_=("${COMP_WORDS[@]}")
238 # List of word completion separators has shrunk;
239 # re-assemble words to complete.
240 for ((i=0, j=0; i < ${#COMP_WORDS[@]}; i++, j++)); do
241 # Append each nonempty word consisting of just
242 # word separator characters to the current word.
246 [ -n "${COMP_WORDS[$i]}" ] &&
247 # word consists of excluded word separators
248 [ "${COMP_WORDS[$i]//[^$exclude]}" = "${COMP_WORDS[$i]}" ]
250 # Attach to the previous token,
251 # unless the previous token is the command name.
252 if [ $j -ge 2 ] && [ -n "$first" ]; then
256 words_[$j]=${words_[j]}${COMP_WORDS[i]}
257 if [ $i = $COMP_CWORD ]; then
260 if (($i < ${#COMP_WORDS[@]} - 1)); then
267 words_[$j]=${words_[j]}${COMP_WORDS[i]}
268 if [ $i = $COMP_CWORD ]; then
274 if ! type _get_comp_words_by_ref >/dev/null 2>&1; then
275 _get_comp_words_by_ref ()
277 local exclude cur_ words_ cword_
278 if [ "$1" = "-n" ]; then
282 __git_reassemble_comp_words_by_ref "$exclude"
283 cur_=${words_[cword_]}
284 while [ $# -gt 0 ]; do
290 prev=${words_[$cword_-1]}
293 words=("${words_[@]}")
304 # Fills the COMPREPLY array with prefiltered words without any additional
306 # Callers must take care of providing only words that match the current word
307 # to be completed and adding any prefix and/or suffix (trailing space!), if
309 # 1: List of newline-separated matching completion words, complete with
318 # Similar to __gitcomp_direct, but appends to COMPREPLY instead.
319 # Callers must take care of providing only words that match the current word
320 # to be completed and adding any prefix and/or suffix (trailing space!), if
322 # 1: List of newline-separated matching completion words, complete with
324 __gitcomp_direct_append ()
333 local x i=${#COMPREPLY[@]}
335 if [[ "$x" == "$3"* ]]; then
336 COMPREPLY[i++]="$2$x$4"
347 # Generates completion reply, appending a space to possible completion words,
349 # It accepts 1 to 4 arguments:
350 # 1: List of possible completion words.
351 # 2: A prefix to be added to each possible completion word (optional).
352 # 3: Generate possible completion matches for this word (optional).
353 # 4: A suffix to be appended to each possible completion word (optional).
356 local cur_="${3-$cur}"
362 local c i=0 IFS=$' \t\n'
364 if [[ $c == "--" ]]; then
368 if [[ $c == "$cur_"* ]]; then
373 COMPREPLY[i++]="${2-}$c"
378 local c i=0 IFS=$' \t\n'
380 if [[ $c == "--" ]]; then
382 if [[ $c == "$cur_"* ]]; then
383 COMPREPLY[i++]="${2-}$c "
388 if [[ $c == "$cur_"* ]]; then
393 COMPREPLY[i++]="${2-}$c"
400 # Clear the variables caching builtins' options when (re-)sourcing
401 # the completion script.
402 if [[ -n ${ZSH_VERSION-} ]]; then
403 unset ${(M)${(k)parameters[@]}:#__gitcomp_builtin_*} 2>/dev/null
405 unset $(compgen -v __gitcomp_builtin_)
408 # This function is equivalent to
410 # __gitcomp "$(git xxx --git-completion-helper) ..."
412 # except that the output is cached. Accept 1-3 arguments:
413 # 1: the git command to execute, this is also the cache key
414 # 2: extra options to be added on top (e.g. negative forms)
415 # 3: options to be excluded
418 # spaces must be replaced with underscore for multi-word
419 # commands, e.g. "git remote add" becomes remote_add.
424 local var=__gitcomp_builtin_"${cmd/-/_}"
426 eval "options=\${$var-}"
428 if [ -z "$options" ]; then
429 local completion_helper
430 if [ "$GIT_COMPLETION_SHOW_ALL" = "1" ]; then
431 completion_helper="--git-completion-helper-all"
433 completion_helper="--git-completion-helper"
435 # leading and trailing spaces are significant to make
436 # option removal work correctly.
437 options=" $incl $(__git ${cmd/_/ } $completion_helper) " || return
440 options="${options/ $i / }"
442 eval "$var=\"$options\""
448 # Variation of __gitcomp_nl () that appends to the existing list of
449 # completion candidates, COMPREPLY.
450 __gitcomp_nl_append ()
453 __gitcompappend "$1" "${2-}" "${3-$cur}" "${4- }"
456 # Generates completion reply from newline-separated possible completion words
457 # by appending a space to all of them.
458 # It accepts 1 to 4 arguments:
459 # 1: List of possible completion words, separated by a single newline.
460 # 2: A prefix to be added to each possible completion word (optional).
461 # 3: Generate possible completion matches for this word (optional).
462 # 4: A suffix to be appended to each possible completion word instead of
463 # the default space (optional). If specified but empty, nothing is
468 __gitcomp_nl_append "$@"
471 # Fills the COMPREPLY array with prefiltered paths without any additional
473 # Callers must take care of providing only paths that match the current path
474 # to be completed and adding any prefix path components, if necessary.
475 # 1: List of newline-separated matching paths, complete with all prefix
477 __gitcomp_file_direct ()
483 # use a hack to enable file mode in bash < 4
484 compopt -o filenames +o nospace 2>/dev/null ||
485 compgen -f /non-existing-dir/ >/dev/null ||
489 # Generates completion reply with compgen from newline-separated possible
490 # completion filenames.
491 # It accepts 1 to 3 arguments:
492 # 1: List of possible completion filenames, separated by a single newline.
493 # 2: A directory prefix to be added to each possible completion filename
495 # 3: Generate possible completion matches for this word (optional).
500 # XXX does not work when the directory prefix contains a tilde,
501 # since tilde expansion is not applied.
502 # This means that COMPREPLY will be empty and Bash default
503 # completion will be used.
504 __gitcompadd "$1" "${2-}" "${3-$cur}" ""
506 # use a hack to enable file mode in bash < 4
507 compopt -o filenames +o nospace 2>/dev/null ||
508 compgen -f /non-existing-dir/ >/dev/null ||
512 # Execute 'git ls-files', unless the --committable option is specified, in
513 # which case it runs 'git diff-index' to find out the files that can be
514 # committed. It return paths relative to the directory specified in the first
515 # argument, and using the options specified in the second argument.
516 __git_ls_files_helper ()
518 if [ "$2" == "--committable" ]; then
519 __git -C "$1" -c core.quotePath=false diff-index \
520 --name-only --relative HEAD -- "${3//\\/\\\\}*"
522 # NOTE: $2 is not quoted in order to support multiple options
523 __git -C "$1" -c core.quotePath=false ls-files \
524 --exclude-standard $2 -- "${3//\\/\\\\}*"
529 # __git_index_files accepts 1 or 2 arguments:
530 # 1: Options to pass to ls-files (required).
531 # 2: A directory path (optional).
532 # If provided, only files within the specified directory are listed.
533 # Sub directories are never recursed. Path must have a trailing
535 # 3: List only paths matching this path component (optional).
538 local root="$2" match="$3"
540 __git_ls_files_helper "$root" "$1" "${match:-?}" |
541 awk -F / -v pfx="${2//\\/\\\\}" '{
546 if (substr(p, 1, 1) != "\"") {
547 # No special characters, easy!
552 # The path is quoted.
557 # Even when a directory name itself does not contain
558 # any special characters, it will still be quoted if
559 # any of its (stripped) trailing path components do.
560 # Because of this we may have seen the same directory
561 # both quoted and unquoted.
563 # We have seen the same directory unquoted,
570 function dequote(p, bs_idx, out, esc, esc_idx, dec) {
571 # Skip opening double quote.
574 # Interpret backslash escape sequences.
575 while ((bs_idx = index(p, "\\")) != 0) {
576 out = out substr(p, 1, bs_idx - 1)
577 esc = substr(p, bs_idx + 1, 1)
578 p = substr(p, bs_idx + 2)
580 if ((esc_idx = index("abtvfr\"\\", esc)) != 0) {
581 # C-style one-character escape sequence.
582 out = out substr("\a\b\t\v\f\r\"\\",
584 } else if (esc == "n") {
585 # Uh-oh, a newline character.
586 # We cannot reliably put a pathname
587 # containing a newline into COMPREPLY,
588 # and the newline would create a mess.
592 # Must be a \nnn octal value, then.
594 substr(p, 1, 1) * 8 + \
596 out = out sprintf("%c", dec)
600 # Drop closing double quote, if there is one.
601 # (There is not any if this is a directory, as it was
602 # already stripped with the trailing path components.)
603 if (substr(p, length(p), 1) == "\"")
604 out = out substr(p, 1, length(p) - 1)
612 # __git_complete_index_file requires 1 argument:
613 # 1: the options to pass to ls-file
615 # The exception is --committable, which finds the files appropriate commit.
616 __git_complete_index_file ()
618 local dequoted_word pfx="" cur_
622 case "$dequoted_word" in
624 pfx="${dequoted_word%/*}/"
625 cur_="${dequoted_word##*/}"
628 cur_="$dequoted_word"
631 __gitcomp_file_direct "$(__git_index_files "$1" "$pfx" "$cur_")"
634 # Lists branches from the local repository.
635 # 1: A prefix to be added to each listed branch (optional).
636 # 2: List only branches matching this word (optional; list all branches if
638 # 3: A suffix to be appended to each listed branch (optional).
641 local pfx="${1-}" cur_="${2-}" sfx="${3-}"
643 __git for-each-ref --format="${pfx//\%/%%}%(refname:strip=2)$sfx" \
644 "refs/heads/$cur_*" "refs/heads/$cur_*/**"
647 # Lists branches from remote repositories.
648 # 1: A prefix to be added to each listed branch (optional).
649 # 2: List only branches matching this word (optional; list all branches if
651 # 3: A suffix to be appended to each listed branch (optional).
652 __git_remote_heads ()
654 local pfx="${1-}" cur_="${2-}" sfx="${3-}"
656 __git for-each-ref --format="${pfx//\%/%%}%(refname:strip=2)$sfx" \
657 "refs/remotes/$cur_*" "refs/remotes/$cur_*/**"
660 # Lists tags from the local repository.
661 # Accepts the same positional parameters as __git_heads() above.
664 local pfx="${1-}" cur_="${2-}" sfx="${3-}"
666 __git for-each-ref --format="${pfx//\%/%%}%(refname:strip=2)$sfx" \
667 "refs/tags/$cur_*" "refs/tags/$cur_*/**"
670 # List unique branches from refs/remotes used for 'git checkout' and 'git
671 # switch' tracking DWIMery.
672 # 1: A prefix to be added to each listed branch (optional)
673 # 2: List only branches matching this word (optional; list all branches if
675 # 3: A suffix to be appended to each listed branch (optional).
676 __git_dwim_remote_heads ()
678 local pfx="${1-}" cur_="${2-}" sfx="${3-}"
679 local fer_pfx="${pfx//\%/%%}" # "escape" for-each-ref format specifiers
681 # employ the heuristic used by git checkout and git switch
682 # Try to find a remote branch that cur_es the completion word
683 # but only output if the branch name is unique
684 __git for-each-ref --format="$fer_pfx%(refname:strip=3)$sfx" \
685 --sort="refname:strip=3" \
686 "refs/remotes/*/$cur_*" "refs/remotes/*/$cur_*/**" | \
690 # Lists refs from the local (by default) or from a remote repository.
691 # It accepts 0, 1 or 2 arguments:
692 # 1: The remote to list refs from (optional; ignored, if set but empty).
693 # Can be the name of a configured remote, a path, or a URL.
694 # 2: In addition to local refs, list unique branches from refs/remotes/ for
695 # 'git checkout's tracking DWIMery (optional; ignored, if set but empty).
696 # 3: A prefix to be added to each listed ref (optional).
697 # 4: List only refs matching this word (optional; list all refs if unset or
699 # 5: A suffix to be appended to each listed ref (optional; ignored, if set
702 # Use __git_complete_refs() instead.
705 local i hash dir track="${2-}"
706 local list_refs_from=path remote="${1-}"
708 local pfx="${3-}" cur_="${4-$cur}" sfx="${5-}"
710 local fer_pfx="${pfx//\%/%%}" # "escape" for-each-ref format specifiers
713 dir="$__git_repo_path"
715 if [ -z "$remote" ]; then
716 if [ -z "$dir" ]; then
720 if __git_is_configured_remote "$remote"; then
721 # configured remote takes precedence over a
722 # local directory with the same name
723 list_refs_from=remote
724 elif [ -d "$remote/.git" ]; then
726 elif [ -d "$remote" ]; then
733 if [ "$list_refs_from" = path ]; then
734 if [[ "$cur_" == ^* ]]; then
743 refs=("$match*" "$match*/**")
747 for i in HEAD FETCH_HEAD ORIG_HEAD MERGE_HEAD REBASE_HEAD; do
750 if [ -e "$dir/$i" ]; then
756 format="refname:strip=2"
757 refs=("refs/tags/$match*" "refs/tags/$match*/**"
758 "refs/heads/$match*" "refs/heads/$match*/**"
759 "refs/remotes/$match*" "refs/remotes/$match*/**")
762 __git_dir="$dir" __git for-each-ref --format="$fer_pfx%($format)$sfx" \
764 if [ -n "$track" ]; then
765 __git_dwim_remote_heads "$pfx" "$match" "$sfx"
771 __git ls-remote "$remote" "$match*" | \
772 while read -r hash i; do
775 *) echo "$pfx$i$sfx" ;;
780 if [ "$list_refs_from" = remote ]; then
782 $match*) echo "${pfx}HEAD$sfx" ;;
784 __git for-each-ref --format="$fer_pfx%(refname:strip=3)$sfx" \
785 "refs/remotes/$remote/$match*" \
786 "refs/remotes/$remote/$match*/**"
790 $match*) query_symref="HEAD" ;;
792 __git ls-remote "$remote" $query_symref \
793 "refs/tags/$match*" "refs/heads/$match*" \
794 "refs/remotes/$match*" |
795 while read -r hash i; do
798 refs/*) echo "$pfx${i#refs/*/}$sfx" ;;
799 *) echo "$pfx$i$sfx" ;; # symbolic refs
807 # Completes refs, short and long, local and remote, symbolic and pseudo.
809 # Usage: __git_complete_refs [<option>]...
810 # --remote=<remote>: The remote to list refs from, can be the name of a
811 # configured remote, a path, or a URL.
812 # --dwim: List unique remote branches for 'git switch's tracking DWIMery.
813 # --pfx=<prefix>: A prefix to be added to each ref.
814 # --cur=<word>: The current ref to be completed. Defaults to the current
815 # word to be completed.
816 # --sfx=<suffix>: A suffix to be appended to each ref instead of the default
818 # --mode=<mode>: What set of refs to complete, one of 'refs' (the default) to
819 # complete all refs, 'heads' to complete only branches, or
820 # 'remote-heads' to complete only remote branches. Note that
821 # --remote is only compatible with --mode=refs.
822 __git_complete_refs ()
824 local remote= dwim= pfx= cur_="$cur" sfx=" " mode="refs"
826 while test $# != 0; do
828 --remote=*) remote="${1##--remote=}" ;;
829 --dwim) dwim="yes" ;;
830 # --track is an old spelling of --dwim
831 --track) dwim="yes" ;;
832 --pfx=*) pfx="${1##--pfx=}" ;;
833 --cur=*) cur_="${1##--cur=}" ;;
834 --sfx=*) sfx="${1##--sfx=}" ;;
835 --mode=*) mode="${1##--mode=}" ;;
841 # complete references based on the specified mode
844 __gitcomp_direct "$(__git_refs "$remote" "" "$pfx" "$cur_" "$sfx")" ;;
846 __gitcomp_direct "$(__git_heads "$pfx" "$cur_" "$sfx")" ;;
848 __gitcomp_direct "$(__git_remote_heads "$pfx" "$cur_" "$sfx")" ;;
853 # Append DWIM remote branch names if requested
854 if [ "$dwim" = "yes" ]; then
855 __gitcomp_direct_append "$(__git_dwim_remote_heads "$pfx" "$cur_" "$sfx")"
859 # __git_refs2 requires 1 argument (to pass to __git_refs)
860 # Deprecated: use __git_complete_fetch_refspecs() instead.
864 for i in $(__git_refs "$1"); do
869 # Completes refspecs for fetching from a remote repository.
870 # 1: The remote repository.
871 # 2: A prefix to be added to each listed refspec (optional).
872 # 3: The ref to be completed as a refspec instead of the current word to be
873 # completed (optional)
874 # 4: A suffix to be appended to each listed refspec instead of the default
876 __git_complete_fetch_refspecs ()
878 local i remote="$1" pfx="${2-}" cur_="${3-$cur}" sfx="${4- }"
881 for i in $(__git_refs "$remote" "" "" "$cur_") ; do
887 # __git_refs_remotes requires 1 argument (to pass to ls-remote)
888 __git_refs_remotes ()
891 __git ls-remote "$1" 'refs/heads/*' | \
892 while read -r hash i; do
893 echo "$i:refs/remotes/$1/${i#refs/heads/}"
900 test -d "$__git_repo_path/remotes" && ls -1 "$__git_repo_path/remotes"
904 # Returns true if $1 matches the name of a configured remote, false otherwise.
905 __git_is_configured_remote ()
908 for remote in $(__git_remotes); do
909 if [ "$remote" = "$1" ]; then
916 __git_list_merge_strategies ()
918 LANG=C LC_ALL=C git merge -s help 2>&1 |
919 sed -n -e '/[Aa]vailable strategies are: /,/^$/{
928 __git_merge_strategies=
929 # 'git merge -s help' (and thus detection of the merge strategy
930 # list) fails, unfortunately, if run outside of any git working
931 # tree. __git_merge_strategies is set to the empty string in
932 # that case, and the detection will be repeated the next time it
934 __git_compute_merge_strategies ()
936 test -n "$__git_merge_strategies" ||
937 __git_merge_strategies=$(__git_list_merge_strategies)
940 __git_merge_strategy_options="ours theirs subtree subtree= patience
941 histogram diff-algorithm= ignore-space-change ignore-all-space
942 ignore-space-at-eol renormalize no-renormalize no-renames
943 find-renames find-renames= rename-threshold="
945 __git_complete_revlist_file ()
947 local dequoted_word pfx ls ref cur_="$cur"
956 __git_dequote "$cur_"
958 case "$dequoted_word" in
960 pfx="${dequoted_word%/*}"
961 cur_="${dequoted_word##*/}"
966 cur_="$dequoted_word"
971 case "$COMP_WORDBREAKS" in
973 *) pfx="$ref:$pfx" ;;
976 __gitcomp_file "$(__git ls-tree "$ls" \
982 pfx="${cur_%...*}..."
984 __git_complete_refs --pfx="$pfx" --cur="$cur_"
989 __git_complete_refs --pfx="$pfx" --cur="$cur_"
997 __git_complete_file ()
999 __git_complete_revlist_file
1002 __git_complete_revlist ()
1004 __git_complete_revlist_file
1007 __git_complete_remote_or_refspec ()
1009 local cur_="$cur" cmd="${words[1]}"
1010 local i c=2 remote="" pfx="" lhs=1 no_complete_refspec=0
1011 if [ "$cmd" = "remote" ]; then
1014 while [ $c -lt $cword ]; do
1017 --mirror) [ "$cmd" = "push" ] && no_complete_refspec=1 ;;
1018 -d|--delete) [ "$cmd" = "push" ] && lhs=0 ;;
1021 push) no_complete_refspec=1 ;;
1028 --multiple) no_complete_refspec=1; break ;;
1030 *) remote="$i"; break ;;
1034 if [ -z "$remote" ]; then
1035 __gitcomp_nl "$(__git_remotes)"
1038 if [ $no_complete_refspec = 1 ]; then
1041 [ "$remote" = "." ] && remote=
1044 case "$COMP_WORDBREAKS" in
1046 *) pfx="${cur_%%:*}:" ;;
1058 if [ $lhs = 1 ]; then
1059 __git_complete_fetch_refspecs "$remote" "$pfx" "$cur_"
1061 __git_complete_refs --pfx="$pfx" --cur="$cur_"
1065 if [ $lhs = 1 ]; then
1066 __git_complete_refs --remote="$remote" --pfx="$pfx" --cur="$cur_"
1068 __git_complete_refs --pfx="$pfx" --cur="$cur_"
1072 if [ $lhs = 1 ]; then
1073 __git_complete_refs --pfx="$pfx" --cur="$cur_"
1075 __git_complete_refs --remote="$remote" --pfx="$pfx" --cur="$cur_"
1081 __git_complete_strategy ()
1083 __git_compute_merge_strategies
1086 __gitcomp "$__git_merge_strategies"
1090 __gitcomp "$__git_merge_strategy_options"
1096 __gitcomp "$__git_merge_strategies" "" "${cur##--strategy=}"
1099 --strategy-option=*)
1100 __gitcomp "$__git_merge_strategy_options" "" "${cur##--strategy-option=}"
1108 __git_compute_all_commands ()
1110 test -n "$__git_all_commands" ||
1111 __git_all_commands=$(__git --list-cmds=main,others,alias,nohelpers)
1114 # Lists all set config variables starting with the given section prefix,
1115 # with the prefix removed.
1116 __git_get_config_variables ()
1118 local section="$1" i IFS=$'\n'
1119 for i in $(__git config --name-only --get-regexp "^$section\..*"); do
1120 echo "${i#$section.}"
1124 __git_pretty_aliases ()
1126 __git_get_config_variables "pretty"
1129 # __git_aliased_command requires 1 argument
1130 __git_aliased_command ()
1132 local cur=$1 last list word cmdline
1134 while [[ -n "$cur" ]]; do
1135 if [[ "$list" == *" $cur "* ]]; then
1140 cmdline=$(__git config --get "alias.$cur")
1145 for word in $cmdline; do
1151 \!*) : shell command alias ;;
1153 *=*) : setting env ;;
1154 git) : git itself ;;
1155 \(\)) : skip parens of shell function definition ;;
1156 {) : skip start of shell helper function ;;
1157 :) : skip null command ;;
1158 \'*) : skip opening quote after sh -c ;;
1167 if [[ "$cur" != "$1" ]]; then
1172 # Check whether one of the given words is present on the command line,
1173 # and print the first word found.
1175 # Usage: __git_find_on_cmdline [<option>]... "<wordlist>"
1176 # --show-idx: Optionally show the index of the found word in the $words array.
1177 __git_find_on_cmdline ()
1179 local word c=1 show_idx
1181 while test $# -gt 1; do
1183 --show-idx) show_idx=y ;;
1190 while [ $c -lt $cword ]; do
1191 for word in $wordlist; do
1192 if [ "$word" = "${words[c]}" ]; then
1193 if [ -n "${show_idx-}" ]; then
1205 # Similar to __git_find_on_cmdline, except that it loops backwards and thus
1206 # prints the *last* word found. Useful for finding which of two options that
1207 # supersede each other came last, such as "--guess" and "--no-guess".
1209 # Usage: __git_find_last_on_cmdline [<option>]... "<wordlist>"
1210 # --show-idx: Optionally show the index of the found word in the $words array.
1211 __git_find_last_on_cmdline ()
1213 local word c=$cword show_idx
1215 while test $# -gt 1; do
1217 --show-idx) show_idx=y ;;
1224 while [ $c -gt 1 ]; do
1226 for word in $wordlist; do
1227 if [ "$word" = "${words[c]}" ]; then
1228 if [ -n "$show_idx" ]; then
1239 # Echo the value of an option set on the command line or config
1241 # $1: short option name
1242 # $2: long option name including =
1243 # $3: list of possible values
1244 # $4: config string (optional)
1247 # result="$(__git_get_option_value "-d" "--do-something=" \
1248 # "yes no" "core.doSomething")"
1250 # result is then either empty (no option set) or "yes" or "no"
1252 # __git_get_option_value requires 3 arguments
1253 __git_get_option_value ()
1255 local c short_opt long_opt val
1256 local result= values config_key word
1264 while [ $c -ge 0 ]; do
1266 for val in $values; do
1267 if [ "$short_opt$val" = "$word" ] ||
1268 [ "$long_opt$val" = "$word" ]; then
1276 if [ -n "$config_key" ] && [ -z "$result" ]; then
1277 result="$(__git config "$config_key")"
1283 __git_has_doubledash ()
1286 while [ $c -lt $cword ]; do
1287 if [ "--" = "${words[c]}" ]; then
1295 # Try to count non option arguments passed on the command line for the
1296 # specified git command.
1297 # When options are used, it is necessary to use the special -- option to
1298 # tell the implementation were non option arguments begin.
1299 # XXX this can not be improved, since options can appear everywhere, as
1303 # __git_count_arguments requires 1 argument: the git command executed.
1304 __git_count_arguments ()
1308 # Skip "git" (first argument)
1309 for ((i=1; i < ${#words[@]}; i++)); do
1314 # Good; we can assume that the following are only non
1319 # Skip the specified git command and discard git
1332 __git_whitespacelist="nowarn warn error error-all fix"
1333 __git_patchformat="mbox stgit stgit-series hg mboxrd"
1334 __git_showcurrentpatch="diff raw"
1335 __git_am_inprogress_options="--skip --continue --resolved --abort --quit --show-current-patch"
1339 __git_find_repo_path
1340 if [ -d "$__git_repo_path"/rebase-apply ]; then
1341 __gitcomp "$__git_am_inprogress_options"
1346 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
1350 __gitcomp "$__git_patchformat" "" "${cur##--patch-format=}"
1353 --show-current-patch=*)
1354 __gitcomp "$__git_showcurrentpatch" "" "${cur##--show-current-patch=}"
1358 __gitcomp_builtin am "" \
1359 "$__git_am_inprogress_options"
1368 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
1372 __gitcomp_builtin apply
1381 __gitcomp "+x -x" "" "${cur##--chmod=}"
1385 __gitcomp_builtin add
1389 local complete_opt="--others --modified --directory --no-empty-directory"
1390 if test -n "$(__git_find_on_cmdline "-u --update")"
1392 complete_opt="--modified"
1394 __git_complete_index_file "$complete_opt"
1401 __gitcomp "$(git archive --list)" "" "${cur##--format=}"
1405 __gitcomp_nl "$(__git_remotes)" "" "${cur##--remote=}"
1409 __gitcomp_builtin archive "--format= --list --verbose --prefix= --worktree-attributes"
1418 __git_has_doubledash && return
1420 local subcommands="start bad good skip reset visualize replay log run"
1421 local subcommand="$(__git_find_on_cmdline "$subcommands")"
1422 if [ -z "$subcommand" ]; then
1423 __git_find_repo_path
1424 if [ -f "$__git_repo_path"/BISECT_START ]; then
1425 __gitcomp "$subcommands"
1427 __gitcomp "replay start"
1432 case "$subcommand" in
1433 bad|good|reset|skip|start)
1441 __git_ref_fieldlist="refname objecttype objectsize objectname upstream push HEAD symref"
1445 local i c=1 only_local_ref="n" has_r="n"
1447 while [ $c -lt $cword ]; do
1450 -d|--delete|-m|--move) only_local_ref="y" ;;
1451 -r|--remotes) has_r="y" ;;
1457 --set-upstream-to=*)
1458 __git_complete_refs --cur="${cur##--set-upstream-to=}"
1461 __gitcomp_builtin branch
1464 if [ $only_local_ref = "y" -a $has_r = "n" ]; then
1465 __gitcomp_direct "$(__git_heads "" "$cur" " ")"
1475 local cmd="${words[2]}"
1478 __gitcomp "create list-heads verify unbundle"
1481 # looking for a file
1486 __git_complete_revlist
1493 # Helper function to decide whether or not we should enable DWIM logic for
1494 # git-switch and git-checkout.
1496 # To decide between the following rules in decreasing priority order:
1497 # - the last provided of "--guess" or "--no-guess" explicitly enable or
1498 # disable completion of DWIM logic respectively.
1499 # - If checkout.guess is false, disable completion of DWIM logic.
1500 # - If the --no-track option is provided, take this as a hint to disable the
1501 # DWIM completion logic
1502 # - If GIT_COMPLETION_CHECKOUT_NO_GUESS is set, disable the DWIM completion
1503 # logic, as requested by the user.
1504 # - Enable DWIM logic otherwise.
1506 __git_checkout_default_dwim_mode ()
1508 local last_option dwim_opt="--dwim"
1510 if [ "${GIT_COMPLETION_CHECKOUT_NO_GUESS-}" = "1" ]; then
1514 # --no-track disables DWIM, but with lower priority than
1515 # --guess/--no-guess/checkout.guess
1516 if [ -n "$(__git_find_on_cmdline "--no-track")" ]; then
1520 # checkout.guess = false disables DWIM, but with lower priority than
1521 # --guess/--no-guess
1522 if [ "$(__git config --type=bool checkout.guess)" = "false" ]; then
1526 # Find the last provided --guess or --no-guess
1527 last_option="$(__git_find_last_on_cmdline "--guess --no-guess")"
1528 case "$last_option" in
1542 __git_has_doubledash && return
1544 local dwim_opt="$(__git_checkout_default_dwim_mode)"
1548 # Complete local branches (and DWIM branch
1549 # remote branch names) for an option argument
1550 # specifying a new branch name. This is for
1551 # convenience, assuming new branches are
1552 # possibly based on pre-existing branch names.
1553 __git_complete_refs $dwim_opt --mode="heads"
1562 __gitcomp "diff3 merge" "" "${cur##--conflict=}"
1565 __gitcomp_builtin checkout
1568 # At this point, we've already handled special completion for
1569 # the arguments to -b/-B, and --orphan. There are 3 main
1570 # things left we can possibly complete:
1571 # 1) a start-point for -b/-B, -d/--detach, or --orphan
1572 # 2) a remote head, for --track
1573 # 3) an arbitrary reference, possibly including DWIM names
1576 if [ -n "$(__git_find_on_cmdline "-b -B -d --detach --orphan")" ]; then
1577 __git_complete_refs --mode="refs"
1578 elif [ -n "$(__git_find_on_cmdline "--track")" ]; then
1579 __git_complete_refs --mode="remote-heads"
1581 __git_complete_refs $dwim_opt --mode="refs"
1587 __git_sequencer_inprogress_options="--continue --quit --abort --skip"
1589 __git_cherry_pick_inprogress_options=$__git_sequencer_inprogress_options
1593 __git_find_repo_path
1594 if [ -f "$__git_repo_path"/CHERRY_PICK_HEAD ]; then
1595 __gitcomp "$__git_cherry_pick_inprogress_options"
1599 __git_complete_strategy && return
1603 __gitcomp_builtin cherry-pick "" \
1604 "$__git_cherry_pick_inprogress_options"
1616 __gitcomp_builtin clean
1621 # XXX should we check for -x option ?
1622 __git_complete_index_file "--others --directory"
1629 __git_complete_config_variable_name_and_value
1635 __git_complete_config_variable_name_and_value \
1636 --cur="${cur##--config=}"
1640 __gitcomp_builtin clone
1646 __git_untracked_file_modes="all no normal"
1659 __gitcomp "default scissors strip verbatim whitespace
1660 " "" "${cur##--cleanup=}"
1663 --reuse-message=*|--reedit-message=*|\
1664 --fixup=*|--squash=*)
1665 __git_complete_refs --cur="${cur#*=}"
1668 --untracked-files=*)
1669 __gitcomp "$__git_untracked_file_modes" "" "${cur##--untracked-files=}"
1673 __gitcomp_builtin commit
1677 if __git rev-parse --verify --quiet HEAD >/dev/null; then
1678 __git_complete_index_file "--committable"
1680 # This is the first commit
1681 __git_complete_index_file "--cached"
1689 __gitcomp_builtin describe
1695 __git_diff_algorithms="myers minimal patience histogram"
1697 __git_diff_submodule_formats="diff log short"
1699 __git_color_moved_opts="no default plain blocks zebra dimmed-zebra"
1701 __git_color_moved_ws_opts="no ignore-space-at-eol ignore-space-change
1702 ignore-all-space allow-indentation-change"
1704 __git_diff_common_options="--stat --numstat --shortstat --summary
1705 --patch-with-stat --name-only --name-status --color
1706 --no-color --color-words --no-renames --check
1707 --color-moved --color-moved= --no-color-moved
1708 --color-moved-ws= --no-color-moved-ws
1709 --full-index --binary --abbrev --diff-filter=
1710 --find-copies-harder --ignore-cr-at-eol
1711 --text --ignore-space-at-eol --ignore-space-change
1712 --ignore-all-space --ignore-blank-lines --exit-code
1713 --quiet --ext-diff --no-ext-diff
1714 --no-prefix --src-prefix= --dst-prefix=
1715 --inter-hunk-context=
1716 --patience --histogram --minimal
1717 --raw --word-diff --word-diff-regex=
1718 --dirstat --dirstat= --dirstat-by-file
1719 --dirstat-by-file= --cumulative
1721 --submodule --submodule= --ignore-submodules
1722 --indent-heuristic --no-indent-heuristic
1723 --textconv --no-textconv
1727 __git_diff_difftool_options="--cached --staged --pickaxe-all --pickaxe-regex
1728 --base --ours --theirs --no-index --relative --merge-base
1729 $__git_diff_common_options"
1733 __git_has_doubledash && return
1737 __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}"
1741 __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}"
1745 __gitcomp "$__git_color_moved_opts" "" "${cur##--color-moved=}"
1749 __gitcomp "$__git_color_moved_ws_opts" "" "${cur##--color-moved-ws=}"
1753 __gitcomp "$__git_diff_difftool_options"
1757 __git_complete_revlist_file
1760 __git_mergetools_common="diffuse diffmerge ecmerge emerge kdiff3 meld opendiff
1761 tkdiff vimdiff nvimdiff gvimdiff xxdiff araxis p4merge
1762 bc codecompare smerge
1767 __git_has_doubledash && return
1771 __gitcomp "$__git_mergetools_common kompare" "" "${cur##--tool=}"
1775 __gitcomp_builtin difftool "$__git_diff_difftool_options"
1779 __git_complete_revlist_file
1782 __git_fetch_recurse_submodules="yes on-demand no"
1787 --recurse-submodules=*)
1788 __gitcomp "$__git_fetch_recurse_submodules" "" "${cur##--recurse-submodules=}"
1792 __gitcomp "blob:none blob:limit= sparse:oid=" "" "${cur##--filter=}"
1796 __gitcomp_builtin fetch
1800 __git_complete_remote_or_refspec
1803 __git_format_patch_extra_options="
1804 --full-index --not --all --no-prefix --src-prefix=
1805 --dst-prefix= --notes
1808 _git_format_patch ()
1814 " "" "${cur##--thread=}"
1817 --base=*|--interdiff=*|--range-diff=*)
1818 __git_complete_refs --cur="${cur#--*=}"
1822 __gitcomp_builtin format-patch "$__git_format_patch_extra_options"
1826 __git_complete_revlist
1833 __gitcomp_builtin fsck
1844 # Lists matching symbol names from a tag (as in ctags) file.
1845 # 1: List symbol names matching this word.
1846 # 2: The tag file to list symbol names from.
1847 # 3: A prefix to be added to each listed symbol name (optional).
1848 # 4: A suffix to be appended to each listed symbol name (optional).
1849 __git_match_ctag () {
1850 awk -v pfx="${3-}" -v sfx="${4-}" "
1851 /^${1//\//\\/}/ { print pfx \$1 sfx }
1855 # Complete symbol names from a tag file.
1856 # Usage: __git_complete_symbol [<option>]...
1857 # --tags=<file>: The tag file to list symbol names from instead of the
1859 # --pfx=<prefix>: A prefix to be added to each symbol name.
1860 # --cur=<word>: The current symbol name to be completed. Defaults to
1861 # the current word to be completed.
1862 # --sfx=<suffix>: A suffix to be appended to each symbol name instead
1863 # of the default space.
1864 __git_complete_symbol () {
1865 local tags=tags pfx="" cur_="${cur-}" sfx=" "
1867 while test $# != 0; do
1869 --tags=*) tags="${1##--tags=}" ;;
1870 --pfx=*) pfx="${1##--pfx=}" ;;
1871 --cur=*) cur_="${1##--cur=}" ;;
1872 --sfx=*) sfx="${1##--sfx=}" ;;
1878 if test -r "$tags"; then
1879 __gitcomp_direct "$(__git_match_ctag "$cur_" "$tags" "$pfx" "$sfx")"
1885 __git_has_doubledash && return
1889 __gitcomp_builtin grep
1894 case "$cword,$prev" in
1896 __git_complete_symbol && return
1907 __gitcomp_builtin help
1911 if test -n "$GIT_TESTING_ALL_COMMAND_LIST"
1913 __gitcomp "$GIT_TESTING_ALL_COMMAND_LIST $(__git --list-cmds=alias,list-guide) gitk"
1915 __gitcomp "$(__git --list-cmds=main,nohelpers,alias,list-guide) gitk"
1924 false true umask group all world everybody
1925 " "" "${cur##--shared=}"
1929 __gitcomp_builtin init
1939 __gitcomp_builtin ls-files
1944 # XXX ignore options like --modified and always suggest all cached
1946 __git_complete_index_file "--cached"
1953 __gitcomp_builtin ls-remote
1957 __gitcomp_nl "$(__git_remotes)"
1964 __gitcomp_builtin ls-tree
1972 # Options that go well for log, shortlog and gitk
1973 __git_log_common_options="
1975 --branches --tags --remotes
1976 --first-parent --merges --no-merges
1978 --max-age= --since= --after=
1979 --min-age= --until= --before=
1980 --min-parents= --max-parents=
1981 --no-min-parents --no-max-parents
1983 # Options that go well for log and gitk (not shortlog)
1984 __git_log_gitk_options="
1985 --dense --sparse --full-history
1986 --simplify-merges --simplify-by-decoration
1987 --left-right --notes --no-notes
1989 # Options that go well for log and shortlog (not gitk)
1990 __git_log_shortlog_options="
1991 --author= --committer= --grep=
1992 --all-match --invert-grep
1995 __git_log_pretty_formats="oneline short medium full fuller reference email raw format: tformat: mboxrd"
1996 __git_log_date_formats="relative iso8601 iso8601-strict rfc2822 short local default raw unix format:"
2000 __git_has_doubledash && return
2001 __git_find_repo_path
2004 if [ -f "$__git_repo_path/MERGE_HEAD" ]; then
2007 case "$prev,$cur" in
2009 return # fall back to Bash filename completion
2012 __git_complete_symbol --cur="${cur#:}" --sfx=":"
2016 __git_complete_symbol
2021 --pretty=*|--format=*)
2022 __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
2027 __gitcomp "$__git_log_date_formats" "" "${cur##--date=}"
2031 __gitcomp "full short no" "" "${cur##--decorate=}"
2035 __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}"
2039 __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}"
2043 __gitcomp "sorted unsorted" "" "${cur##--no-walk=}"
2048 $__git_log_common_options
2049 $__git_log_shortlog_options
2050 $__git_log_gitk_options
2051 --root --topo-order --date-order --reverse
2052 --follow --full-diff
2053 --abbrev-commit --no-abbrev-commit --abbrev=
2054 --relative-date --date=
2055 --pretty= --format= --oneline
2060 --decorate --decorate= --no-decorate
2062 --no-walk --no-walk= --do-walk
2063 --parents --children
2064 --expand-tabs --expand-tabs= --no-expand-tabs
2066 $__git_diff_common_options
2067 --pickaxe-all --pickaxe-regex
2072 return # fall back to Bash filename completion
2075 __git_complete_symbol --cur="${cur#-L:}" --sfx=":"
2079 __git_complete_symbol --pfx="-G" --cur="${cur#-G}"
2083 __git_complete_symbol --pfx="-S" --cur="${cur#-S}"
2087 __git_complete_revlist
2092 __git_complete_strategy && return
2096 __gitcomp_builtin merge
2106 __gitcomp "$__git_mergetools_common tortoisemerge" "" "${cur##--tool=}"
2110 __gitcomp "--tool= --prompt --no-prompt --gui --no-gui"
2120 __gitcomp_builtin merge-base
2131 __gitcomp_builtin mv
2136 if [ $(__git_count_arguments "mv") -gt 0 ]; then
2137 # We need to show both cached and untracked files (including
2138 # empty directories) since this may not be the last argument.
2139 __git_complete_index_file "--cached --others --directory"
2141 __git_complete_index_file "--cached"
2147 local subcommands='add append copy edit get-ref list merge prune remove show'
2148 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2150 case "$subcommand,$cur" in
2152 __gitcomp_builtin notes
2160 __gitcomp "$subcommands --ref"
2164 *,--reuse-message=*|*,--reedit-message=*)
2165 __git_complete_refs --cur="${cur#*=}"
2168 __gitcomp_builtin notes_$subcommand
2171 # this command does not take a ref, do not complete it
2187 __git_complete_strategy && return
2190 --recurse-submodules=*)
2191 __gitcomp "$__git_fetch_recurse_submodules" "" "${cur##--recurse-submodules=}"
2195 __gitcomp_builtin pull
2200 __git_complete_remote_or_refspec
2203 __git_push_recurse_submodules="check on-demand only"
2205 __git_complete_force_with_lease ()
2213 __git_complete_refs --cur="${cur_#*:}"
2216 __git_complete_refs --cur="$cur_"
2225 __gitcomp_nl "$(__git_remotes)"
2228 --recurse-submodules)
2229 __gitcomp "$__git_push_recurse_submodules"
2235 __gitcomp_nl "$(__git_remotes)" "" "${cur##--repo=}"
2238 --recurse-submodules=*)
2239 __gitcomp "$__git_push_recurse_submodules" "" "${cur##--recurse-submodules=}"
2242 --force-with-lease=*)
2243 __git_complete_force_with_lease "${cur##--force-with-lease=}"
2247 __gitcomp_builtin push
2251 __git_complete_remote_or_refspec
2259 --creation-factor= --no-dual-color
2260 $__git_diff_common_options
2265 __git_complete_revlist
2268 __git_rebase_inprogress_options="--continue --skip --abort --quit --show-current-patch"
2269 __git_rebase_interactive_inprogress_options="$__git_rebase_inprogress_options --edit-todo"
2273 __git_find_repo_path
2274 if [ -f "$__git_repo_path"/rebase-merge/interactive ]; then
2275 __gitcomp "$__git_rebase_interactive_inprogress_options"
2277 elif [ -d "$__git_repo_path"/rebase-apply ] || \
2278 [ -d "$__git_repo_path"/rebase-merge ]; then
2279 __gitcomp "$__git_rebase_inprogress_options"
2282 __git_complete_strategy && return
2285 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
2289 __git_complete_refs --cur="${cur##--onto=}"
2293 __gitcomp_builtin rebase "" \
2294 "$__git_rebase_interactive_inprogress_options"
2303 local subcommands="show delete expire"
2304 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2306 if [ -z "$subcommand" ]; then
2307 __gitcomp "$subcommands"
2313 __git_send_email_confirm_options="always never auto cc compose"
2314 __git_send_email_suppresscc_options="author self cc bodycc sob cccmd body all"
2319 --to|--cc|--bcc|--from)
2320 __gitcomp "$(__git send-email --dump-aliases)"
2328 $__git_send_email_confirm_options
2329 " "" "${cur##--confirm=}"
2334 $__git_send_email_suppresscc_options
2335 " "" "${cur##--suppress-cc=}"
2339 --smtp-encryption=*)
2340 __gitcomp "ssl tls" "" "${cur##--smtp-encryption=}"
2346 " "" "${cur##--thread=}"
2349 --to=*|--cc=*|--bcc=*|--from=*)
2350 __gitcomp "$(__git send-email --dump-aliases)" "" "${cur#--*=}"
2354 __gitcomp_builtin send-email "--annotate --bcc --cc --cc-cmd --chain-reply-to
2355 --compose --confirm= --dry-run --envelope-sender
2357 --in-reply-to --no-chain-reply-to --no-signed-off-by-cc
2358 --no-suppress-from --no-thread --quiet --reply-to
2359 --signed-off-by-cc --smtp-pass --smtp-server
2360 --smtp-server-port --smtp-encryption= --smtp-user
2361 --subject --suppress-cc= --suppress-from --thread --to
2362 --validate --no-validate
2363 $__git_format_patch_extra_options"
2367 __git_complete_revlist
2378 local untracked_state
2381 --ignore-submodules=*)
2382 __gitcomp "none untracked dirty all" "" "${cur##--ignore-submodules=}"
2385 --untracked-files=*)
2386 __gitcomp "$__git_untracked_file_modes" "" "${cur##--untracked-files=}"
2391 always never auto column row plain dense nodense
2392 " "" "${cur##--column=}"
2396 __gitcomp_builtin status
2401 untracked_state="$(__git_get_option_value "-u" "--untracked-files=" \
2402 "$__git_untracked_file_modes" "status.showUntrackedFiles")"
2404 case "$untracked_state" in
2406 # --ignored option does not matter
2410 complete_opt="--cached --directory --no-empty-directory --others"
2412 if [ -n "$(__git_find_on_cmdline "--ignored")" ]; then
2413 complete_opt="$complete_opt --ignored --exclude=*"
2418 __git_complete_index_file "$complete_opt"
2423 local dwim_opt="$(__git_checkout_default_dwim_mode)"
2427 # Complete local branches (and DWIM branch
2428 # remote branch names) for an option argument
2429 # specifying a new branch name. This is for
2430 # convenience, assuming new branches are
2431 # possibly based on pre-existing branch names.
2432 __git_complete_refs $dwim_opt --mode="heads"
2441 __gitcomp "diff3 merge" "" "${cur##--conflict=}"
2444 __gitcomp_builtin switch
2447 # Unlike in git checkout, git switch --orphan does not take
2448 # a start point. Thus we really have nothing to complete after
2450 if [ -n "$(__git_find_on_cmdline "--orphan")" ]; then
2454 # At this point, we've already handled special completion for
2455 # -c/-C, and --orphan. There are 3 main things left to
2457 # 1) a start-point for -c/-C or -d/--detach
2458 # 2) a remote head, for --track
2459 # 3) a branch name, possibly including DWIM remote branches
2461 if [ -n "$(__git_find_on_cmdline "-c -C -d --detach")" ]; then
2462 __git_complete_refs --mode="refs"
2463 elif [ -n "$(__git_find_on_cmdline "--track")" ]; then
2464 __git_complete_refs --mode="remote-heads"
2466 __git_complete_refs $dwim_opt --mode="heads"
2472 __git_config_get_set_variables ()
2474 local prevword word config_file= c=$cword
2475 while [ $c -gt 1 ]; do
2478 --system|--global|--local|--file=*)
2483 config_file="$word $prevword"
2491 __git config $config_file --name-only --list
2495 __git_compute_config_vars ()
2497 test -n "$__git_config_vars" ||
2498 __git_config_vars="$(git help --config-for-completion | sort -u)"
2501 # Completes possible values of various configuration variables.
2503 # Usage: __git_complete_config_variable_value [<option>]...
2504 # --varname=<word>: The name of the configuration variable whose value is
2505 # to be completed. Defaults to the previous word on the
2507 # --cur=<word>: The current value to be completed. Defaults to the current
2508 # word to be completed.
2509 __git_complete_config_variable_value ()
2511 local varname="$prev" cur_="$cur"
2513 while test $# != 0; do
2515 --varname=*) varname="${1##--varname=}" ;;
2516 --cur=*) cur_="${1##--cur=}" ;;
2522 if [ "${BASH_VERSINFO[0]:-0}" -ge 4 ]; then
2523 varname="${varname,,}"
2525 varname="$(echo "$varname" |tr A-Z a-z)"
2529 branch.*.remote|branch.*.pushremote)
2530 __gitcomp_nl "$(__git_remotes)" "" "$cur_"
2534 __git_complete_refs --cur="$cur_"
2538 __gitcomp "false true merges preserve interactive" "" "$cur_"
2542 __gitcomp_nl "$(__git_remotes)" "" "$cur_"
2546 local remote="${varname#remote.}"
2547 remote="${remote%.fetch}"
2548 if [ -z "$cur_" ]; then
2549 __gitcomp_nl "refs/heads/" "" "" ""
2552 __gitcomp_nl "$(__git_refs_remotes "$remote")" "" "$cur_"
2556 local remote="${varname#remote.}"
2557 remote="${remote%.push}"
2558 __gitcomp_nl "$(__git for-each-ref \
2559 --format='%(refname):%(refname)' refs/heads)" "" "$cur_"
2562 pull.twohead|pull.octopus)
2563 __git_compute_merge_strategies
2564 __gitcomp "$__git_merge_strategies" "" "$cur_"
2568 __gitcomp "false true" "" "$cur_"
2573 normal black red green yellow blue magenta cyan white
2574 bold dim ul blink reverse
2579 __gitcomp "false true always never auto" "" "$cur_"
2583 __gitcomp "$__git_diff_submodule_formats" "" "$cur_"
2587 __gitcomp "man info web html" "" "$cur_"
2591 __gitcomp "$__git_log_date_formats" "" "$cur_"
2594 sendemail.aliasfiletype)
2595 __gitcomp "mutt mailrc pine elm gnus" "" "$cur_"
2599 __gitcomp "$__git_send_email_confirm_options" "" "$cur_"
2602 sendemail.suppresscc)
2603 __gitcomp "$__git_send_email_suppresscc_options" "" "$cur_"
2606 sendemail.transferencoding)
2607 __gitcomp "7bit 8bit quoted-printable base64" "" "$cur_"
2616 # Completes configuration sections, subsections, variable names.
2618 # Usage: __git_complete_config_variable_name [<option>]...
2619 # --cur=<word>: The current configuration section/variable name to be
2620 # completed. Defaults to the current word to be completed.
2621 # --sfx=<suffix>: A suffix to be appended to each fully completed
2622 # configuration variable name (but not to sections or
2623 # subsections) instead of the default space.
2624 __git_complete_config_variable_name ()
2626 local cur_="$cur" sfx
2628 while test $# != 0; do
2630 --cur=*) cur_="${1##--cur=}" ;;
2631 --sfx=*) sfx="${1##--sfx=}" ;;
2639 local pfx="${cur_%.*}."
2641 __gitcomp "remote pushRemote merge mergeOptions rebase" "$pfx" "$cur_" "$sfx"
2645 local pfx="${cur%.*}."
2647 __gitcomp_direct "$(__git_heads "$pfx" "$cur_" ".")"
2648 __gitcomp_nl_append $'autoSetupMerge\nautoSetupRebase\n' "$pfx" "$cur_" "$sfx"
2652 local pfx="${cur_%.*}."
2655 argPrompt cmd confirm needsFile noConsole noRescan
2656 prompt revPrompt revUnmerged title
2657 " "$pfx" "$cur_" "$sfx"
2661 local pfx="${cur_%.*}."
2663 __gitcomp "cmd path" "$pfx" "$cur_" "$sfx"
2667 local pfx="${cur_%.*}."
2669 __gitcomp "cmd path" "$pfx" "$cur_" "$sfx"
2673 local pfx="${cur_%.*}."
2675 __gitcomp "cmd path trustExitCode" "$pfx" "$cur_" "$sfx"
2679 local pfx="${cur_%.*}."
2681 __git_compute_all_commands
2682 __gitcomp_nl "$__git_all_commands" "$pfx" "$cur_" "$sfx"
2686 local pfx="${cur_%.*}."
2689 url proxy fetch push mirror skipDefaultUpdate
2690 receivepack uploadpack tagOpt pushurl
2691 " "$pfx" "$cur_" "$sfx"
2695 local pfx="${cur_%.*}."
2697 __gitcomp_nl "$(__git_remotes)" "$pfx" "$cur_" "."
2698 __gitcomp_nl_append "pushDefault" "$pfx" "$cur_" "$sfx"
2702 local pfx="${cur_%.*}."
2704 __gitcomp "insteadOf pushInsteadOf" "$pfx" "$cur_" "$sfx"
2708 __git_compute_config_vars
2709 __gitcomp "$__git_config_vars" "" "$cur_" "$sfx"
2712 __git_compute_config_vars
2713 __gitcomp "$(echo "$__git_config_vars" |
2726 # Completes '='-separated configuration sections/variable names and values
2727 # for 'git -c section.name=value'.
2729 # Usage: __git_complete_config_variable_name_and_value [<option>]...
2730 # --cur=<word>: The current configuration section/variable name/value to be
2731 # completed. Defaults to the current word to be completed.
2732 __git_complete_config_variable_name_and_value ()
2736 while test $# != 0; do
2738 --cur=*) cur_="${1##--cur=}" ;;
2746 __git_complete_config_variable_value \
2747 --varname="${cur_%%=*}" --cur="${cur_#*=}"
2750 __git_complete_config_variable_name --cur="$cur_" --sfx='='
2758 --get|--get-all|--unset|--unset-all)
2759 __gitcomp_nl "$(__git_config_get_set_variables)"
2763 __git_complete_config_variable_value
2769 __gitcomp_builtin config
2772 __git_complete_config_variable_name
2780 add rename remove set-head set-branches
2781 get-url set-url show prune update
2783 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2784 if [ -z "$subcommand" ]; then
2787 __gitcomp_builtin remote
2790 __gitcomp "$subcommands"
2796 case "$subcommand,$cur" in
2798 __gitcomp_builtin remote_add
2803 __gitcomp_builtin remote_set-head
2806 __gitcomp_builtin remote_set-branches
2808 set-head,*|set-branches,*)
2809 __git_complete_remote_or_refspec
2812 __gitcomp_builtin remote_update
2815 __gitcomp "$(__git_remotes) $(__git_get_config_variables "remotes")"
2818 __gitcomp_builtin remote_set-url
2821 __gitcomp_builtin remote_get-url
2824 __gitcomp_builtin remote_prune
2827 __gitcomp_nl "$(__git_remotes)"
2836 __gitcomp "short medium long" "" "${cur##--format=}"
2840 __gitcomp_builtin replace
2849 local subcommands="clear forget diff remaining status gc"
2850 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2851 if test -z "$subcommand"
2853 __gitcomp "$subcommands"
2860 __git_has_doubledash && return
2864 __gitcomp_builtin reset
2882 __gitcomp "diff3 merge" "" "${cur##--conflict=}"
2885 __git_complete_refs --cur="${cur##--source=}"
2888 __gitcomp_builtin restore
2893 __git_revert_inprogress_options=$__git_sequencer_inprogress_options
2897 __git_find_repo_path
2898 if [ -f "$__git_repo_path"/REVERT_HEAD ]; then
2899 __gitcomp "$__git_revert_inprogress_options"
2902 __git_complete_strategy && return
2905 __gitcomp_builtin revert "" \
2906 "$__git_revert_inprogress_options"
2917 __gitcomp_builtin rm
2922 __git_complete_index_file "--cached"
2927 __git_has_doubledash && return
2932 $__git_log_common_options
2933 $__git_log_shortlog_options
2934 --numbered --summary --email
2939 __git_complete_revlist
2944 __git_has_doubledash && return
2947 --pretty=*|--format=*)
2948 __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
2953 __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}"
2957 __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}"
2961 __gitcomp "$__git_color_moved_opts" "" "${cur##--color-moved=}"
2965 __gitcomp "$__git_color_moved_ws_opts" "" "${cur##--color-moved-ws=}"
2969 __gitcomp "--pretty= --format= --abbrev-commit --no-abbrev-commit
2970 --oneline --show-signature
2971 --expand-tabs --expand-tabs= --no-expand-tabs
2972 $__git_diff_common_options
2977 __git_complete_revlist_file
2984 __gitcomp_builtin show-branch
2988 __git_complete_revlist
2991 _git_sparse_checkout ()
2993 local subcommands="list init set disable"
2994 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2995 if [ -z "$subcommand" ]; then
2996 __gitcomp "$subcommands"
3000 case "$subcommand,$cur" in
3014 local save_opts='--all --keep-index --no-keep-index --quiet --patch --include-untracked'
3015 local subcommands='push list show apply clear drop pop create branch'
3016 local subcommand="$(__git_find_on_cmdline "$subcommands save")"
3017 if [ -z "$subcommand" -a -n "$(__git_find_on_cmdline "-p")" ]; then
3020 if [ -z "$subcommand" ]; then
3023 __gitcomp "$save_opts"
3026 if [ -z "$(__git_find_on_cmdline "$save_opts")" ]; then
3031 if [ -z "$(__git_find_on_cmdline "$save_opts")" ]; then
3032 __gitcomp "$subcommands"
3037 case "$subcommand,$cur" in
3039 __gitcomp "$save_opts --message"
3042 __gitcomp "$save_opts"
3045 __gitcomp "--index --quiet"
3051 __gitcomp "--name-status --oneline --patch-with-stat"
3054 __gitcomp "$__git_diff_common_options"
3059 if [ $cword -eq 3 ]; then
3062 __gitcomp_nl "$(__git stash list \
3063 | sed -n -e 's/:.*//p')"
3066 show,*|apply,*|drop,*|pop,*)
3067 __gitcomp_nl "$(__git stash list \
3068 | sed -n -e 's/:.*//p')"
3078 __git_has_doubledash && return
3080 local subcommands="add status init deinit update set-branch set-url summary foreach sync absorbgitdirs"
3081 local subcommand="$(__git_find_on_cmdline "$subcommands")"
3082 if [ -z "$subcommand" ]; then
3088 __gitcomp "$subcommands"
3094 case "$subcommand,$cur" in
3096 __gitcomp "--branch --force --name --reference --depth"
3099 __gitcomp "--cached --recursive"
3102 __gitcomp "--force --all"
3106 --init --remote --no-fetch
3107 --recommend-shallow --no-recommend-shallow
3108 --force --rebase --merge --reference --depth --recursive --jobs
3112 __gitcomp "--default --branch"
3115 __gitcomp "--cached --files --summary-limit"
3117 foreach,--*|sync,--*)
3118 __gitcomp "--recursive"
3128 init fetch clone rebase dcommit log find-rev
3129 set-tree commit-diff info create-ignore propget
3130 proplist show-ignore show-externals branch tag blame
3131 migrate mkdirs reset gc
3133 local subcommand="$(__git_find_on_cmdline "$subcommands")"
3134 if [ -z "$subcommand" ]; then
3135 __gitcomp "$subcommands"
3137 local remote_opts="--username= --config-dir= --no-auth-cache"
3139 --follow-parent --authors-file= --repack=
3140 --no-metadata --use-svm-props --use-svnsync-props
3141 --log-window-size= --no-checkout --quiet
3142 --repack-flags --use-log-author --localtime
3145 --ignore-paths= --include-paths= $remote_opts
3148 --template= --shared= --trunk= --tags=
3149 --branches= --stdlayout --minimize-url
3150 --no-metadata --use-svm-props --use-svnsync-props
3151 --rewrite-root= --prefix= $remote_opts
3154 --edit --rmdir --find-copies-harder --copy-similarity=
3157 case "$subcommand,$cur" in
3159 __gitcomp "--revision= --fetch-all $fc_opts"
3162 __gitcomp "--revision= $fc_opts $init_opts"
3165 __gitcomp "$init_opts"
3169 --merge --strategy= --verbose --dry-run
3170 --fetch-all --no-rebase --commit-url
3171 --revision --interactive $cmt_opts $fc_opts
3175 __gitcomp "--stdin $cmt_opts $fc_opts"
3177 create-ignore,--*|propget,--*|proplist,--*|show-ignore,--*|\
3178 show-externals,--*|mkdirs,--*)
3179 __gitcomp "--revision="
3183 --limit= --revision= --verbose --incremental
3184 --oneline --show-commit --non-recursive
3185 --authors-file= --color
3190 --merge --verbose --strategy= --local
3191 --fetch-all --dry-run $fc_opts
3195 __gitcomp "--message= --file= --revision= $cmt_opts"
3201 __gitcomp "--dry-run --message --tag"
3204 __gitcomp "--dry-run --message"
3207 __gitcomp "--git-format"
3211 --config-dir= --ignore-paths= --minimize
3212 --no-auth-cache --username=
3216 __gitcomp "--revision= --parent"
3227 while [ $c -lt $cword ]; do
3230 -d|--delete|-v|--verify)
3231 __gitcomp_direct "$(__git_tags "" "$cur" " ")"
3246 __gitcomp_direct "$(__git_tags "" "$cur" " ")"
3256 __gitcomp_builtin tag
3266 __git_complete_worktree_paths ()
3269 __gitcomp_nl "$(git worktree list --porcelain |
3270 # Skip the first entry: it's the path of the main worktree,
3271 # which can't be moved, removed, locked, etc.
3272 sed -n -e '2,$ s/^worktree //p')"
3277 local subcommands="add list lock move prune remove unlock"
3278 local subcommand subcommand_idx
3280 subcommand="$(__git_find_on_cmdline --show-idx "$subcommands")"
3281 subcommand_idx="${subcommand% *}"
3282 subcommand="${subcommand#* }"
3284 case "$subcommand,$cur" in
3286 __gitcomp "$subcommands"
3289 __gitcomp_builtin worktree_$subcommand
3291 add,*) # usage: git worktree add [<options>] <path> [<commit-ish>]
3292 # Here we are not completing an --option, it's either the
3295 -b|-B) # Complete refs for branch to be created/reseted.
3298 -*) # The previous word is an -o|--option without an
3299 # unstuck argument: have to complete the path for
3300 # the new worktree, so don't list anything, but let
3301 # Bash fall back to filename completion.
3303 *) # The previous word is not an --option, so it must
3304 # be either the 'add' subcommand, the unstuck
3305 # argument of an option (e.g. branch for -b|-B), or
3306 # the path for the new worktree.
3307 if [ $cword -eq $((subcommand_idx+1)) ]; then
3308 # Right after the 'add' subcommand: have to
3309 # complete the path, so fall back to Bash
3310 # filename completion.
3313 case "${words[cword-2]}" in
3314 -b|-B) # After '-b <branch>': have to
3315 # complete the path, so fall back
3316 # to Bash filename completion.
3318 *) # After the path: have to complete
3319 # the ref to be checked out.
3327 lock,*|remove,*|unlock,*)
3328 __git_complete_worktree_paths
3331 if [ $cword -eq $((subcommand_idx+1)) ]; then
3332 # The first parameter must be an existing working
3334 __git_complete_worktree_paths
3336 # The second parameter is the destination: it could
3337 # be any path, so don't list anything, but let Bash
3338 # fall back to filename completion.
3345 __git_complete_common () {
3350 __gitcomp_builtin "$command"
3355 __git_cmds_with_parseopt_helper=
3356 __git_support_parseopt_helper () {
3357 test -n "$__git_cmds_with_parseopt_helper" ||
3358 __git_cmds_with_parseopt_helper="$(__git --list-cmds=parseopt)"
3360 case " $__git_cmds_with_parseopt_helper " in
3370 __git_have_func () {
3371 declare -f -- "$1" >/dev/null 2>&1
3374 __git_complete_command () {
3376 local completion_func="_git_${command//-/_}"
3377 if ! __git_have_func $completion_func &&
3378 __git_have_func _completion_loader
3380 _completion_loader "git-$command"
3382 if __git_have_func $completion_func
3386 elif __git_support_parseopt_helper "$command"
3388 __git_complete_common "$command"
3397 local i c=1 command __git_dir __git_repo_path
3398 local __git_C_args C_args_count=0
3400 while [ $c -lt $cword ]; do
3403 --git-dir=*) __git_dir="${i#--git-dir=}" ;;
3404 --git-dir) ((c++)) ; __git_dir="${words[c]}" ;;
3405 --bare) __git_dir="." ;;
3406 --help) command="help"; break ;;
3407 -c|--work-tree|--namespace) ((c++)) ;;
3408 -C) __git_C_args[C_args_count++]=-C
3410 __git_C_args[C_args_count++]="${words[c]}"
3413 *) command="$i"; break ;;
3418 if [ -z "${command-}" ]; then
3420 --git-dir|-C|--work-tree)
3421 # these need a path argument, let's fall back to
3422 # Bash filename completion
3426 __git_complete_config_variable_name_and_value
3430 # we don't support completing these options' arguments
3448 --no-replace-objects
3453 if test -n "${GIT_TESTING_PORCELAIN_COMMAND_LIST-}"
3455 __gitcomp "$GIT_TESTING_PORCELAIN_COMMAND_LIST"
3457 __gitcomp "$(__git --list-cmds=list-mainporcelain,others,nohelpers,alias,list-complete,config)"
3464 __git_complete_command "$command" && return
3466 local expansion=$(__git_aliased_command "$command")
3467 if [ -n "$expansion" ]; then
3469 __git_complete_command "$expansion"
3475 __git_has_doubledash && return
3477 local __git_repo_path
3478 __git_find_repo_path
3481 if [ -f "$__git_repo_path/MERGE_HEAD" ]; then
3487 $__git_log_common_options
3488 $__git_log_gitk_options
3494 __git_complete_revlist
3497 if [[ -n ${ZSH_VERSION-} && -z ${GIT_SOURCING_ZSH_COMPLETION-} ]]; then
3498 echo "ERROR: this script is obsolete, please see git-completion.zsh" 1>&2
3504 local cur words cword prev
3505 _get_comp_words_by_ref -n =: cur words cword prev
3511 local wrapper="__git_wrap${2}"
3512 eval "$wrapper () { __git_func_wrap $2 ; }"
3513 complete -o bashdefault -o default -o nospace -F $wrapper $1 2>/dev/null \
3514 || complete -o default -o nospace -F $wrapper $1
3517 # Setup the completion for git commands
3518 # 1: command or alias
3519 # 2: function to call (e.g. `git`, `gitk`, `git_fetch`)
3524 if __git_have_func $2; then
3526 elif __git_have_func __$2_main; then
3528 elif __git_have_func _$2; then
3531 echo "ERROR: could not find function '$2'" 1>&2
3534 ___git_complete $1 $func
3537 ___git_complete git __git_main
3538 ___git_complete gitk __gitk_main
3540 # The following are necessary only for Cygwin, and only are needed
3541 # when the user has tab-completed the executable name and consequently
3542 # included the '.exe' suffix.
3544 if [ "$OSTYPE" = cygwin ]; then
3545 ___git_complete git.exe __git_main