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 # You can set the following environment variables to influence the behavior of
33 # the completion routines:
35 # GIT_COMPLETION_CHECKOUT_NO_GUESS
37 # When set to "1", do not include "DWIM" suggestions in git-checkout
38 # completion (e.g., completing "foo" when "origin/foo" exists).
40 case "$COMP_WORDBREAKS" in
42 *) COMP_WORDBREAKS="$COMP_WORDBREAKS:"
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
48 __git_find_repo_path ()
50 if [ -n "$__git_repo_path" ]; then
51 # we already know where it is
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
68 __git_repo_path="$(git rev-parse --git-dir 2>/dev/null)"
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
77 if [ -z "${1-}" ]; then
78 __git_find_repo_path || return 1
79 echo "$__git_repo_path"
80 elif [ -d "$1/.git" ]; then
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
91 git ${__git_C_args:+"${__git_C_args[@]}"} \
92 ${__git_dir:+--git-dir="$__git_dir"} "$@" 2>/dev/null
95 # The following function is based on code from:
97 # bash_completion - programmable completion functions for bash 3.2+
99 # Copyright © 2006-2008, Ian Macdonald <ian@caliban.org>
100 # © 2009-2010, Bash Completion Maintainers
101 # <bash-completion-devel@lists.alioth.debian.org>
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)
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.
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/>.
116 # The latest version of this software can be obtained here:
118 # http://bash-completion.alioth.debian.org/
122 # This function can be used to access a tokenized list of words
123 # on the command line:
125 # __git_reassemble_comp_words_by_ref '=:'
126 # if test "${words_[cword_-1]}" = -w
131 # The argument should be a collection of characters from the list of
132 # word completion separators (COMP_WORDBREAKS) to treat as ordinary
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.
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.
145 # Output: words_, cword_, cur_.
147 __git_reassemble_comp_words_by_ref()
149 local exclude i j first
150 # Which word separators to exclude?
151 exclude="${1//[^$COMP_WORDBREAKS]}"
153 if [ -z "$exclude" ]; then
154 words_=("${COMP_WORDS[@]}")
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.
165 [ -n "${COMP_WORDS[$i]}" ] &&
166 # word consists of excluded word separators
167 [ "${COMP_WORDS[$i]//[^$exclude]}" = "${COMP_WORDS[$i]}" ]
169 # Attach to the previous token,
170 # unless the previous token is the command name.
171 if [ $j -ge 2 ] && [ -n "$first" ]; then
175 words_[$j]=${words_[j]}${COMP_WORDS[i]}
176 if [ $i = $COMP_CWORD ]; then
179 if (($i < ${#COMP_WORDS[@]} - 1)); then
186 words_[$j]=${words_[j]}${COMP_WORDS[i]}
187 if [ $i = $COMP_CWORD ]; then
193 if ! type _get_comp_words_by_ref >/dev/null 2>&1; then
194 _get_comp_words_by_ref ()
196 local exclude cur_ words_ cword_
197 if [ "$1" = "-n" ]; then
201 __git_reassemble_comp_words_by_ref "$exclude"
202 cur_=${words_[cword_]}
203 while [ $# -gt 0 ]; do
209 prev=${words_[$cword_-1]}
212 words=("${words_[@]}")
223 # Fills the COMPREPLY array with prefiltered words without any additional
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
228 # 1: List of newline-separated matching completion words, complete with
239 local x i=${#COMPREPLY[@]}
241 if [[ "$x" == "$3"* ]]; then
242 COMPREPLY[i++]="$2$x$4"
253 # Generates completion reply, appending a space to possible completion words,
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).
262 local cur_="${3-$cur}"
268 local c i=0 IFS=$' \t\n'
271 if [[ $c == "$cur_"* ]]; then
276 COMPREPLY[i++]="${2-}$c"
283 # This function is equivalent to
285 # __gitcomp "$(git xxx --git-completion-helper) ..."
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
293 # spaces must be replaced with underscore for multi-word
294 # commands, e.g. "git remote add" becomes remote_add.
299 local var=__gitcomp_builtin_"${cmd/-/_}"
301 eval "options=\$$var"
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 "
308 options="${options/ $i / }"
310 eval "$var=\"$options\""
316 # Variation of __gitcomp_nl () that appends to the existing list of
317 # completion candidates, COMPREPLY.
318 __gitcomp_nl_append ()
321 __gitcompappend "$1" "${2-}" "${3-$cur}" "${4- }"
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
336 __gitcomp_nl_append "$@"
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
345 # 3: Generate possible completion matches for this word (optional).
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}" ""
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
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 ()
367 if [ "$2" == "--committable" ]; then
368 __git -C "$1" diff-index --name-only --relative HEAD
370 # NOTE: $2 is not quoted in order to support multiple options
371 __git -C "$1" ls-files --exclude-standard $2
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
384 local root="${2-.}" file
386 __git_ls_files_helper "$root" "$1" |
387 while read -r file; do
389 ?*/*) echo "${file%%/*}" ;;
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
399 # 3: A suffix to be appended to each listed branch (optional).
402 local pfx="${1-}" cur_="${2-}" sfx="${3-}"
404 __git for-each-ref --format="${pfx//\%/%%}%(refname:strip=2)$sfx" \
405 "refs/heads/$cur_*" "refs/heads/$cur_*/**"
408 # Lists tags from the local repository.
409 # Accepts the same positional parameters as __git_heads() above.
412 local pfx="${1-}" cur_="${2-}" sfx="${3-}"
414 __git for-each-ref --format="${pfx//\%/%%}%(refname:strip=2)$sfx" \
415 "refs/tags/$cur_*" "refs/tags/$cur_*/**"
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
427 # 5: A suffix to be appended to each listed ref (optional; ignored, if set
430 # Use __git_complete_refs() instead.
433 local i hash dir track="${2-}"
434 local list_refs_from=path remote="${1-}"
436 local pfx="${3-}" cur_="${4-$cur}" sfx="${5-}"
438 local fer_pfx="${pfx//\%/%%}" # "escape" for-each-ref format specifiers
441 dir="$__git_repo_path"
443 if [ -z "$remote" ]; then
444 if [ -z "$dir" ]; then
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
454 elif [ -d "$remote" ]; then
461 if [ "$list_refs_from" = path ]; then
462 if [[ "$cur_" == ^* ]]; then
471 refs=("$match*" "$match*/**")
475 for i in HEAD FETCH_HEAD ORIG_HEAD MERGE_HEAD; do
478 if [ -e "$dir/$i" ]; then
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*/**")
490 __git_dir="$dir" __git for-each-ref --format="$fer_pfx%($format)$sfx" \
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*/**" | \
505 __git ls-remote "$remote" "$match*" | \
506 while read -r hash i; do
509 *) echo "$pfx$i$sfx" ;;
514 if [ "$list_refs_from" = remote ]; then
516 $match*) echo "${pfx}HEAD$sfx" ;;
518 __git for-each-ref --format="$fer_pfx%(refname:strip=3)$sfx" \
519 "refs/remotes/$remote/$match*" \
520 "refs/remotes/$remote/$match*/**"
524 $match*) query_symref="HEAD" ;;
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
532 refs/*) echo "$pfx${i#refs/*/}$sfx" ;;
533 *) echo "$pfx$i$sfx" ;; # symbolic refs
541 # Completes refs, short and long, local and remote, symbolic and pseudo.
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
552 __git_complete_refs ()
554 local remote track pfx cur_="$cur" sfx=" "
556 while test $# != 0; do
558 --remote=*) remote="${1##--remote=}" ;;
559 --track) track="yes" ;;
560 --pfx=*) pfx="${1##--pfx=}" ;;
561 --cur=*) cur_="${1##--cur=}" ;;
562 --sfx=*) sfx="${1##--sfx=}" ;;
568 __gitcomp_direct "$(__git_refs "$remote" "$track" "$pfx" "$cur_" "$sfx")"
571 # __git_refs2 requires 1 argument (to pass to __git_refs)
572 # Deprecated: use __git_complete_fetch_refspecs() instead.
576 for i in $(__git_refs "$1"); do
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
588 __git_complete_fetch_refspecs ()
590 local i remote="$1" pfx="${2-}" cur_="${3-$cur}" sfx="${4- }"
593 for i in $(__git_refs "$remote" "" "" "$cur_") ; do
599 # __git_refs_remotes requires 1 argument (to pass to ls-remote)
600 __git_refs_remotes ()
603 __git ls-remote "$1" 'refs/heads/*' | \
604 while read -r hash i; do
605 echo "$i:refs/remotes/$1/${i#refs/heads/}"
612 test -d "$__git_repo_path/remotes" && ls -1 "$__git_repo_path/remotes"
616 # Returns true if $1 matches the name of a configured remote, false otherwise.
617 __git_is_configured_remote ()
620 for remote in $(__git_remotes); do
621 if [ "$remote" = "$1" ]; then
628 __git_list_merge_strategies ()
630 git merge -s help 2>&1 |
631 sed -n -e '/[Aa]vailable strategies are: /,/^$/{
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
646 __git_compute_merge_strategies ()
648 test -n "$__git_merge_strategies" ||
649 __git_merge_strategies=$(__git_list_merge_strategies)
652 __git_complete_revlist_file ()
654 local pfx ls ref cur_="$cur"
674 case "$COMP_WORDBREAKS" in
676 *) pfx="$ref:$pfx" ;;
679 __gitcomp_nl "$(__git ls-tree "$ls" \
680 | sed '/^100... blob /{
696 pfx="${cur_%...*}..."
698 __git_complete_refs --pfx="$pfx" --cur="$cur_"
703 __git_complete_refs --pfx="$pfx" --cur="$cur_"
712 # __git_complete_index_file requires 1 argument:
713 # 1: the options to pass to ls-file
715 # The exception is --committable, which finds the files appropriate commit.
716 __git_complete_index_file ()
718 local pfx="" cur_="$cur"
728 __gitcomp_file "$(__git_index_files "$1" ${pfx:+"$pfx"})" "$pfx" "$cur_"
731 __git_complete_file ()
733 __git_complete_revlist_file
736 __git_complete_revlist ()
738 __git_complete_revlist_file
741 __git_complete_remote_or_refspec ()
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
748 while [ $c -lt $cword ]; do
751 --mirror) [ "$cmd" = "push" ] && no_complete_refspec=1 ;;
752 -d|--delete) [ "$cmd" = "push" ] && lhs=0 ;;
755 push) no_complete_refspec=1 ;;
763 *) remote="$i"; break ;;
767 if [ -z "$remote" ]; then
768 __gitcomp_nl "$(__git_remotes)"
771 if [ $no_complete_refspec = 1 ]; then
774 [ "$remote" = "." ] && remote=
777 case "$COMP_WORDBREAKS" in
779 *) pfx="${cur_%%:*}:" ;;
791 if [ $lhs = 1 ]; then
792 __git_complete_fetch_refspecs "$remote" "$pfx" "$cur_"
794 __git_complete_refs --pfx="$pfx" --cur="$cur_"
798 if [ $lhs = 1 ]; then
799 __git_complete_refs --remote="$remote" --pfx="$pfx" --cur="$cur_"
801 __git_complete_refs --pfx="$pfx" --cur="$cur_"
805 if [ $lhs = 1 ]; then
806 __git_complete_refs --pfx="$pfx" --cur="$cur_"
808 __git_complete_refs --remote="$remote" --pfx="$pfx" --cur="$cur_"
814 __git_complete_strategy ()
816 __git_compute_merge_strategies
819 __gitcomp "$__git_merge_strategies"
824 __gitcomp "$__git_merge_strategies" "" "${cur##--strategy=}"
832 if test -n "${GIT_TESTING_COMMAND_COMPLETION:-}"
834 printf "%s" "${GIT_TESTING_COMMAND_COMPLETION}"
836 git help -a|egrep '^ [a-zA-Z0-9]'
840 __git_list_all_commands ()
843 for i in $(__git_commands)
846 *--*) : helper pattern;;
853 __git_compute_all_commands ()
855 test -n "$__git_all_commands" ||
856 __git_all_commands=$(__git_list_all_commands)
859 __git_list_porcelain_commands ()
862 __git_compute_all_commands
863 for i in $__git_all_commands
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;;
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;;
907 pack-objects) : plumbing;;
908 pack-redundant) : plumbing;;
909 pack-refs) : plumbing;;
910 parse-remote) : plumbing;;
911 patch-id) : plumbing;;
913 prune-packed) : plumbing;;
914 quiltimport) : import;;
915 read-tree) : plumbing;;
916 receive-pack) : plumbing;;
917 remote-*) : transport;;
919 rev-list) : plumbing;;
920 rev-parse) : plumbing;;
921 runstatus) : plumbing;;
922 sh-setup) : internal;;
924 show-ref) : plumbing;;
925 send-pack) : plumbing;;
926 show-index) : plumbing;;
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;;
939 verify-pack) : infrequent;;
940 verify-tag) : plumbing;;
946 __git_porcelain_commands=
947 __git_compute_porcelain_commands ()
949 test -n "$__git_porcelain_commands" ||
950 __git_porcelain_commands=$(__git_list_porcelain_commands)
953 # Lists all set config variables starting with the given section prefix,
954 # with the prefix removed.
955 __git_get_config_variables ()
957 local section="$1" i IFS=$'\n'
958 for i in $(__git config --name-only --get-regexp "^$section\..*"); do
959 echo "${i#$section.}"
963 __git_pretty_aliases ()
965 __git_get_config_variables "pretty"
970 __git_get_config_variables "alias"
973 # __git_aliased_command requires 1 argument
974 __git_aliased_command ()
976 local word cmdline=$(__git config --get "alias.$1")
977 for word in $cmdline; do
983 \!*) : shell command alias ;;
985 *=*) : setting env ;;
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 ;;
998 # __git_find_on_cmdline requires 1 argument
999 __git_find_on_cmdline ()
1001 local word subcommand c=1
1002 while [ $c -lt $cword ]; do
1004 for subcommand in $1; do
1005 if [ "$subcommand" = "$word" ]; then
1014 # Echo the value of an option set on the command line or config
1016 # $1: short option name
1017 # $2: long option name including =
1018 # $3: list of possible values
1019 # $4: config string (optional)
1022 # result="$(__git_get_option_value "-d" "--do-something=" \
1023 # "yes no" "core.doSomething")"
1025 # result is then either empty (no option set) or "yes" or "no"
1027 # __git_get_option_value requires 3 arguments
1028 __git_get_option_value ()
1030 local c short_opt long_opt val
1031 local result= values config_key word
1039 while [ $c -ge 0 ]; do
1041 for val in $values; do
1042 if [ "$short_opt$val" = "$word" ] ||
1043 [ "$long_opt$val" = "$word" ]; then
1051 if [ -n "$config_key" ] && [ -z "$result" ]; then
1052 result="$(__git config "$config_key")"
1058 __git_has_doubledash ()
1061 while [ $c -lt $cword ]; do
1062 if [ "--" = "${words[c]}" ]; then
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
1078 # __git_count_arguments requires 1 argument: the git command executed.
1079 __git_count_arguments ()
1083 # Skip "git" (first argument)
1084 for ((i=1; i < ${#words[@]}; i++)); do
1089 # Good; we can assume that the following are only non
1094 # Skip the specified git command and discard git
1107 __git_whitespacelist="nowarn warn error error-all fix"
1108 __git_am_inprogress_options="--skip --continue --resolved --abort"
1112 __git_find_repo_path
1113 if [ -d "$__git_repo_path"/rebase-apply ]; then
1114 __gitcomp "$__git_am_inprogress_options"
1119 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
1123 __gitcomp_builtin am "--no-utf8" \
1124 "$__git_am_inprogress_options"
1133 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
1137 __gitcomp_builtin apply
1146 __gitcomp_builtin add
1150 local complete_opt="--others --modified --directory --no-empty-directory"
1151 if test -n "$(__git_find_on_cmdline "-u --update")"
1153 complete_opt="--modified"
1155 __git_complete_index_file "$complete_opt"
1162 __gitcomp "$(git archive --list)" "" "${cur##--format=}"
1166 __gitcomp_nl "$(__git_remotes)" "" "${cur##--remote=}"
1171 --format= --list --verbose
1172 --prefix= --remote= --exec= --output
1182 __git_has_doubledash && return
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"
1191 __gitcomp "replay start"
1196 case "$subcommand" in
1197 bad|good|reset|skip|start)
1207 local i c=1 only_local_ref="n" has_r="n"
1209 while [ $c -lt $cword ]; do
1212 -d|--delete|-m|--move) only_local_ref="y" ;;
1213 -r|--remotes) has_r="y" ;;
1219 --set-upstream-to=*)
1220 __git_complete_refs --cur="${cur##--set-upstream-to=}"
1223 __gitcomp_builtin branch "--no-color --no-abbrev
1224 --no-track --no-column
1228 if [ $only_local_ref = "y" -a $has_r = "n" ]; then
1229 __gitcomp_direct "$(__git_heads "" "$cur" " ")"
1239 local cmd="${words[2]}"
1242 __gitcomp "create list-heads verify unbundle"
1245 # looking for a file
1250 __git_complete_revlist
1259 __git_has_doubledash && return
1263 __gitcomp "diff3 merge" "" "${cur##--conflict=}"
1266 __gitcomp_builtin checkout "--no-track --no-recurse-submodules"
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
1276 __git_complete_refs $track_opt
1286 __git_cherry_pick_inprogress_options="--continue --quit --abort"
1290 __git_find_repo_path
1291 if [ -f "$__git_repo_path"/CHERRY_PICK_HEAD ]; then
1292 __gitcomp "$__git_cherry_pick_inprogress_options"
1297 __gitcomp_builtin cherry-pick "" \
1298 "$__git_cherry_pick_inprogress_options"
1310 __gitcomp_builtin clean
1315 # XXX should we check for -x option ?
1316 __git_complete_index_file "--others --directory"
1323 __gitcomp_builtin clone "--no-single-branch"
1329 __git_untracked_file_modes="all no normal"
1342 __gitcomp "default scissors strip verbatim whitespace
1343 " "" "${cur##--cleanup=}"
1346 --reuse-message=*|--reedit-message=*|\
1347 --fixup=*|--squash=*)
1348 __git_complete_refs --cur="${cur#*=}"
1351 --untracked-files=*)
1352 __gitcomp "$__git_untracked_file_modes" "" "${cur##--untracked-files=}"
1356 __gitcomp_builtin commit "--no-edit --verify"
1360 if __git rev-parse --verify --quiet HEAD >/dev/null; then
1361 __git_complete_index_file "--committable"
1363 # This is the first commit
1364 __git_complete_index_file "--cached"
1372 __gitcomp_builtin describe
1378 __git_diff_algorithms="myers minimal patience histogram"
1380 __git_diff_submodule_formats="diff log short"
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
1397 --submodule --submodule= --ignore-submodules
1402 __git_has_doubledash && return
1406 __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}"
1410 __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}"
1414 __gitcomp "--cached --staged --pickaxe-all --pickaxe-regex
1415 --base --ours --theirs --no-index
1416 $__git_diff_common_options
1421 __git_complete_revlist_file
1424 __git_mergetools_common="diffuse diffmerge ecmerge emerge kdiff3 meld opendiff
1425 tkdiff vimdiff gvimdiff xxdiff araxis p4merge bc codecompare
1430 __git_has_doubledash && return
1434 __gitcomp "$__git_mergetools_common kompare" "" "${cur##--tool=}"
1438 __gitcomp_builtin difftool "$__git_diff_common_options
1439 --base --cached --ours --theirs
1440 --pickaxe-all --pickaxe-regex
1446 __git_complete_revlist_file
1449 __git_fetch_recurse_submodules="yes on-demand no"
1451 __git_fetch_options="
1452 --quiet --verbose --append --upload-pack --force --keep --depth=
1453 --tags --no-tags --all --prune --dry-run --recurse-submodules=
1454 --unshallow --update-shallow
1460 --recurse-submodules=*)
1461 __gitcomp "$__git_fetch_recurse_submodules" "" "${cur##--recurse-submodules=}"
1465 __gitcomp_builtin fetch "--no-tags"
1469 __git_complete_remote_or_refspec
1472 __git_format_patch_options="
1473 --stdout --attach --no-attach --thread --thread= --no-thread
1474 --numbered --start-number --numbered-files --keep-subject --signoff
1475 --signature --no-signature --in-reply-to= --cc= --full-index --binary
1476 --not --all --cover-letter --no-prefix --src-prefix= --dst-prefix=
1477 --inline --suffix= --ignore-if-in-upstream --subject-prefix=
1478 --output-directory --reroll-count --to= --quiet --notes
1481 _git_format_patch ()
1487 " "" "${cur##--thread=}"
1491 __gitcomp "$__git_format_patch_options"
1495 __git_complete_revlist
1502 __gitcomp_builtin fsck "--no-reflogs"
1512 __gitcomp_builtin gc
1523 # Lists matching symbol names from a tag (as in ctags) file.
1524 # 1: List symbol names matching this word.
1525 # 2: The tag file to list symbol names from.
1526 # 3: A prefix to be added to each listed symbol name (optional).
1527 # 4: A suffix to be appended to each listed symbol name (optional).
1528 __git_match_ctag () {
1529 awk -v pfx="${3-}" -v sfx="${4-}" "
1530 /^${1//\//\\/}/ { print pfx \$1 sfx }
1534 # Complete symbol names from a tag file.
1535 # Usage: __git_complete_symbol [<option>]...
1536 # --tags=<file>: The tag file to list symbol names from instead of the
1538 # --pfx=<prefix>: A prefix to be added to each symbol name.
1539 # --cur=<word>: The current symbol name to be completed. Defaults to
1540 # the current word to be completed.
1541 # --sfx=<suffix>: A suffix to be appended to each symbol name instead
1542 # of the default space.
1543 __git_complete_symbol () {
1544 local tags=tags pfx="" cur_="${cur-}" sfx=" "
1546 while test $# != 0; do
1548 --tags=*) tags="${1##--tags=}" ;;
1549 --pfx=*) pfx="${1##--pfx=}" ;;
1550 --cur=*) cur_="${1##--cur=}" ;;
1551 --sfx=*) sfx="${1##--sfx=}" ;;
1557 if test -r "$tags"; then
1558 __gitcomp_direct "$(__git_match_ctag "$cur_" "$tags" "$pfx" "$sfx")"
1564 __git_has_doubledash && return
1570 --text --ignore-case --word-regexp --invert-match
1571 --full-name --line-number
1572 --extended-regexp --basic-regexp --fixed-strings
1575 --files-with-matches --name-only
1576 --files-without-match
1579 --and --or --not --all-match
1580 --break --heading --show-function --function-context
1581 --untracked --no-index
1587 case "$cword,$prev" in
1589 __git_complete_symbol && return
1600 __gitcomp "--all --guides --info --man --web"
1604 __git_compute_all_commands
1605 __gitcomp "$__git_all_commands $(__git_aliases)
1606 attributes cli core-tutorial cvs-migration
1607 diffcore everyday gitk glossary hooks ignore modules
1608 namespaces repository-layout revisions tutorial tutorial-2
1618 false true umask group all world everybody
1619 " "" "${cur##--shared=}"
1623 __gitcomp "--quiet --bare --template= --shared --shared="
1633 __gitcomp "--cached --deleted --modified --others --ignored
1634 --stage --directory --no-empty-directory --unmerged
1635 --killed --exclude= --exclude-from=
1636 --exclude-per-directory= --exclude-standard
1637 --error-unmatch --with-tree= --full-name
1638 --abbrev --ignored --exclude-per-directory
1644 # XXX ignore options like --modified and always suggest all cached
1646 __git_complete_index_file "--cached"
1653 __gitcomp "--heads --tags --refs --get-url --symref"
1657 __gitcomp_nl "$(__git_remotes)"
1665 # Options that go well for log, shortlog and gitk
1666 __git_log_common_options="
1668 --branches --tags --remotes
1669 --first-parent --merges --no-merges
1671 --max-age= --since= --after=
1672 --min-age= --until= --before=
1673 --min-parents= --max-parents=
1674 --no-min-parents --no-max-parents
1676 # Options that go well for log and gitk (not shortlog)
1677 __git_log_gitk_options="
1678 --dense --sparse --full-history
1679 --simplify-merges --simplify-by-decoration
1680 --left-right --notes --no-notes
1682 # Options that go well for log and shortlog (not gitk)
1683 __git_log_shortlog_options="
1684 --author= --committer= --grep=
1685 --all-match --invert-grep
1688 __git_log_pretty_formats="oneline short medium full fuller email raw format:"
1689 __git_log_date_formats="relative iso8601 rfc2822 short local default raw"
1693 __git_has_doubledash && return
1694 __git_find_repo_path
1697 if [ -f "$__git_repo_path/MERGE_HEAD" ]; then
1700 case "$prev,$cur" in
1702 return # fall back to Bash filename completion
1705 __git_complete_symbol --cur="${cur#:}" --sfx=":"
1709 __git_complete_symbol
1714 --pretty=*|--format=*)
1715 __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
1720 __gitcomp "$__git_log_date_formats" "" "${cur##--date=}"
1724 __gitcomp "full short no" "" "${cur##--decorate=}"
1728 __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}"
1732 __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}"
1737 $__git_log_common_options
1738 $__git_log_shortlog_options
1739 $__git_log_gitk_options
1740 --root --topo-order --date-order --reverse
1741 --follow --full-diff
1742 --abbrev-commit --abbrev=
1743 --relative-date --date=
1744 --pretty= --format= --oneline
1749 --decorate --decorate=
1751 --parents --children
1753 $__git_diff_common_options
1754 --pickaxe-all --pickaxe-regex
1759 return # fall back to Bash filename completion
1762 __git_complete_symbol --cur="${cur#-L:}" --sfx=":"
1766 __git_complete_symbol --pfx="-G" --cur="${cur#-G}"
1770 __git_complete_symbol --pfx="-S" --cur="${cur#-S}"
1774 __git_complete_revlist
1777 # Common merge options shared by git-merge(1) and git-pull(1).
1778 __git_merge_options="
1779 --no-commit --no-stat --log --no-log --squash --strategy
1780 --commit --stat --no-squash --ff --no-ff --ff-only --edit --no-edit
1781 --verify-signatures --no-verify-signatures --gpg-sign
1782 --quiet --verbose --progress --no-progress
1787 __git_complete_strategy && return
1791 __gitcomp "$__git_merge_options
1792 --rerere-autoupdate --no-rerere-autoupdate --abort --continue"
1802 __gitcomp "$__git_mergetools_common tortoisemerge" "" "${cur##--tool=}"
1806 __gitcomp "--tool= --prompt --no-prompt"
1816 __gitcomp "--octopus --independent --is-ancestor --fork-point"
1827 __gitcomp "--dry-run"
1832 if [ $(__git_count_arguments "mv") -gt 0 ]; then
1833 # We need to show both cached and untracked files (including
1834 # empty directories) since this may not be the last argument.
1835 __git_complete_index_file "--cached --others --directory"
1837 __git_complete_index_file "--cached"
1843 __gitcomp "--tags --all --stdin"
1848 local subcommands='add append copy edit list prune remove show'
1849 local subcommand="$(__git_find_on_cmdline "$subcommands")"
1851 case "$subcommand,$cur" in
1861 __gitcomp "$subcommands --ref"
1865 add,--reuse-message=*|append,--reuse-message=*|\
1866 add,--reedit-message=*|append,--reedit-message=*)
1867 __git_complete_refs --cur="${cur#*=}"
1870 __gitcomp '--file= --message= --reedit-message=
1877 __gitcomp '--dry-run --verbose'
1895 __git_complete_strategy && return
1898 --recurse-submodules=*)
1899 __gitcomp "$__git_fetch_recurse_submodules" "" "${cur##--recurse-submodules=}"
1904 --rebase --no-rebase
1905 --autostash --no-autostash
1906 $__git_merge_options
1907 $__git_fetch_options
1912 __git_complete_remote_or_refspec
1915 __git_push_recurse_submodules="check on-demand only"
1917 __git_complete_force_with_lease ()
1925 __git_complete_refs --cur="${cur_#*:}"
1928 __git_complete_refs --cur="$cur_"
1937 __gitcomp_nl "$(__git_remotes)"
1940 --recurse-submodules)
1941 __gitcomp "$__git_push_recurse_submodules"
1947 __gitcomp_nl "$(__git_remotes)" "" "${cur##--repo=}"
1950 --recurse-submodules=*)
1951 __gitcomp "$__git_push_recurse_submodules" "" "${cur##--recurse-submodules=}"
1954 --force-with-lease=*)
1955 __git_complete_force_with_lease "${cur##--force-with-lease=}"
1960 --all --mirror --tags --dry-run --force --verbose
1961 --quiet --prune --delete --follow-tags
1962 --receive-pack= --repo= --set-upstream
1963 --force-with-lease --force-with-lease= --recurse-submodules=
1968 __git_complete_remote_or_refspec
1973 __git_find_repo_path
1974 if [ -f "$__git_repo_path"/rebase-merge/interactive ]; then
1975 __gitcomp "--continue --skip --abort --quit --edit-todo"
1977 elif [ -d "$__git_repo_path"/rebase-apply ] || \
1978 [ -d "$__git_repo_path"/rebase-merge ]; then
1979 __gitcomp "--continue --skip --abort --quit"
1982 __git_complete_strategy && return
1985 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
1990 --onto --merge --strategy --interactive
1991 --preserve-merges --stat --no-stat
1992 --committer-date-is-author-date --ignore-date
1993 --ignore-whitespace --whitespace=
1994 --autosquash --no-autosquash
1995 --fork-point --no-fork-point
1996 --autostash --no-autostash
1997 --verify --no-verify
1998 --keep-empty --root --force-rebase --no-ff
2009 local subcommands="show delete expire"
2010 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2012 if [ -z "$subcommand" ]; then
2013 __gitcomp "$subcommands"
2019 __git_send_email_confirm_options="always never auto cc compose"
2020 __git_send_email_suppresscc_options="author self cc bodycc sob cccmd body all"
2025 --to|--cc|--bcc|--from)
2026 __gitcomp "$(__git send-email --dump-aliases)"
2034 $__git_send_email_confirm_options
2035 " "" "${cur##--confirm=}"
2040 $__git_send_email_suppresscc_options
2041 " "" "${cur##--suppress-cc=}"
2045 --smtp-encryption=*)
2046 __gitcomp "ssl tls" "" "${cur##--smtp-encryption=}"
2052 " "" "${cur##--thread=}"
2055 --to=*|--cc=*|--bcc=*|--from=*)
2056 __gitcomp "$(__git send-email --dump-aliases)" "" "${cur#--*=}"
2060 __gitcomp "--annotate --bcc --cc --cc-cmd --chain-reply-to
2061 --compose --confirm= --dry-run --envelope-sender
2063 --in-reply-to --no-chain-reply-to --no-signed-off-by-cc
2064 --no-suppress-from --no-thread --quiet
2065 --signed-off-by-cc --smtp-pass --smtp-server
2066 --smtp-server-port --smtp-encryption= --smtp-user
2067 --subject --suppress-cc= --suppress-from --thread --to
2068 --validate --no-validate
2069 $__git_format_patch_options"
2073 __git_complete_revlist
2084 local untracked_state
2087 --ignore-submodules=*)
2088 __gitcomp "none untracked dirty all" "" "${cur##--ignore-submodules=}"
2091 --untracked-files=*)
2092 __gitcomp "$__git_untracked_file_modes" "" "${cur##--untracked-files=}"
2097 always never auto column row plain dense nodense
2098 " "" "${cur##--column=}"
2103 --short --branch --porcelain --long --verbose
2104 --untracked-files= --ignore-submodules= --ignored
2105 --column= --no-column
2111 untracked_state="$(__git_get_option_value "-u" "--untracked-files=" \
2112 "$__git_untracked_file_modes" "status.showUntrackedFiles")"
2114 case "$untracked_state" in
2116 # --ignored option does not matter
2120 complete_opt="--cached --directory --no-empty-directory --others"
2122 if [ -n "$(__git_find_on_cmdline "--ignored")" ]; then
2123 complete_opt="$complete_opt --ignored --exclude=*"
2128 __git_complete_index_file "$complete_opt"
2131 __git_config_get_set_variables ()
2133 local prevword word config_file= c=$cword
2134 while [ $c -gt 1 ]; do
2137 --system|--global|--local|--file=*)
2142 config_file="$word $prevword"
2150 __git config $config_file --name-only --list
2156 branch.*.remote|branch.*.pushremote)
2157 __gitcomp_nl "$(__git_remotes)"
2165 __gitcomp "false true preserve interactive"
2169 __gitcomp_nl "$(__git_remotes)"
2173 local remote="${prev#remote.}"
2174 remote="${remote%.fetch}"
2175 if [ -z "$cur" ]; then
2176 __gitcomp_nl "refs/heads/" "" "" ""
2179 __gitcomp_nl "$(__git_refs_remotes "$remote")"
2183 local remote="${prev#remote.}"
2184 remote="${remote%.push}"
2185 __gitcomp_nl "$(__git for-each-ref \
2186 --format='%(refname):%(refname)' refs/heads)"
2189 pull.twohead|pull.octopus)
2190 __git_compute_merge_strategies
2191 __gitcomp "$__git_merge_strategies"
2194 color.branch|color.diff|color.interactive|\
2195 color.showbranch|color.status|color.ui)
2196 __gitcomp "always never auto"
2200 __gitcomp "false true"
2205 normal black red green yellow blue magenta cyan white
2206 bold dim ul blink reverse
2211 __gitcomp "log short"
2215 __gitcomp "man info web html"
2219 __gitcomp "$__git_log_date_formats"
2222 sendemail.aliasesfiletype)
2223 __gitcomp "mutt mailrc pine elm gnus"
2227 __gitcomp "$__git_send_email_confirm_options"
2230 sendemail.suppresscc)
2231 __gitcomp "$__git_send_email_suppresscc_options"
2234 sendemail.transferencoding)
2235 __gitcomp "7bit 8bit quoted-printable base64"
2238 --get|--get-all|--unset|--unset-all)
2239 __gitcomp_nl "$(__git_config_get_set_variables)"
2248 __gitcomp_builtin config
2252 local pfx="${cur%.*}." cur_="${cur##*.}"
2253 __gitcomp "remote pushremote merge mergeoptions rebase" "$pfx" "$cur_"
2257 local pfx="${cur%.*}." cur_="${cur#*.}"
2258 __gitcomp_direct "$(__git_heads "$pfx" "$cur_" ".")"
2259 __gitcomp_nl_append $'autosetupmerge\nautosetuprebase\n' "$pfx" "$cur_"
2263 local pfx="${cur%.*}." cur_="${cur##*.}"
2265 argprompt cmd confirm needsfile noconsole norescan
2266 prompt revprompt revunmerged title
2271 local pfx="${cur%.*}." cur_="${cur##*.}"
2272 __gitcomp "cmd path" "$pfx" "$cur_"
2276 local pfx="${cur%.*}." cur_="${cur##*.}"
2277 __gitcomp "cmd path" "$pfx" "$cur_"
2281 local pfx="${cur%.*}." cur_="${cur##*.}"
2282 __gitcomp "cmd path trustExitCode" "$pfx" "$cur_"
2286 local pfx="${cur%.*}." cur_="${cur#*.}"
2287 __git_compute_all_commands
2288 __gitcomp_nl "$__git_all_commands" "$pfx" "$cur_"
2292 local pfx="${cur%.*}." cur_="${cur##*.}"
2294 url proxy fetch push mirror skipDefaultUpdate
2295 receivepack uploadpack tagopt pushurl
2300 local pfx="${cur%.*}." cur_="${cur#*.}"
2301 __gitcomp_nl "$(__git_remotes)" "$pfx" "$cur_" "."
2302 __gitcomp_nl_append "pushdefault" "$pfx" "$cur_"
2306 local pfx="${cur%.*}." cur_="${cur##*.}"
2307 __gitcomp "insteadOf pushInsteadOf" "$pfx" "$cur_"
2314 advice.commitBeforeMerge
2316 advice.implicitIdentity
2317 advice.pushAlreadyExists
2318 advice.pushFetchFirst
2319 advice.pushNeedsForce
2320 advice.pushNonFFCurrent
2321 advice.pushNonFFMatching
2322 advice.pushUpdateRejected
2323 advice.resolveConflict
2326 advice.statusUoption
2331 apply.ignorewhitespace
2333 branch.autosetupmerge
2334 branch.autosetuprebase
2338 color.branch.current
2343 color.decorate.branch
2344 color.decorate.remoteBranch
2345 color.decorate.stash
2355 color.diff.whitespace
2360 color.grep.linenumber
2363 color.grep.separator
2365 color.interactive.error
2366 color.interactive.header
2367 color.interactive.help
2368 color.interactive.prompt
2373 color.status.changed
2375 color.status.localBranch
2376 color.status.nobranch
2377 color.status.remoteBranch
2378 color.status.unmerged
2379 color.status.untracked
2380 color.status.updated
2392 core.bigFileThreshold
2397 core.deltaBaseCacheLimit
2402 core.fsyncobjectfiles
2408 core.logAllRefUpdates
2409 core.loosecompression
2412 core.packedGitWindowSize
2413 core.packedRefsTimeout
2415 core.precomposeUnicode
2416 core.preferSymlinkRefs
2421 core.repositoryFormatVersion
2423 core.sharedRepository
2430 core.warnAmbiguousRefs
2434 credential.useHttpPath
2436 credentialCache.ignoreSIGHUP
2437 diff.autorefreshindex
2439 diff.ignoreSubmodules
2446 diff.suppressBlankEmpty
2452 fetch.recurseSubmodules
2463 format.subjectprefix
2477 gc.reflogexpireunreachable
2480 gc.worktreePruneExpire
2482 gitcvs.commitmsgannotation
2483 gitcvs.dbTableNamePrefix
2494 gui.copyblamethreshold
2498 gui.matchtrackingbranch
2499 gui.newbranchtemplate
2500 gui.pruneduringfetch
2501 gui.spellingdictionary
2518 http.sslCertPasswordProtected
2523 i18n.logOutputEncoding
2529 imap.preformattedHTML
2539 interactive.singlekey
2555 mergetool.keepBackup
2556 mergetool.keepTemporaries
2561 notes.rewrite.rebase
2565 pack.deltaCacheLimit
2582 receive.denyCurrentBranch
2583 receive.denyDeleteCurrent
2585 receive.denyNonFastForwards
2588 receive.updateserverinfo
2591 repack.usedeltabaseoffset
2595 sendemail.aliasesfile
2596 sendemail.aliasfiletype
2600 sendemail.chainreplyto
2602 sendemail.envelopesender
2606 sendemail.signedoffbycc
2607 sendemail.smtpdomain
2608 sendemail.smtpencryption
2610 sendemail.smtpserver
2611 sendemail.smtpserveroption
2612 sendemail.smtpserverport
2614 sendemail.suppresscc
2615 sendemail.suppressfrom
2620 sendemail.smtpbatchsize
2621 sendemail.smtprelogindelay
2623 status.relativePaths
2624 status.showUntrackedFiles
2625 status.submodulesummary
2628 transfer.unpackLimit
2641 add rename remove set-head set-branches
2642 get-url set-url show prune update
2644 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2645 if [ -z "$subcommand" ]; then
2648 __gitcomp "--verbose"
2651 __gitcomp "$subcommands"
2657 case "$subcommand,$cur" in
2659 __gitcomp "--track --master --fetch --tags --no-tags --mirror="
2664 __gitcomp "--auto --delete"
2669 set-head,*|set-branches,*)
2670 __git_complete_remote_or_refspec
2676 __gitcomp "$(__git_get_config_variables "remotes")"
2679 __gitcomp "--push --add --delete"
2682 __gitcomp "--push --all"
2685 __gitcomp "--dry-run"
2688 __gitcomp_nl "$(__git_remotes)"
2697 __gitcomp "--edit --graft --format= --list --delete"
2706 local subcommands="clear forget diff remaining status gc"
2707 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2708 if test -z "$subcommand"
2710 __gitcomp "$subcommands"
2717 __git_has_doubledash && return
2721 __gitcomp "--merge --mixed --hard --soft --patch --keep"
2730 __git_find_repo_path
2731 if [ -f "$__git_repo_path"/REVERT_HEAD ]; then
2732 __gitcomp "--continue --quit --abort"
2738 --edit --mainline --no-edit --no-commit --signoff
2739 --strategy= --strategy-option=
2751 __gitcomp "--cached --dry-run --ignore-unmatch --quiet"
2756 __git_complete_index_file "--cached"
2761 __git_has_doubledash && return
2766 $__git_log_common_options
2767 $__git_log_shortlog_options
2768 --numbered --summary --email
2773 __git_complete_revlist
2778 __git_has_doubledash && return
2781 --pretty=*|--format=*)
2782 __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
2787 __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}"
2791 __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}"
2795 __gitcomp "--pretty= --format= --abbrev-commit --oneline
2797 $__git_diff_common_options
2802 __git_complete_revlist_file
2810 --all --remotes --topo-order --date-order --current --more=
2811 --list --independent --merge-base --no-name
2813 --sha1-name --sparse --topics --reflog
2818 __git_complete_revlist
2823 local save_opts='--all --keep-index --no-keep-index --quiet --patch --include-untracked'
2824 local subcommands='push save list show apply clear drop pop create branch'
2825 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2826 if [ -z "$subcommand" ]; then
2829 __gitcomp "$save_opts"
2832 if [ -z "$(__git_find_on_cmdline "$save_opts")" ]; then
2833 __gitcomp "$subcommands"
2838 case "$subcommand,$cur" in
2840 __gitcomp "$save_opts --message"
2843 __gitcomp "$save_opts"
2846 __gitcomp "--index --quiet"
2851 show,--*|branch,--*)
2854 if [ $cword -eq 3 ]; then
2857 __gitcomp_nl "$(__git stash list \
2858 | sed -n -e 's/:.*//p')"
2861 show,*|apply,*|drop,*|pop,*)
2862 __gitcomp_nl "$(__git stash list \
2863 | sed -n -e 's/:.*//p')"
2873 __git_has_doubledash && return
2875 local subcommands="add status init deinit update summary foreach sync"
2876 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2877 if [ -z "$subcommand" ]; then
2883 __gitcomp "$subcommands"
2889 case "$subcommand,$cur" in
2891 __gitcomp "--branch --force --name --reference --depth"
2894 __gitcomp "--cached --recursive"
2897 __gitcomp "--force --all"
2901 --init --remote --no-fetch
2902 --recommend-shallow --no-recommend-shallow
2903 --force --rebase --merge --reference --depth --recursive --jobs
2907 __gitcomp "--cached --files --summary-limit"
2909 foreach,--*|sync,--*)
2910 __gitcomp "--recursive"
2920 init fetch clone rebase dcommit log find-rev
2921 set-tree commit-diff info create-ignore propget
2922 proplist show-ignore show-externals branch tag blame
2923 migrate mkdirs reset gc
2925 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2926 if [ -z "$subcommand" ]; then
2927 __gitcomp "$subcommands"
2929 local remote_opts="--username= --config-dir= --no-auth-cache"
2931 --follow-parent --authors-file= --repack=
2932 --no-metadata --use-svm-props --use-svnsync-props
2933 --log-window-size= --no-checkout --quiet
2934 --repack-flags --use-log-author --localtime
2936 --ignore-paths= --include-paths= $remote_opts
2939 --template= --shared= --trunk= --tags=
2940 --branches= --stdlayout --minimize-url
2941 --no-metadata --use-svm-props --use-svnsync-props
2942 --rewrite-root= --prefix= $remote_opts
2945 --edit --rmdir --find-copies-harder --copy-similarity=
2948 case "$subcommand,$cur" in
2950 __gitcomp "--revision= --fetch-all $fc_opts"
2953 __gitcomp "--revision= $fc_opts $init_opts"
2956 __gitcomp "$init_opts"
2960 --merge --strategy= --verbose --dry-run
2961 --fetch-all --no-rebase --commit-url
2962 --revision --interactive $cmt_opts $fc_opts
2966 __gitcomp "--stdin $cmt_opts $fc_opts"
2968 create-ignore,--*|propget,--*|proplist,--*|show-ignore,--*|\
2969 show-externals,--*|mkdirs,--*)
2970 __gitcomp "--revision="
2974 --limit= --revision= --verbose --incremental
2975 --oneline --show-commit --non-recursive
2976 --authors-file= --color
2981 --merge --verbose --strategy= --local
2982 --fetch-all --dry-run $fc_opts
2986 __gitcomp "--message= --file= --revision= $cmt_opts"
2992 __gitcomp "--dry-run --message --tag"
2995 __gitcomp "--dry-run --message"
2998 __gitcomp "--git-format"
3002 --config-dir= --ignore-paths= --minimize
3003 --no-auth-cache --username=
3007 __gitcomp "--revision= --parent"
3018 while [ $c -lt $cword ]; do
3022 __gitcomp_direct "$(__git_tags "" "$cur" " ")"
3037 __gitcomp_direct "$(__git_tags "" "$cur" " ")"
3048 --list --delete --verify --annotate --message --file
3049 --sign --cleanup --local-user --force --column --sort=
3050 --contains --no-contains --points-at --merged --no-merged --create-reflog
3063 local subcommands="add list lock prune unlock"
3064 local subcommand="$(__git_find_on_cmdline "$subcommands")"
3065 if [ -z "$subcommand" ]; then
3066 __gitcomp "$subcommands"
3068 case "$subcommand,$cur" in
3070 __gitcomp "--detach"
3073 __gitcomp "--porcelain"
3076 __gitcomp "--reason"
3079 __gitcomp "--dry-run --expire --verbose"
3089 local i c=1 command __git_dir __git_repo_path
3090 local __git_C_args C_args_count=0
3092 while [ $c -lt $cword ]; do
3095 --git-dir=*) __git_dir="${i#--git-dir=}" ;;
3096 --git-dir) ((c++)) ; __git_dir="${words[c]}" ;;
3097 --bare) __git_dir="." ;;
3098 --help) command="help"; break ;;
3099 -c|--work-tree|--namespace) ((c++)) ;;
3100 -C) __git_C_args[C_args_count++]=-C
3102 __git_C_args[C_args_count++]="${words[c]}"
3105 *) command="$i"; break ;;
3110 if [ -z "$command" ]; then
3112 --git-dir|-C|--work-tree)
3113 # these need a path argument, let's fall back to
3114 # Bash filename completion
3118 # we don't support completing these options' arguments
3136 --no-replace-objects
3140 *) __git_compute_porcelain_commands
3141 __gitcomp "$__git_porcelain_commands $(__git_aliases)" ;;
3146 local completion_func="_git_${command//-/_}"
3147 declare -f $completion_func >/dev/null 2>/dev/null && $completion_func && return
3149 local expansion=$(__git_aliased_command "$command")
3150 if [ -n "$expansion" ]; then
3152 completion_func="_git_${expansion//-/_}"
3153 declare -f $completion_func >/dev/null 2>/dev/null && $completion_func
3159 __git_has_doubledash && return
3161 local __git_repo_path
3162 __git_find_repo_path
3165 if [ -f "$__git_repo_path/MERGE_HEAD" ]; then
3171 $__git_log_common_options
3172 $__git_log_gitk_options
3178 __git_complete_revlist
3181 if [[ -n ${ZSH_VERSION-} ]]; then
3182 echo "WARNING: this script is deprecated, please see git-completion.zsh" 1>&2
3184 autoload -U +X compinit && compinit
3190 local cur_="${3-$cur}"
3196 local c IFS=$' \t\n'
3204 array[${#array[@]}+1]="$c"
3207 compadd -Q -S '' -p "${2-}" -a -- array && _ret=0
3218 compadd -Q -- ${=1} && _ret=0
3227 compadd -Q -S "${4- }" -p "${2-}" -- ${=1} && _ret=0
3236 compadd -Q -p "${2-}" -f -- ${=1} && _ret=0
3241 local _ret=1 cur cword prev
3242 cur=${words[CURRENT]}
3243 prev=${words[CURRENT-1]}
3245 emulate ksh -c __${service}_main
3246 let _ret && _default && _ret=0
3250 compdef _git git gitk
3256 local cur words cword prev
3257 _get_comp_words_by_ref -n =: cur words cword prev
3261 # Setup completion for certain functions defined above by setting common
3262 # variables and workarounds.
3263 # This is NOT a public function; use at your own risk.
3266 local wrapper="__git_wrap${2}"
3267 eval "$wrapper () { __git_func_wrap $2 ; }"
3268 complete -o bashdefault -o default -o nospace -F $wrapper $1 2>/dev/null \
3269 || complete -o default -o nospace -F $wrapper $1
3272 # wrapper for backwards compatibility
3275 __git_wrap__git_main
3278 # wrapper for backwards compatibility
3281 __git_wrap__gitk_main
3284 __git_complete git __git_main
3285 __git_complete gitk __gitk_main
3287 # The following are necessary only for Cygwin, and only are needed
3288 # when the user has tab-completed the executable name and consequently
3289 # included the '.exe' suffix.
3291 if [ Cygwin = "$(uname -o 2>/dev/null)" ]; then
3292 __git_complete git.exe __git_main