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 # Variation of __gitcomp_nl () that appends to the existing list of
284 # completion candidates, COMPREPLY.
285 __gitcomp_nl_append ()
288 __gitcompappend "$1" "${2-}" "${3-$cur}" "${4- }"
291 # Generates completion reply from newline-separated possible completion words
292 # by appending a space to all of them.
293 # It accepts 1 to 4 arguments:
294 # 1: List of possible completion words, separated by a single newline.
295 # 2: A prefix to be added to each possible completion word (optional).
296 # 3: Generate possible completion matches for this word (optional).
297 # 4: A suffix to be appended to each possible completion word instead of
298 # the default space (optional). If specified but empty, nothing is
303 __gitcomp_nl_append "$@"
306 # Generates completion reply with compgen from newline-separated possible
307 # completion filenames.
308 # It accepts 1 to 3 arguments:
309 # 1: List of possible completion filenames, separated by a single newline.
310 # 2: A directory prefix to be added to each possible completion filename
312 # 3: Generate possible completion matches for this word (optional).
317 # XXX does not work when the directory prefix contains a tilde,
318 # since tilde expansion is not applied.
319 # This means that COMPREPLY will be empty and Bash default
320 # completion will be used.
321 __gitcompadd "$1" "${2-}" "${3-$cur}" ""
323 # use a hack to enable file mode in bash < 4
324 compopt -o filenames +o nospace 2>/dev/null ||
325 compgen -f /non-existing-dir/ > /dev/null
328 # Execute 'git ls-files', unless the --committable option is specified, in
329 # which case it runs 'git diff-index' to find out the files that can be
330 # committed. It return paths relative to the directory specified in the first
331 # argument, and using the options specified in the second argument.
332 __git_ls_files_helper ()
334 if [ "$2" == "--committable" ]; then
335 __git -C "$1" diff-index --name-only --relative HEAD
337 # NOTE: $2 is not quoted in order to support multiple options
338 __git -C "$1" ls-files --exclude-standard $2
343 # __git_index_files accepts 1 or 2 arguments:
344 # 1: Options to pass to ls-files (required).
345 # 2: A directory path (optional).
346 # If provided, only files within the specified directory are listed.
347 # Sub directories are never recursed. Path must have a trailing
351 local root="${2-.}" file
353 __git_ls_files_helper "$root" "$1" |
354 while read -r file; do
356 ?*/*) echo "${file%%/*}" ;;
362 # Lists branches from the local repository.
363 # 1: A prefix to be added to each listed branch (optional).
364 # 2: List only branches matching this word (optional; list all branches if
366 # 3: A suffix to be appended to each listed branch (optional).
369 local pfx="${1-}" cur_="${2-}" sfx="${3-}"
371 __git for-each-ref --format="${pfx//\%/%%}%(refname:strip=2)$sfx" \
372 "refs/heads/$cur_*" "refs/heads/$cur_*/**"
375 # Lists tags from the local repository.
376 # Accepts the same positional parameters as __git_heads() above.
379 local pfx="${1-}" cur_="${2-}" sfx="${3-}"
381 __git for-each-ref --format="${pfx//\%/%%}%(refname:strip=2)$sfx" \
382 "refs/tags/$cur_*" "refs/tags/$cur_*/**"
385 # Lists refs from the local (by default) or from a remote repository.
386 # It accepts 0, 1 or 2 arguments:
387 # 1: The remote to list refs from (optional; ignored, if set but empty).
388 # Can be the name of a configured remote, a path, or a URL.
389 # 2: In addition to local refs, list unique branches from refs/remotes/ for
390 # 'git checkout's tracking DWIMery (optional; ignored, if set but empty).
391 # 3: A prefix to be added to each listed ref (optional).
392 # 4: List only refs matching this word (optional; list all refs if unset or
394 # 5: A suffix to be appended to each listed ref (optional; ignored, if set
397 # Use __git_complete_refs() instead.
400 local i hash dir track="${2-}"
401 local list_refs_from=path remote="${1-}"
403 local pfx="${3-}" cur_="${4-$cur}" sfx="${5-}"
405 local fer_pfx="${pfx//\%/%%}" # "escape" for-each-ref format specifiers
408 dir="$__git_repo_path"
410 if [ -z "$remote" ]; then
411 if [ -z "$dir" ]; then
415 if __git_is_configured_remote "$remote"; then
416 # configured remote takes precedence over a
417 # local directory with the same name
418 list_refs_from=remote
419 elif [ -d "$remote/.git" ]; then
421 elif [ -d "$remote" ]; then
428 if [ "$list_refs_from" = path ]; then
429 if [[ "$cur_" == ^* ]]; then
438 refs=("$match*" "$match*/**")
442 for i in HEAD FETCH_HEAD ORIG_HEAD MERGE_HEAD; do
445 if [ -e "$dir/$i" ]; then
451 format="refname:strip=2"
452 refs=("refs/tags/$match*" "refs/tags/$match*/**"
453 "refs/heads/$match*" "refs/heads/$match*/**"
454 "refs/remotes/$match*" "refs/remotes/$match*/**")
457 __git_dir="$dir" __git for-each-ref --format="$fer_pfx%($format)$sfx" \
459 if [ -n "$track" ]; then
460 # employ the heuristic used by git checkout
461 # Try to find a remote branch that matches the completion word
462 # but only output if the branch name is unique
463 __git for-each-ref --format="$fer_pfx%(refname:strip=3)$sfx" \
464 --sort="refname:strip=3" \
465 "refs/remotes/*/$match*" "refs/remotes/*/$match*/**" | \
472 __git ls-remote "$remote" "$match*" | \
473 while read -r hash i; do
476 *) echo "$pfx$i$sfx" ;;
481 if [ "$list_refs_from" = remote ]; then
483 $match*) echo "${pfx}HEAD$sfx" ;;
485 __git for-each-ref --format="$fer_pfx%(refname:strip=3)$sfx" \
486 "refs/remotes/$remote/$match*" \
487 "refs/remotes/$remote/$match*/**"
491 $match*) query_symref="HEAD" ;;
493 __git ls-remote "$remote" $query_symref \
494 "refs/tags/$match*" "refs/heads/$match*" \
495 "refs/remotes/$match*" |
496 while read -r hash i; do
499 refs/*) echo "$pfx${i#refs/*/}$sfx" ;;
500 *) echo "$pfx$i$sfx" ;; # symbolic refs
508 # Completes refs, short and long, local and remote, symbolic and pseudo.
510 # Usage: __git_complete_refs [<option>]...
511 # --remote=<remote>: The remote to list refs from, can be the name of a
512 # configured remote, a path, or a URL.
513 # --track: List unique remote branches for 'git checkout's tracking DWIMery.
514 # --pfx=<prefix>: A prefix to be added to each ref.
515 # --cur=<word>: The current ref to be completed. Defaults to the current
516 # word to be completed.
517 # --sfx=<suffix>: A suffix to be appended to each ref instead of the default
519 __git_complete_refs ()
521 local remote track pfx cur_="$cur" sfx=" "
523 while test $# != 0; do
525 --remote=*) remote="${1##--remote=}" ;;
526 --track) track="yes" ;;
527 --pfx=*) pfx="${1##--pfx=}" ;;
528 --cur=*) cur_="${1##--cur=}" ;;
529 --sfx=*) sfx="${1##--sfx=}" ;;
535 __gitcomp_direct "$(__git_refs "$remote" "$track" "$pfx" "$cur_" "$sfx")"
538 # __git_refs2 requires 1 argument (to pass to __git_refs)
539 # Deprecated: use __git_complete_fetch_refspecs() instead.
543 for i in $(__git_refs "$1"); do
548 # Completes refspecs for fetching from a remote repository.
549 # 1: The remote repository.
550 # 2: A prefix to be added to each listed refspec (optional).
551 # 3: The ref to be completed as a refspec instead of the current word to be
552 # completed (optional)
553 # 4: A suffix to be appended to each listed refspec instead of the default
555 __git_complete_fetch_refspecs ()
557 local i remote="$1" pfx="${2-}" cur_="${3-$cur}" sfx="${4- }"
560 for i in $(__git_refs "$remote" "" "" "$cur_") ; do
566 # __git_refs_remotes requires 1 argument (to pass to ls-remote)
567 __git_refs_remotes ()
570 __git ls-remote "$1" 'refs/heads/*' | \
571 while read -r hash i; do
572 echo "$i:refs/remotes/$1/${i#refs/heads/}"
579 test -d "$__git_repo_path/remotes" && ls -1 "$__git_repo_path/remotes"
583 # Returns true if $1 matches the name of a configured remote, false otherwise.
584 __git_is_configured_remote ()
587 for remote in $(__git_remotes); do
588 if [ "$remote" = "$1" ]; then
595 __git_list_merge_strategies ()
597 git merge -s help 2>&1 |
598 sed -n -e '/[Aa]vailable strategies are: /,/^$/{
607 __git_merge_strategies=
608 # 'git merge -s help' (and thus detection of the merge strategy
609 # list) fails, unfortunately, if run outside of any git working
610 # tree. __git_merge_strategies is set to the empty string in
611 # that case, and the detection will be repeated the next time it
613 __git_compute_merge_strategies ()
615 test -n "$__git_merge_strategies" ||
616 __git_merge_strategies=$(__git_list_merge_strategies)
619 __git_complete_revlist_file ()
621 local pfx ls ref cur_="$cur"
641 case "$COMP_WORDBREAKS" in
643 *) pfx="$ref:$pfx" ;;
646 __gitcomp_nl "$(__git ls-tree "$ls" \
647 | sed '/^100... blob /{
663 pfx="${cur_%...*}..."
665 __git_complete_refs --pfx="$pfx" --cur="$cur_"
670 __git_complete_refs --pfx="$pfx" --cur="$cur_"
679 # __git_complete_index_file requires 1 argument:
680 # 1: the options to pass to ls-file
682 # The exception is --committable, which finds the files appropriate commit.
683 __git_complete_index_file ()
685 local pfx="" cur_="$cur"
695 __gitcomp_file "$(__git_index_files "$1" ${pfx:+"$pfx"})" "$pfx" "$cur_"
698 __git_complete_file ()
700 __git_complete_revlist_file
703 __git_complete_revlist ()
705 __git_complete_revlist_file
708 __git_complete_remote_or_refspec ()
710 local cur_="$cur" cmd="${words[1]}"
711 local i c=2 remote="" pfx="" lhs=1 no_complete_refspec=0
712 if [ "$cmd" = "remote" ]; then
715 while [ $c -lt $cword ]; do
718 --mirror) [ "$cmd" = "push" ] && no_complete_refspec=1 ;;
719 -d|--delete) [ "$cmd" = "push" ] && lhs=0 ;;
722 push) no_complete_refspec=1 ;;
730 *) remote="$i"; break ;;
734 if [ -z "$remote" ]; then
735 __gitcomp_nl "$(__git_remotes)"
738 if [ $no_complete_refspec = 1 ]; then
741 [ "$remote" = "." ] && remote=
744 case "$COMP_WORDBREAKS" in
746 *) pfx="${cur_%%:*}:" ;;
758 if [ $lhs = 1 ]; then
759 __git_complete_fetch_refspecs "$remote" "$pfx" "$cur_"
761 __git_complete_refs --pfx="$pfx" --cur="$cur_"
765 if [ $lhs = 1 ]; then
766 __git_complete_refs --remote="$remote" --pfx="$pfx" --cur="$cur_"
768 __git_complete_refs --pfx="$pfx" --cur="$cur_"
772 if [ $lhs = 1 ]; then
773 __git_complete_refs --pfx="$pfx" --cur="$cur_"
775 __git_complete_refs --remote="$remote" --pfx="$pfx" --cur="$cur_"
781 __git_complete_strategy ()
783 __git_compute_merge_strategies
786 __gitcomp "$__git_merge_strategies"
791 __gitcomp "$__git_merge_strategies" "" "${cur##--strategy=}"
799 if test -n "${GIT_TESTING_COMMAND_COMPLETION:-}"
801 printf "%s" "${GIT_TESTING_COMMAND_COMPLETION}"
803 git help -a|egrep '^ [a-zA-Z0-9]'
807 __git_list_all_commands ()
810 for i in $(__git_commands)
813 *--*) : helper pattern;;
820 __git_compute_all_commands ()
822 test -n "$__git_all_commands" ||
823 __git_all_commands=$(__git_list_all_commands)
826 __git_list_porcelain_commands ()
829 __git_compute_all_commands
830 for i in $__git_all_commands
833 *--*) : helper pattern;;
834 applymbox) : ask gittus;;
835 applypatch) : ask gittus;;
836 archimport) : import;;
837 cat-file) : plumbing;;
838 check-attr) : plumbing;;
839 check-ignore) : plumbing;;
840 check-mailmap) : plumbing;;
841 check-ref-format) : plumbing;;
842 checkout-index) : plumbing;;
843 column) : internal helper;;
844 commit-tree) : plumbing;;
845 count-objects) : infrequent;;
846 credential) : credentials;;
847 credential-*) : credentials helper;;
848 cvsexportcommit) : export;;
849 cvsimport) : import;;
850 cvsserver) : daemon;;
852 diff-files) : plumbing;;
853 diff-index) : plumbing;;
854 diff-tree) : plumbing;;
855 fast-import) : import;;
856 fast-export) : export;;
857 fsck-objects) : plumbing;;
858 fetch-pack) : plumbing;;
859 fmt-merge-msg) : plumbing;;
860 for-each-ref) : plumbing;;
861 hash-object) : plumbing;;
862 http-*) : transport;;
863 index-pack) : plumbing;;
864 init-db) : deprecated;;
865 local-fetch) : plumbing;;
866 ls-files) : plumbing;;
867 ls-remote) : plumbing;;
868 ls-tree) : plumbing;;
869 mailinfo) : plumbing;;
870 mailsplit) : plumbing;;
871 merge-*) : plumbing;;
874 pack-objects) : plumbing;;
875 pack-redundant) : plumbing;;
876 pack-refs) : plumbing;;
877 parse-remote) : plumbing;;
878 patch-id) : plumbing;;
880 prune-packed) : plumbing;;
881 quiltimport) : import;;
882 read-tree) : plumbing;;
883 receive-pack) : plumbing;;
884 remote-*) : transport;;
886 rev-list) : plumbing;;
887 rev-parse) : plumbing;;
888 runstatus) : plumbing;;
889 sh-setup) : internal;;
891 show-ref) : plumbing;;
892 send-pack) : plumbing;;
893 show-index) : plumbing;;
895 stripspace) : plumbing;;
896 symbolic-ref) : plumbing;;
897 unpack-file) : plumbing;;
898 unpack-objects) : plumbing;;
899 update-index) : plumbing;;
900 update-ref) : plumbing;;
901 update-server-info) : daemon;;
902 upload-archive) : plumbing;;
903 upload-pack) : plumbing;;
904 write-tree) : plumbing;;
906 verify-pack) : infrequent;;
907 verify-tag) : plumbing;;
913 __git_porcelain_commands=
914 __git_compute_porcelain_commands ()
916 test -n "$__git_porcelain_commands" ||
917 __git_porcelain_commands=$(__git_list_porcelain_commands)
920 # Lists all set config variables starting with the given section prefix,
921 # with the prefix removed.
922 __git_get_config_variables ()
924 local section="$1" i IFS=$'\n'
925 for i in $(__git config --name-only --get-regexp "^$section\..*"); do
926 echo "${i#$section.}"
930 __git_pretty_aliases ()
932 __git_get_config_variables "pretty"
937 __git_get_config_variables "alias"
940 # __git_aliased_command requires 1 argument
941 __git_aliased_command ()
943 local word cmdline=$(__git config --get "alias.$1")
944 for word in $cmdline; do
950 \!*) : shell command alias ;;
952 *=*) : setting env ;;
954 \(\)) : skip parens of shell function definition ;;
955 {) : skip start of shell helper function ;;
956 :) : skip null command ;;
957 \'*) : skip opening quote after sh -c ;;
965 # __git_find_on_cmdline requires 1 argument
966 __git_find_on_cmdline ()
968 local word subcommand c=1
969 while [ $c -lt $cword ]; do
971 for subcommand in $1; do
972 if [ "$subcommand" = "$word" ]; then
981 # Echo the value of an option set on the command line or config
983 # $1: short option name
984 # $2: long option name including =
985 # $3: list of possible values
986 # $4: config string (optional)
989 # result="$(__git_get_option_value "-d" "--do-something=" \
990 # "yes no" "core.doSomething")"
992 # result is then either empty (no option set) or "yes" or "no"
994 # __git_get_option_value requires 3 arguments
995 __git_get_option_value ()
997 local c short_opt long_opt val
998 local result= values config_key word
1006 while [ $c -ge 0 ]; do
1008 for val in $values; do
1009 if [ "$short_opt$val" = "$word" ] ||
1010 [ "$long_opt$val" = "$word" ]; then
1018 if [ -n "$config_key" ] && [ -z "$result" ]; then
1019 result="$(__git config "$config_key")"
1025 __git_has_doubledash ()
1028 while [ $c -lt $cword ]; do
1029 if [ "--" = "${words[c]}" ]; then
1037 # Try to count non option arguments passed on the command line for the
1038 # specified git command.
1039 # When options are used, it is necessary to use the special -- option to
1040 # tell the implementation were non option arguments begin.
1041 # XXX this can not be improved, since options can appear everywhere, as
1045 # __git_count_arguments requires 1 argument: the git command executed.
1046 __git_count_arguments ()
1050 # Skip "git" (first argument)
1051 for ((i=1; i < ${#words[@]}; i++)); do
1056 # Good; we can assume that the following are only non
1061 # Skip the specified git command and discard git
1074 __git_whitespacelist="nowarn warn error error-all fix"
1078 __git_find_repo_path
1079 if [ -d "$__git_repo_path"/rebase-apply ]; then
1080 __gitcomp "--skip --continue --resolved --abort"
1085 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
1090 --3way --committer-date-is-author-date --ignore-date
1091 --ignore-whitespace --ignore-space-change
1092 --interactive --keep --no-utf8 --signoff --utf8
1093 --whitespace= --scissors
1103 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
1108 --stat --numstat --summary --check --index
1109 --cached --index-info --reverse --reject --unidiff-zero
1110 --apply --no-add --exclude=
1111 --ignore-whitespace --ignore-space-change
1112 --whitespace= --inaccurate-eof --verbose
1113 --recount --directory=
1124 --interactive --refresh --patch --update --dry-run
1125 --ignore-errors --intent-to-add --force --edit --chmod=
1130 local complete_opt="--others --modified --directory --no-empty-directory"
1131 if test -n "$(__git_find_on_cmdline "-u --update")"
1133 complete_opt="--modified"
1135 __git_complete_index_file "$complete_opt"
1142 __gitcomp "$(git archive --list)" "" "${cur##--format=}"
1146 __gitcomp_nl "$(__git_remotes)" "" "${cur##--remote=}"
1151 --format= --list --verbose
1152 --prefix= --remote= --exec= --output
1162 __git_has_doubledash && return
1164 local subcommands="start bad good skip reset visualize replay log run"
1165 local subcommand="$(__git_find_on_cmdline "$subcommands")"
1166 if [ -z "$subcommand" ]; then
1167 __git_find_repo_path
1168 if [ -f "$__git_repo_path"/BISECT_START ]; then
1169 __gitcomp "$subcommands"
1171 __gitcomp "replay start"
1176 case "$subcommand" in
1177 bad|good|reset|skip|start)
1187 local i c=1 only_local_ref="n" has_r="n"
1189 while [ $c -lt $cword ]; do
1192 -d|--delete|-m|--move) only_local_ref="y" ;;
1193 -r|--remotes) has_r="y" ;;
1199 --set-upstream-to=*)
1200 __git_complete_refs --cur="${cur##--set-upstream-to=}"
1204 --color --no-color --verbose --abbrev= --no-abbrev
1205 --track --no-track --contains --no-contains --merged --no-merged
1206 --set-upstream-to= --edit-description --list
1207 --unset-upstream --delete --move --remotes
1208 --column --no-column --sort= --points-at
1212 if [ $only_local_ref = "y" -a $has_r = "n" ]; then
1213 __gitcomp_direct "$(__git_heads "" "$cur" " ")"
1223 local cmd="${words[2]}"
1226 __gitcomp "create list-heads verify unbundle"
1229 # looking for a file
1234 __git_complete_revlist
1243 __git_has_doubledash && return
1247 __gitcomp "diff3 merge" "" "${cur##--conflict=}"
1251 --quiet --ours --theirs --track --no-track --merge
1252 --conflict= --orphan --patch
1256 # check if --track, --no-track, or --no-guess was specified
1257 # if so, disable DWIM mode
1258 local flags="--track --no-track --no-guess" track_opt="--track"
1259 if [ "$GIT_COMPLETION_CHECKOUT_NO_GUESS" = "1" ] ||
1260 [ -n "$(__git_find_on_cmdline "$flags")" ]; then
1263 __git_complete_refs $track_opt
1275 __git_find_repo_path
1276 if [ -f "$__git_repo_path"/CHERRY_PICK_HEAD ]; then
1277 __gitcomp "--continue --quit --abort"
1282 __gitcomp "--edit --no-commit --signoff --strategy= --mainline"
1294 __gitcomp "--dry-run --quiet"
1299 # XXX should we check for -x option ?
1300 __git_complete_index_file "--others --directory"
1323 --recurse-submodules
1325 --shallow-submodules
1332 __git_untracked_file_modes="all no normal"
1345 __gitcomp "default scissors strip verbatim whitespace
1346 " "" "${cur##--cleanup=}"
1349 --reuse-message=*|--reedit-message=*|\
1350 --fixup=*|--squash=*)
1351 __git_complete_refs --cur="${cur#*=}"
1354 --untracked-files=*)
1355 __gitcomp "$__git_untracked_file_modes" "" "${cur##--untracked-files=}"
1360 --all --author= --signoff --verify --no-verify
1362 --amend --include --only --interactive
1363 --dry-run --reuse-message= --reedit-message=
1364 --reset-author --file= --message= --template=
1365 --cleanup= --untracked-files --untracked-files=
1366 --verbose --quiet --fixup= --squash=
1367 --patch --short --date --allow-empty
1372 if __git rev-parse --verify --quiet HEAD >/dev/null; then
1373 __git_complete_index_file "--committable"
1375 # This is the first commit
1376 __git_complete_index_file "--cached"
1385 --all --tags --contains --abbrev= --candidates=
1386 --exact-match --debug --long --match --always --first-parent
1387 --exclude --dirty --broken
1394 __git_diff_algorithms="myers minimal patience histogram"
1396 __git_diff_submodule_formats="diff log short"
1398 __git_diff_common_options="--stat --numstat --shortstat --summary
1399 --patch-with-stat --name-only --name-status --color
1400 --no-color --color-words --no-renames --check
1401 --full-index --binary --abbrev --diff-filter=
1402 --find-copies-harder
1403 --text --ignore-space-at-eol --ignore-space-change
1404 --ignore-all-space --ignore-blank-lines --exit-code
1405 --quiet --ext-diff --no-ext-diff
1406 --no-prefix --src-prefix= --dst-prefix=
1407 --inter-hunk-context=
1408 --patience --histogram --minimal
1409 --raw --word-diff --word-diff-regex=
1410 --dirstat --dirstat= --dirstat-by-file
1411 --dirstat-by-file= --cumulative
1413 --submodule --submodule=
1418 __git_has_doubledash && return
1422 __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}"
1426 __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}"
1430 __gitcomp "--cached --staged --pickaxe-all --pickaxe-regex
1431 --base --ours --theirs --no-index
1432 $__git_diff_common_options
1437 __git_complete_revlist_file
1440 __git_mergetools_common="diffuse diffmerge ecmerge emerge kdiff3 meld opendiff
1441 tkdiff vimdiff gvimdiff xxdiff araxis p4merge bc codecompare
1446 __git_has_doubledash && return
1450 __gitcomp "$__git_mergetools_common kompare" "" "${cur##--tool=}"
1454 __gitcomp "--cached --staged --pickaxe-all --pickaxe-regex
1455 --base --ours --theirs
1456 --no-renames --diff-filter= --find-copies-harder
1457 --relative --ignore-submodules
1462 __git_complete_revlist_file
1465 __git_fetch_recurse_submodules="yes on-demand no"
1467 __git_fetch_options="
1468 --quiet --verbose --append --upload-pack --force --keep --depth=
1469 --tags --no-tags --all --prune --dry-run --recurse-submodules=
1470 --unshallow --update-shallow
1476 --recurse-submodules=*)
1477 __gitcomp "$__git_fetch_recurse_submodules" "" "${cur##--recurse-submodules=}"
1481 __gitcomp "$__git_fetch_options"
1485 __git_complete_remote_or_refspec
1488 __git_format_patch_options="
1489 --stdout --attach --no-attach --thread --thread= --no-thread
1490 --numbered --start-number --numbered-files --keep-subject --signoff
1491 --signature --no-signature --in-reply-to= --cc= --full-index --binary
1492 --not --all --cover-letter --no-prefix --src-prefix= --dst-prefix=
1493 --inline --suffix= --ignore-if-in-upstream --subject-prefix=
1494 --output-directory --reroll-count --to= --quiet --notes
1497 _git_format_patch ()
1503 " "" "${cur##--thread=}"
1507 __gitcomp "$__git_format_patch_options"
1511 __git_complete_revlist
1519 --tags --root --unreachable --cache --no-reflogs --full
1520 --strict --verbose --lost-found --name-objects
1531 __gitcomp "--prune --aggressive"
1542 # Lists matching symbol names from a tag (as in ctags) file.
1543 # 1: List symbol names matching this word.
1544 # 2: The tag file to list symbol names from.
1545 # 3: A prefix to be added to each listed symbol name (optional).
1546 # 4: A suffix to be appended to each listed symbol name (optional).
1547 __git_match_ctag () {
1548 awk -v pfx="${3-}" -v sfx="${4-}" "
1549 /^${1//\//\\/}/ { print pfx \$1 sfx }
1553 # Complete symbol names from a tag file.
1554 # Usage: __git_complete_symbol [<option>]...
1555 # --tags=<file>: The tag file to list symbol names from instead of the
1557 # --pfx=<prefix>: A prefix to be added to each symbol name.
1558 # --cur=<word>: The current symbol name to be completed. Defaults to
1559 # the current word to be completed.
1560 # --sfx=<suffix>: A suffix to be appended to each symbol name instead
1561 # of the default space.
1562 __git_complete_symbol () {
1563 local tags=tags pfx="" cur_="${cur-}" sfx=" "
1565 while test $# != 0; do
1567 --tags=*) tags="${1##--tags=}" ;;
1568 --pfx=*) pfx="${1##--pfx=}" ;;
1569 --cur=*) cur_="${1##--cur=}" ;;
1570 --sfx=*) sfx="${1##--sfx=}" ;;
1576 if test -r "$tags"; then
1577 __gitcomp_direct "$(__git_match_ctag "$cur_" "$tags" "$pfx" "$sfx")"
1583 __git_has_doubledash && return
1589 --text --ignore-case --word-regexp --invert-match
1590 --full-name --line-number
1591 --extended-regexp --basic-regexp --fixed-strings
1594 --files-with-matches --name-only
1595 --files-without-match
1598 --and --or --not --all-match
1599 --break --heading --show-function --function-context
1600 --untracked --no-index
1606 case "$cword,$prev" in
1608 __git_complete_symbol && return
1619 __gitcomp "--all --guides --info --man --web"
1623 __git_compute_all_commands
1624 __gitcomp "$__git_all_commands $(__git_aliases)
1625 attributes cli core-tutorial cvs-migration
1626 diffcore everyday gitk glossary hooks ignore modules
1627 namespaces repository-layout revisions tutorial tutorial-2
1637 false true umask group all world everybody
1638 " "" "${cur##--shared=}"
1642 __gitcomp "--quiet --bare --template= --shared --shared="
1652 __gitcomp "--cached --deleted --modified --others --ignored
1653 --stage --directory --no-empty-directory --unmerged
1654 --killed --exclude= --exclude-from=
1655 --exclude-per-directory= --exclude-standard
1656 --error-unmatch --with-tree= --full-name
1657 --abbrev --ignored --exclude-per-directory
1663 # XXX ignore options like --modified and always suggest all cached
1665 __git_complete_index_file "--cached"
1672 __gitcomp "--heads --tags --refs --get-url --symref"
1676 __gitcomp_nl "$(__git_remotes)"
1684 # Options that go well for log, shortlog and gitk
1685 __git_log_common_options="
1687 --branches --tags --remotes
1688 --first-parent --merges --no-merges
1690 --max-age= --since= --after=
1691 --min-age= --until= --before=
1692 --min-parents= --max-parents=
1693 --no-min-parents --no-max-parents
1695 # Options that go well for log and gitk (not shortlog)
1696 __git_log_gitk_options="
1697 --dense --sparse --full-history
1698 --simplify-merges --simplify-by-decoration
1699 --left-right --notes --no-notes
1701 # Options that go well for log and shortlog (not gitk)
1702 __git_log_shortlog_options="
1703 --author= --committer= --grep=
1704 --all-match --invert-grep
1707 __git_log_pretty_formats="oneline short medium full fuller email raw format:"
1708 __git_log_date_formats="relative iso8601 rfc2822 short local default raw"
1712 __git_has_doubledash && return
1713 __git_find_repo_path
1716 if [ -f "$__git_repo_path/MERGE_HEAD" ]; then
1719 case "$prev,$cur" in
1721 return # fall back to Bash filename completion
1724 __git_complete_symbol --cur="${cur#:}" --sfx=":"
1728 __git_complete_symbol
1733 --pretty=*|--format=*)
1734 __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
1739 __gitcomp "$__git_log_date_formats" "" "${cur##--date=}"
1743 __gitcomp "full short no" "" "${cur##--decorate=}"
1747 __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}"
1751 __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}"
1756 $__git_log_common_options
1757 $__git_log_shortlog_options
1758 $__git_log_gitk_options
1759 --root --topo-order --date-order --reverse
1760 --follow --full-diff
1761 --abbrev-commit --abbrev=
1762 --relative-date --date=
1763 --pretty= --format= --oneline
1768 --decorate --decorate=
1770 --parents --children
1772 $__git_diff_common_options
1773 --pickaxe-all --pickaxe-regex
1778 return # fall back to Bash filename completion
1781 __git_complete_symbol --cur="${cur#-L:}" --sfx=":"
1785 __git_complete_symbol --pfx="-G" --cur="${cur#-G}"
1789 __git_complete_symbol --pfx="-S" --cur="${cur#-S}"
1793 __git_complete_revlist
1796 # Common merge options shared by git-merge(1) and git-pull(1).
1797 __git_merge_options="
1798 --no-commit --no-stat --log --no-log --squash --strategy
1799 --commit --stat --no-squash --ff --no-ff --ff-only --edit --no-edit
1800 --verify-signatures --no-verify-signatures --gpg-sign
1801 --quiet --verbose --progress --no-progress
1806 __git_complete_strategy && return
1810 __gitcomp "$__git_merge_options
1811 --rerere-autoupdate --no-rerere-autoupdate --abort --continue"
1821 __gitcomp "$__git_mergetools_common tortoisemerge" "" "${cur##--tool=}"
1825 __gitcomp "--tool= --prompt --no-prompt"
1835 __gitcomp "--octopus --independent --is-ancestor --fork-point"
1846 __gitcomp "--dry-run"
1851 if [ $(__git_count_arguments "mv") -gt 0 ]; then
1852 # We need to show both cached and untracked files (including
1853 # empty directories) since this may not be the last argument.
1854 __git_complete_index_file "--cached --others --directory"
1856 __git_complete_index_file "--cached"
1862 __gitcomp "--tags --all --stdin"
1867 local subcommands='add append copy edit list prune remove show'
1868 local subcommand="$(__git_find_on_cmdline "$subcommands")"
1870 case "$subcommand,$cur" in
1880 __gitcomp "$subcommands --ref"
1884 add,--reuse-message=*|append,--reuse-message=*|\
1885 add,--reedit-message=*|append,--reedit-message=*)
1886 __git_complete_refs --cur="${cur#*=}"
1889 __gitcomp '--file= --message= --reedit-message=
1896 __gitcomp '--dry-run --verbose'
1914 __git_complete_strategy && return
1917 --recurse-submodules=*)
1918 __gitcomp "$__git_fetch_recurse_submodules" "" "${cur##--recurse-submodules=}"
1923 --rebase --no-rebase
1924 $__git_merge_options
1925 $__git_fetch_options
1930 __git_complete_remote_or_refspec
1933 __git_push_recurse_submodules="check on-demand only"
1935 __git_complete_force_with_lease ()
1943 __git_complete_refs --cur="${cur_#*:}"
1946 __git_complete_refs --cur="$cur_"
1955 __gitcomp_nl "$(__git_remotes)"
1958 --recurse-submodules)
1959 __gitcomp "$__git_push_recurse_submodules"
1965 __gitcomp_nl "$(__git_remotes)" "" "${cur##--repo=}"
1968 --recurse-submodules=*)
1969 __gitcomp "$__git_push_recurse_submodules" "" "${cur##--recurse-submodules=}"
1972 --force-with-lease=*)
1973 __git_complete_force_with_lease "${cur##--force-with-lease=}"
1978 --all --mirror --tags --dry-run --force --verbose
1979 --quiet --prune --delete --follow-tags
1980 --receive-pack= --repo= --set-upstream
1981 --force-with-lease --force-with-lease= --recurse-submodules=
1986 __git_complete_remote_or_refspec
1991 __git_find_repo_path
1992 if [ -f "$__git_repo_path"/rebase-merge/interactive ]; then
1993 __gitcomp "--continue --skip --abort --quit --edit-todo"
1995 elif [ -d "$__git_repo_path"/rebase-apply ] || \
1996 [ -d "$__git_repo_path"/rebase-merge ]; then
1997 __gitcomp "--continue --skip --abort --quit"
2000 __git_complete_strategy && return
2003 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
2008 --onto --merge --strategy --interactive
2009 --preserve-merges --stat --no-stat
2010 --committer-date-is-author-date --ignore-date
2011 --ignore-whitespace --whitespace=
2012 --autosquash --no-autosquash
2013 --fork-point --no-fork-point
2014 --autostash --no-autostash
2015 --verify --no-verify
2016 --keep-empty --root --force-rebase --no-ff
2027 local subcommands="show delete expire"
2028 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2030 if [ -z "$subcommand" ]; then
2031 __gitcomp "$subcommands"
2037 __git_send_email_confirm_options="always never auto cc compose"
2038 __git_send_email_suppresscc_options="author self cc bodycc sob cccmd body all"
2043 --to|--cc|--bcc|--from)
2044 __gitcomp "$(__git send-email --dump-aliases)"
2052 $__git_send_email_confirm_options
2053 " "" "${cur##--confirm=}"
2058 $__git_send_email_suppresscc_options
2059 " "" "${cur##--suppress-cc=}"
2063 --smtp-encryption=*)
2064 __gitcomp "ssl tls" "" "${cur##--smtp-encryption=}"
2070 " "" "${cur##--thread=}"
2073 --to=*|--cc=*|--bcc=*|--from=*)
2074 __gitcomp "$(__git send-email --dump-aliases)" "" "${cur#--*=}"
2078 __gitcomp "--annotate --bcc --cc --cc-cmd --chain-reply-to
2079 --compose --confirm= --dry-run --envelope-sender
2081 --in-reply-to --no-chain-reply-to --no-signed-off-by-cc
2082 --no-suppress-from --no-thread --quiet
2083 --signed-off-by-cc --smtp-pass --smtp-server
2084 --smtp-server-port --smtp-encryption= --smtp-user
2085 --subject --suppress-cc= --suppress-from --thread --to
2086 --validate --no-validate
2087 $__git_format_patch_options"
2091 __git_complete_revlist
2102 local untracked_state
2105 --ignore-submodules=*)
2106 __gitcomp "none untracked dirty all" "" "${cur##--ignore-submodules=}"
2109 --untracked-files=*)
2110 __gitcomp "$__git_untracked_file_modes" "" "${cur##--untracked-files=}"
2115 always never auto column row plain dense nodense
2116 " "" "${cur##--column=}"
2121 --short --branch --porcelain --long --verbose
2122 --untracked-files= --ignore-submodules= --ignored
2123 --column= --no-column
2129 untracked_state="$(__git_get_option_value "-u" "--untracked-files=" \
2130 "$__git_untracked_file_modes" "status.showUntrackedFiles")"
2132 case "$untracked_state" in
2134 # --ignored option does not matter
2138 complete_opt="--cached --directory --no-empty-directory --others"
2140 if [ -n "$(__git_find_on_cmdline "--ignored")" ]; then
2141 complete_opt="$complete_opt --ignored --exclude=*"
2146 __git_complete_index_file "$complete_opt"
2149 __git_config_get_set_variables ()
2151 local prevword word config_file= c=$cword
2152 while [ $c -gt 1 ]; do
2155 --system|--global|--local|--file=*)
2160 config_file="$word $prevword"
2168 __git config $config_file --name-only --list
2174 branch.*.remote|branch.*.pushremote)
2175 __gitcomp_nl "$(__git_remotes)"
2183 __gitcomp "false true preserve interactive"
2187 __gitcomp_nl "$(__git_remotes)"
2191 local remote="${prev#remote.}"
2192 remote="${remote%.fetch}"
2193 if [ -z "$cur" ]; then
2194 __gitcomp_nl "refs/heads/" "" "" ""
2197 __gitcomp_nl "$(__git_refs_remotes "$remote")"
2201 local remote="${prev#remote.}"
2202 remote="${remote%.push}"
2203 __gitcomp_nl "$(__git for-each-ref \
2204 --format='%(refname):%(refname)' refs/heads)"
2207 pull.twohead|pull.octopus)
2208 __git_compute_merge_strategies
2209 __gitcomp "$__git_merge_strategies"
2212 color.branch|color.diff|color.interactive|\
2213 color.showbranch|color.status|color.ui)
2214 __gitcomp "always never auto"
2218 __gitcomp "false true"
2223 normal black red green yellow blue magenta cyan white
2224 bold dim ul blink reverse
2229 __gitcomp "log short"
2233 __gitcomp "man info web html"
2237 __gitcomp "$__git_log_date_formats"
2240 sendemail.aliasesfiletype)
2241 __gitcomp "mutt mailrc pine elm gnus"
2245 __gitcomp "$__git_send_email_confirm_options"
2248 sendemail.suppresscc)
2249 __gitcomp "$__git_send_email_suppresscc_options"
2252 sendemail.transferencoding)
2253 __gitcomp "7bit 8bit quoted-printable base64"
2256 --get|--get-all|--unset|--unset-all)
2257 __gitcomp_nl "$(__git_config_get_set_variables)"
2267 --system --global --local --file=
2268 --list --replace-all
2269 --get --get-all --get-regexp
2270 --add --unset --unset-all
2271 --remove-section --rename-section
2277 local pfx="${cur%.*}." cur_="${cur##*.}"
2278 __gitcomp "remote pushremote merge mergeoptions rebase" "$pfx" "$cur_"
2282 local pfx="${cur%.*}." cur_="${cur#*.}"
2283 __gitcomp_direct "$(__git_heads "$pfx" "$cur_" ".")"
2284 __gitcomp_nl_append $'autosetupmerge\nautosetuprebase\n' "$pfx" "$cur_"
2288 local pfx="${cur%.*}." cur_="${cur##*.}"
2290 argprompt cmd confirm needsfile noconsole norescan
2291 prompt revprompt revunmerged title
2296 local pfx="${cur%.*}." cur_="${cur##*.}"
2297 __gitcomp "cmd path" "$pfx" "$cur_"
2301 local pfx="${cur%.*}." cur_="${cur##*.}"
2302 __gitcomp "cmd path" "$pfx" "$cur_"
2306 local pfx="${cur%.*}." cur_="${cur##*.}"
2307 __gitcomp "cmd path trustExitCode" "$pfx" "$cur_"
2311 local pfx="${cur%.*}." cur_="${cur#*.}"
2312 __git_compute_all_commands
2313 __gitcomp_nl "$__git_all_commands" "$pfx" "$cur_"
2317 local pfx="${cur%.*}." cur_="${cur##*.}"
2319 url proxy fetch push mirror skipDefaultUpdate
2320 receivepack uploadpack tagopt pushurl
2325 local pfx="${cur%.*}." cur_="${cur#*.}"
2326 __gitcomp_nl "$(__git_remotes)" "$pfx" "$cur_" "."
2327 __gitcomp_nl_append "pushdefault" "$pfx" "$cur_"
2331 local pfx="${cur%.*}." cur_="${cur##*.}"
2332 __gitcomp "insteadOf pushInsteadOf" "$pfx" "$cur_"
2339 advice.commitBeforeMerge
2341 advice.implicitIdentity
2342 advice.pushAlreadyExists
2343 advice.pushFetchFirst
2344 advice.pushNeedsForce
2345 advice.pushNonFFCurrent
2346 advice.pushNonFFMatching
2347 advice.pushUpdateRejected
2348 advice.resolveConflict
2351 advice.statusUoption
2355 apply.ignorewhitespace
2357 branch.autosetupmerge
2358 branch.autosetuprebase
2362 color.branch.current
2367 color.decorate.branch
2368 color.decorate.remoteBranch
2369 color.decorate.stash
2379 color.diff.whitespace
2384 color.grep.linenumber
2387 color.grep.separator
2389 color.interactive.error
2390 color.interactive.header
2391 color.interactive.help
2392 color.interactive.prompt
2397 color.status.changed
2399 color.status.localBranch
2400 color.status.nobranch
2401 color.status.remoteBranch
2402 color.status.unmerged
2403 color.status.untracked
2404 color.status.updated
2416 core.bigFileThreshold
2421 core.deltaBaseCacheLimit
2426 core.fsyncobjectfiles
2432 core.logAllRefUpdates
2433 core.loosecompression
2436 core.packedGitWindowSize
2437 core.packedRefsTimeout
2439 core.precomposeUnicode
2440 core.preferSymlinkRefs
2445 core.repositoryFormatVersion
2447 core.sharedRepository
2454 core.warnAmbiguousRefs
2458 credential.useHttpPath
2460 credentialCache.ignoreSIGHUP
2461 diff.autorefreshindex
2463 diff.ignoreSubmodules
2470 diff.suppressBlankEmpty
2476 fetch.recurseSubmodules
2487 format.subjectprefix
2501 gc.reflogexpireunreachable
2504 gc.worktreePruneExpire
2506 gitcvs.commitmsgannotation
2507 gitcvs.dbTableNamePrefix
2518 gui.copyblamethreshold
2522 gui.matchtrackingbranch
2523 gui.newbranchtemplate
2524 gui.pruneduringfetch
2525 gui.spellingdictionary
2542 http.sslCertPasswordProtected
2547 i18n.logOutputEncoding
2553 imap.preformattedHTML
2563 interactive.singlekey
2579 mergetool.keepBackup
2580 mergetool.keepTemporaries
2585 notes.rewrite.rebase
2589 pack.deltaCacheLimit
2606 receive.denyCurrentBranch
2607 receive.denyDeleteCurrent
2609 receive.denyNonFastForwards
2612 receive.updateserverinfo
2615 repack.usedeltabaseoffset
2619 sendemail.aliasesfile
2620 sendemail.aliasfiletype
2624 sendemail.chainreplyto
2626 sendemail.envelopesender
2630 sendemail.signedoffbycc
2631 sendemail.smtpdomain
2632 sendemail.smtpencryption
2634 sendemail.smtpserver
2635 sendemail.smtpserveroption
2636 sendemail.smtpserverport
2638 sendemail.suppresscc
2639 sendemail.suppressfrom
2643 sendemail.smtpbatchsize
2644 sendemail.smtprelogindelay
2646 status.relativePaths
2647 status.showUntrackedFiles
2648 status.submodulesummary
2651 transfer.unpackLimit
2664 add rename remove set-head set-branches
2665 get-url set-url show prune update
2667 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2668 if [ -z "$subcommand" ]; then
2671 __gitcomp "--verbose"
2674 __gitcomp "$subcommands"
2680 case "$subcommand,$cur" in
2682 __gitcomp "--track --master --fetch --tags --no-tags --mirror="
2687 __gitcomp "--auto --delete"
2692 set-head,*|set-branches,*)
2693 __git_complete_remote_or_refspec
2699 __gitcomp "$(__git_get_config_variables "remotes")"
2702 __gitcomp "--push --add --delete"
2705 __gitcomp "--push --all"
2708 __gitcomp "--dry-run"
2711 __gitcomp_nl "$(__git_remotes)"
2720 __gitcomp "--edit --graft --format= --list --delete"
2729 local subcommands="clear forget diff remaining status gc"
2730 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2731 if test -z "$subcommand"
2733 __gitcomp "$subcommands"
2740 __git_has_doubledash && return
2744 __gitcomp "--merge --mixed --hard --soft --patch --keep"
2753 __git_find_repo_path
2754 if [ -f "$__git_repo_path"/REVERT_HEAD ]; then
2755 __gitcomp "--continue --quit --abort"
2761 --edit --mainline --no-edit --no-commit --signoff
2762 --strategy= --strategy-option=
2774 __gitcomp "--cached --dry-run --ignore-unmatch --quiet"
2779 __git_complete_index_file "--cached"
2784 __git_has_doubledash && return
2789 $__git_log_common_options
2790 $__git_log_shortlog_options
2791 --numbered --summary --email
2796 __git_complete_revlist
2801 __git_has_doubledash && return
2804 --pretty=*|--format=*)
2805 __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
2810 __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}"
2814 __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}"
2818 __gitcomp "--pretty= --format= --abbrev-commit --oneline
2820 $__git_diff_common_options
2825 __git_complete_revlist_file
2833 --all --remotes --topo-order --date-order --current --more=
2834 --list --independent --merge-base --no-name
2836 --sha1-name --sparse --topics --reflog
2841 __git_complete_revlist
2846 local save_opts='--all --keep-index --no-keep-index --quiet --patch --include-untracked'
2847 local subcommands='push save list show apply clear drop pop create branch'
2848 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2849 if [ -z "$subcommand" ]; then
2852 __gitcomp "$save_opts"
2855 if [ -z "$(__git_find_on_cmdline "$save_opts")" ]; then
2856 __gitcomp "$subcommands"
2861 case "$subcommand,$cur" in
2863 __gitcomp "$save_opts --message"
2866 __gitcomp "$save_opts"
2869 __gitcomp "--index --quiet"
2874 show,--*|branch,--*)
2877 if [ $cword -eq 3 ]; then
2880 __gitcomp_nl "$(__git stash list \
2881 | sed -n -e 's/:.*//p')"
2884 show,*|apply,*|drop,*|pop,*)
2885 __gitcomp_nl "$(__git stash list \
2886 | sed -n -e 's/:.*//p')"
2896 __git_has_doubledash && return
2898 local subcommands="add status init deinit update summary foreach sync"
2899 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2900 if [ -z "$subcommand" ]; then
2906 __gitcomp "$subcommands"
2912 case "$subcommand,$cur" in
2914 __gitcomp "--branch --force --name --reference --depth"
2917 __gitcomp "--cached --recursive"
2920 __gitcomp "--force --all"
2924 --init --remote --no-fetch
2925 --recommend-shallow --no-recommend-shallow
2926 --force --rebase --merge --reference --depth --recursive --jobs
2930 __gitcomp "--cached --files --summary-limit"
2932 foreach,--*|sync,--*)
2933 __gitcomp "--recursive"
2943 init fetch clone rebase dcommit log find-rev
2944 set-tree commit-diff info create-ignore propget
2945 proplist show-ignore show-externals branch tag blame
2946 migrate mkdirs reset gc
2948 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2949 if [ -z "$subcommand" ]; then
2950 __gitcomp "$subcommands"
2952 local remote_opts="--username= --config-dir= --no-auth-cache"
2954 --follow-parent --authors-file= --repack=
2955 --no-metadata --use-svm-props --use-svnsync-props
2956 --log-window-size= --no-checkout --quiet
2957 --repack-flags --use-log-author --localtime
2959 --ignore-paths= --include-paths= $remote_opts
2962 --template= --shared= --trunk= --tags=
2963 --branches= --stdlayout --minimize-url
2964 --no-metadata --use-svm-props --use-svnsync-props
2965 --rewrite-root= --prefix= $remote_opts
2968 --edit --rmdir --find-copies-harder --copy-similarity=
2971 case "$subcommand,$cur" in
2973 __gitcomp "--revision= --fetch-all $fc_opts"
2976 __gitcomp "--revision= $fc_opts $init_opts"
2979 __gitcomp "$init_opts"
2983 --merge --strategy= --verbose --dry-run
2984 --fetch-all --no-rebase --commit-url
2985 --revision --interactive $cmt_opts $fc_opts
2989 __gitcomp "--stdin $cmt_opts $fc_opts"
2991 create-ignore,--*|propget,--*|proplist,--*|show-ignore,--*|\
2992 show-externals,--*|mkdirs,--*)
2993 __gitcomp "--revision="
2997 --limit= --revision= --verbose --incremental
2998 --oneline --show-commit --non-recursive
2999 --authors-file= --color
3004 --merge --verbose --strategy= --local
3005 --fetch-all --dry-run $fc_opts
3009 __gitcomp "--message= --file= --revision= $cmt_opts"
3015 __gitcomp "--dry-run --message --tag"
3018 __gitcomp "--dry-run --message"
3021 __gitcomp "--git-format"
3025 --config-dir= --ignore-paths= --minimize
3026 --no-auth-cache --username=
3030 __gitcomp "--revision= --parent"
3041 while [ $c -lt $cword ]; do
3045 __gitcomp_direct "$(__git_tags "" "$cur" " ")"
3060 __gitcomp_direct "$(__git_tags "" "$cur" " ")"
3071 --list --delete --verify --annotate --message --file
3072 --sign --cleanup --local-user --force --column --sort=
3073 --contains --no-contains --points-at --merged --no-merged --create-reflog
3086 local subcommands="add list lock prune unlock"
3087 local subcommand="$(__git_find_on_cmdline "$subcommands")"
3088 if [ -z "$subcommand" ]; then
3089 __gitcomp "$subcommands"
3091 case "$subcommand,$cur" in
3093 __gitcomp "--detach"
3096 __gitcomp "--porcelain"
3099 __gitcomp "--reason"
3102 __gitcomp "--dry-run --expire --verbose"
3112 local i c=1 command __git_dir __git_repo_path
3113 local __git_C_args C_args_count=0
3115 while [ $c -lt $cword ]; do
3118 --git-dir=*) __git_dir="${i#--git-dir=}" ;;
3119 --git-dir) ((c++)) ; __git_dir="${words[c]}" ;;
3120 --bare) __git_dir="." ;;
3121 --help) command="help"; break ;;
3122 -c|--work-tree|--namespace) ((c++)) ;;
3123 -C) __git_C_args[C_args_count++]=-C
3125 __git_C_args[C_args_count++]="${words[c]}"
3128 *) command="$i"; break ;;
3133 if [ -z "$command" ]; then
3135 --git-dir|-C|--work-tree)
3136 # these need a path argument, let's fall back to
3137 # Bash filename completion
3141 # we don't support completing these options' arguments
3159 --no-replace-objects
3163 *) __git_compute_porcelain_commands
3164 __gitcomp "$__git_porcelain_commands $(__git_aliases)" ;;
3169 local completion_func="_git_${command//-/_}"
3170 declare -f $completion_func >/dev/null 2>/dev/null && $completion_func && return
3172 local expansion=$(__git_aliased_command "$command")
3173 if [ -n "$expansion" ]; then
3175 completion_func="_git_${expansion//-/_}"
3176 declare -f $completion_func >/dev/null 2>/dev/null && $completion_func
3182 __git_has_doubledash && return
3184 local __git_repo_path
3185 __git_find_repo_path
3188 if [ -f "$__git_repo_path/MERGE_HEAD" ]; then
3194 $__git_log_common_options
3195 $__git_log_gitk_options
3201 __git_complete_revlist
3204 if [[ -n ${ZSH_VERSION-} ]]; then
3205 echo "WARNING: this script is deprecated, please see git-completion.zsh" 1>&2
3207 autoload -U +X compinit && compinit
3213 local cur_="${3-$cur}"
3219 local c IFS=$' \t\n'
3227 array[${#array[@]}+1]="$c"
3230 compadd -Q -S '' -p "${2-}" -a -- array && _ret=0
3241 compadd -Q -- ${=1} && _ret=0
3250 compadd -Q -S "${4- }" -p "${2-}" -- ${=1} && _ret=0
3259 compadd -Q -p "${2-}" -f -- ${=1} && _ret=0
3264 local _ret=1 cur cword prev
3265 cur=${words[CURRENT]}
3266 prev=${words[CURRENT-1]}
3268 emulate ksh -c __${service}_main
3269 let _ret && _default && _ret=0
3273 compdef _git git gitk
3279 local cur words cword prev
3280 _get_comp_words_by_ref -n =: cur words cword prev
3284 # Setup completion for certain functions defined above by setting common
3285 # variables and workarounds.
3286 # This is NOT a public function; use at your own risk.
3289 local wrapper="__git_wrap${2}"
3290 eval "$wrapper () { __git_func_wrap $2 ; }"
3291 complete -o bashdefault -o default -o nospace -F $wrapper $1 2>/dev/null \
3292 || complete -o default -o nospace -F $wrapper $1
3295 # wrapper for backwards compatibility
3298 __git_wrap__git_main
3301 # wrapper for backwards compatibility
3304 __git_wrap__gitk_main
3307 __git_complete git __git_main
3308 __git_complete gitk __gitk_main
3310 # The following are necessary only for Cygwin, and only are needed
3311 # when the user has tab-completed the executable name and consequently
3312 # included the '.exe' suffix.
3314 if [ Cygwin = "$(uname -o 2>/dev/null)" ]; then
3315 __git_complete git.exe __git_main