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, write to the Free Software Foundation,
115 # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
117 # The latest version of this software can be obtained here:
119 # http://bash-completion.alioth.debian.org/
123 # This function can be used to access a tokenized list of words
124 # on the command line:
126 # __git_reassemble_comp_words_by_ref '=:'
127 # if test "${words_[cword_-1]}" = -w
132 # The argument should be a collection of characters from the list of
133 # word completion separators (COMP_WORDBREAKS) to treat as ordinary
136 # This is roughly equivalent to going back in time and setting
137 # COMP_WORDBREAKS to exclude those characters. The intent is to
138 # make option types like --date=<type> and <rev>:<path> easy to
139 # recognize by treating each shell word as a single token.
141 # It is best not to set COMP_WORDBREAKS directly because the value is
142 # shared with other completion scripts. By the time the completion
143 # function gets called, COMP_WORDS has already been populated so local
144 # changes to COMP_WORDBREAKS have no effect.
146 # Output: words_, cword_, cur_.
148 __git_reassemble_comp_words_by_ref()
150 local exclude i j first
151 # Which word separators to exclude?
152 exclude="${1//[^$COMP_WORDBREAKS]}"
154 if [ -z "$exclude" ]; then
155 words_=("${COMP_WORDS[@]}")
158 # List of word completion separators has shrunk;
159 # re-assemble words to complete.
160 for ((i=0, j=0; i < ${#COMP_WORDS[@]}; i++, j++)); do
161 # Append each nonempty word consisting of just
162 # word separator characters to the current word.
166 [ -n "${COMP_WORDS[$i]}" ] &&
167 # word consists of excluded word separators
168 [ "${COMP_WORDS[$i]//[^$exclude]}" = "${COMP_WORDS[$i]}" ]
170 # Attach to the previous token,
171 # unless the previous token is the command name.
172 if [ $j -ge 2 ] && [ -n "$first" ]; then
176 words_[$j]=${words_[j]}${COMP_WORDS[i]}
177 if [ $i = $COMP_CWORD ]; then
180 if (($i < ${#COMP_WORDS[@]} - 1)); then
187 words_[$j]=${words_[j]}${COMP_WORDS[i]}
188 if [ $i = $COMP_CWORD ]; then
194 if ! type _get_comp_words_by_ref >/dev/null 2>&1; then
195 _get_comp_words_by_ref ()
197 local exclude cur_ words_ cword_
198 if [ "$1" = "-n" ]; then
202 __git_reassemble_comp_words_by_ref "$exclude"
203 cur_=${words_[cword_]}
204 while [ $# -gt 0 ]; do
210 prev=${words_[$cword_-1]}
213 words=("${words_[@]}")
224 # Fills the COMPREPLY array with prefiltered words without any additional
226 # Callers must take care of providing only words that match the current word
227 # to be completed and adding any prefix and/or suffix (trailing space!), if
229 # 1: List of newline-separated matching completion words, complete with
240 local x i=${#COMPREPLY[@]}
242 if [[ "$x" == "$3"* ]]; then
243 COMPREPLY[i++]="$2$x$4"
254 # Generates completion reply, appending a space to possible completion words,
256 # It accepts 1 to 4 arguments:
257 # 1: List of possible completion words.
258 # 2: A prefix to be added to each possible completion word (optional).
259 # 3: Generate possible completion matches for this word (optional).
260 # 4: A suffix to be appended to each possible completion word (optional).
263 local cur_="${3-$cur}"
269 local c i=0 IFS=$' \t\n'
272 if [[ $c == "$cur_"* ]]; then
277 COMPREPLY[i++]="${2-}$c"
284 # Variation of __gitcomp_nl () that appends to the existing list of
285 # completion candidates, COMPREPLY.
286 __gitcomp_nl_append ()
289 __gitcompappend "$1" "${2-}" "${3-$cur}" "${4- }"
292 # Generates completion reply from newline-separated possible completion words
293 # by appending a space to all of them.
294 # It accepts 1 to 4 arguments:
295 # 1: List of possible completion words, separated by a single newline.
296 # 2: A prefix to be added to each possible completion word (optional).
297 # 3: Generate possible completion matches for this word (optional).
298 # 4: A suffix to be appended to each possible completion word instead of
299 # the default space (optional). If specified but empty, nothing is
304 __gitcomp_nl_append "$@"
307 # Generates completion reply with compgen from newline-separated possible
308 # completion filenames.
309 # It accepts 1 to 3 arguments:
310 # 1: List of possible completion filenames, separated by a single newline.
311 # 2: A directory prefix to be added to each possible completion filename
313 # 3: Generate possible completion matches for this word (optional).
318 # XXX does not work when the directory prefix contains a tilde,
319 # since tilde expansion is not applied.
320 # This means that COMPREPLY will be empty and Bash default
321 # completion will be used.
322 __gitcompadd "$1" "${2-}" "${3-$cur}" ""
324 # use a hack to enable file mode in bash < 4
325 compopt -o filenames +o nospace 2>/dev/null ||
326 compgen -f /non-existing-dir/ > /dev/null
329 # Execute 'git ls-files', unless the --committable option is specified, in
330 # which case it runs 'git diff-index' to find out the files that can be
331 # committed. It return paths relative to the directory specified in the first
332 # argument, and using the options specified in the second argument.
333 __git_ls_files_helper ()
335 if [ "$2" == "--committable" ]; then
336 __git -C "$1" diff-index --name-only --relative HEAD
338 # NOTE: $2 is not quoted in order to support multiple options
339 __git -C "$1" ls-files --exclude-standard $2
344 # __git_index_files accepts 1 or 2 arguments:
345 # 1: Options to pass to ls-files (required).
346 # 2: A directory path (optional).
347 # If provided, only files within the specified directory are listed.
348 # Sub directories are never recursed. Path must have a trailing
352 local root="${2-.}" file
354 __git_ls_files_helper "$root" "$1" |
355 while read -r file; do
357 ?*/*) echo "${file%%/*}" ;;
363 # Lists branches from the local repository.
364 # 1: A prefix to be added to each listed branch (optional).
365 # 2: List only branches matching this word (optional; list all branches if
367 # 3: A suffix to be appended to each listed branch (optional).
370 local pfx="${1-}" cur_="${2-}" sfx="${3-}"
372 __git for-each-ref --format="${pfx//\%/%%}%(refname:strip=2)$sfx" \
373 "refs/heads/$cur_*" "refs/heads/$cur_*/**"
376 # Lists tags from the local repository.
377 # Accepts the same positional parameters as __git_heads() above.
380 local pfx="${1-}" cur_="${2-}" sfx="${3-}"
382 __git for-each-ref --format="${pfx//\%/%%}%(refname:strip=2)$sfx" \
383 "refs/tags/$cur_*" "refs/tags/$cur_*/**"
386 # Lists refs from the local (by default) or from a remote repository.
387 # It accepts 0, 1 or 2 arguments:
388 # 1: The remote to list refs from (optional; ignored, if set but empty).
389 # Can be the name of a configured remote, a path, or a URL.
390 # 2: In addition to local refs, list unique branches from refs/remotes/ for
391 # 'git checkout's tracking DWIMery (optional; ignored, if set but empty).
392 # 3: A prefix to be added to each listed ref (optional).
393 # 4: List only refs matching this word (optional; list all refs if unset or
395 # 5: A suffix to be appended to each listed ref (optional; ignored, if set
398 # Use __git_complete_refs() instead.
401 local i hash dir track="${2-}"
402 local list_refs_from=path remote="${1-}"
404 local pfx="${3-}" cur_="${4-$cur}" sfx="${5-}"
406 local fer_pfx="${pfx//\%/%%}" # "escape" for-each-ref format specifiers
409 dir="$__git_repo_path"
411 if [ -z "$remote" ]; then
412 if [ -z "$dir" ]; then
416 if __git_is_configured_remote "$remote"; then
417 # configured remote takes precedence over a
418 # local directory with the same name
419 list_refs_from=remote
420 elif [ -d "$remote/.git" ]; then
422 elif [ -d "$remote" ]; then
429 if [ "$list_refs_from" = path ]; then
430 if [[ "$cur_" == ^* ]]; then
439 refs=("$match*" "$match*/**")
443 for i in HEAD FETCH_HEAD ORIG_HEAD MERGE_HEAD; do
446 if [ -e "$dir/$i" ]; then
452 format="refname:strip=2"
453 refs=("refs/tags/$match*" "refs/tags/$match*/**"
454 "refs/heads/$match*" "refs/heads/$match*/**"
455 "refs/remotes/$match*" "refs/remotes/$match*/**")
458 __git_dir="$dir" __git for-each-ref --format="$fer_pfx%($format)$sfx" \
460 if [ -n "$track" ]; then
461 # employ the heuristic used by git checkout
462 # Try to find a remote branch that matches the completion word
463 # but only output if the branch name is unique
464 __git for-each-ref --format="$fer_pfx%(refname:strip=3)$sfx" \
465 --sort="refname:strip=3" \
466 "refs/remotes/*/$match*" "refs/remotes/*/$match*/**" | \
473 __git ls-remote "$remote" "$match*" | \
474 while read -r hash i; do
477 *) echo "$pfx$i$sfx" ;;
482 if [ "$list_refs_from" = remote ]; then
484 $match*) echo "${pfx}HEAD$sfx" ;;
486 __git for-each-ref --format="$fer_pfx%(refname:strip=3)$sfx" \
487 "refs/remotes/$remote/$match*" \
488 "refs/remotes/$remote/$match*/**"
492 $match*) query_symref="HEAD" ;;
494 __git ls-remote "$remote" $query_symref \
495 "refs/tags/$match*" "refs/heads/$match*" \
496 "refs/remotes/$match*" |
497 while read -r hash i; do
500 refs/*) echo "$pfx${i#refs/*/}$sfx" ;;
501 *) echo "$pfx$i$sfx" ;; # symbolic refs
509 # Completes refs, short and long, local and remote, symbolic and pseudo.
511 # Usage: __git_complete_refs [<option>]...
512 # --remote=<remote>: The remote to list refs from, can be the name of a
513 # configured remote, a path, or a URL.
514 # --track: List unique remote branches for 'git checkout's tracking DWIMery.
515 # --pfx=<prefix>: A prefix to be added to each ref.
516 # --cur=<word>: The current ref to be completed. Defaults to the current
517 # word to be completed.
518 # --sfx=<suffix>: A suffix to be appended to each ref instead of the default
520 __git_complete_refs ()
522 local remote track pfx cur_="$cur" sfx=" "
524 while test $# != 0; do
526 --remote=*) remote="${1##--remote=}" ;;
527 --track) track="yes" ;;
528 --pfx=*) pfx="${1##--pfx=}" ;;
529 --cur=*) cur_="${1##--cur=}" ;;
530 --sfx=*) sfx="${1##--sfx=}" ;;
536 __gitcomp_direct "$(__git_refs "$remote" "$track" "$pfx" "$cur_" "$sfx")"
539 # __git_refs2 requires 1 argument (to pass to __git_refs)
540 # Deprecated: use __git_complete_fetch_refspecs() instead.
544 for i in $(__git_refs "$1"); do
549 # Completes refspecs for fetching from a remote repository.
550 # 1: The remote repository.
551 # 2: A prefix to be added to each listed refspec (optional).
552 # 3: The ref to be completed as a refspec instead of the current word to be
553 # completed (optional)
554 # 4: A suffix to be appended to each listed refspec instead of the default
556 __git_complete_fetch_refspecs ()
558 local i remote="$1" pfx="${2-}" cur_="${3-$cur}" sfx="${4- }"
561 for i in $(__git_refs "$remote" "" "" "$cur_") ; do
567 # __git_refs_remotes requires 1 argument (to pass to ls-remote)
568 __git_refs_remotes ()
571 __git ls-remote "$1" 'refs/heads/*' | \
572 while read -r hash i; do
573 echo "$i:refs/remotes/$1/${i#refs/heads/}"
580 test -d "$__git_repo_path/remotes" && ls -1 "$__git_repo_path/remotes"
584 # Returns true if $1 matches the name of a configured remote, false otherwise.
585 __git_is_configured_remote ()
588 for remote in $(__git_remotes); do
589 if [ "$remote" = "$1" ]; then
596 __git_list_merge_strategies ()
598 git merge -s help 2>&1 |
599 sed -n -e '/[Aa]vailable strategies are: /,/^$/{
608 __git_merge_strategies=
609 # 'git merge -s help' (and thus detection of the merge strategy
610 # list) fails, unfortunately, if run outside of any git working
611 # tree. __git_merge_strategies is set to the empty string in
612 # that case, and the detection will be repeated the next time it
614 __git_compute_merge_strategies ()
616 test -n "$__git_merge_strategies" ||
617 __git_merge_strategies=$(__git_list_merge_strategies)
620 __git_complete_revlist_file ()
622 local pfx ls ref cur_="$cur"
642 case "$COMP_WORDBREAKS" in
644 *) pfx="$ref:$pfx" ;;
647 __gitcomp_nl "$(__git ls-tree "$ls" \
648 | sed '/^100... blob /{
664 pfx="${cur_%...*}..."
666 __git_complete_refs --pfx="$pfx" --cur="$cur_"
671 __git_complete_refs --pfx="$pfx" --cur="$cur_"
680 # __git_complete_index_file requires 1 argument:
681 # 1: the options to pass to ls-file
683 # The exception is --committable, which finds the files appropriate commit.
684 __git_complete_index_file ()
686 local pfx="" cur_="$cur"
696 __gitcomp_file "$(__git_index_files "$1" ${pfx:+"$pfx"})" "$pfx" "$cur_"
699 __git_complete_file ()
701 __git_complete_revlist_file
704 __git_complete_revlist ()
706 __git_complete_revlist_file
709 __git_complete_remote_or_refspec ()
711 local cur_="$cur" cmd="${words[1]}"
712 local i c=2 remote="" pfx="" lhs=1 no_complete_refspec=0
713 if [ "$cmd" = "remote" ]; then
716 while [ $c -lt $cword ]; do
719 --mirror) [ "$cmd" = "push" ] && no_complete_refspec=1 ;;
720 -d|--delete) [ "$cmd" = "push" ] && lhs=0 ;;
723 push) no_complete_refspec=1 ;;
731 *) remote="$i"; break ;;
735 if [ -z "$remote" ]; then
736 __gitcomp_nl "$(__git_remotes)"
739 if [ $no_complete_refspec = 1 ]; then
742 [ "$remote" = "." ] && remote=
745 case "$COMP_WORDBREAKS" in
747 *) pfx="${cur_%%:*}:" ;;
759 if [ $lhs = 1 ]; then
760 __git_complete_fetch_refspecs "$remote" "$pfx" "$cur_"
762 __git_complete_refs --pfx="$pfx" --cur="$cur_"
766 if [ $lhs = 1 ]; then
767 __git_complete_refs --remote="$remote" --pfx="$pfx" --cur="$cur_"
769 __git_complete_refs --pfx="$pfx" --cur="$cur_"
773 if [ $lhs = 1 ]; then
774 __git_complete_refs --pfx="$pfx" --cur="$cur_"
776 __git_complete_refs --remote="$remote" --pfx="$pfx" --cur="$cur_"
782 __git_complete_strategy ()
784 __git_compute_merge_strategies
787 __gitcomp "$__git_merge_strategies"
792 __gitcomp "$__git_merge_strategies" "" "${cur##--strategy=}"
800 if test -n "${GIT_TESTING_COMMAND_COMPLETION:-}"
802 printf "%s" "${GIT_TESTING_COMMAND_COMPLETION}"
804 git help -a|egrep '^ [a-zA-Z0-9]'
808 __git_list_all_commands ()
811 for i in $(__git_commands)
814 *--*) : helper pattern;;
821 __git_compute_all_commands ()
823 test -n "$__git_all_commands" ||
824 __git_all_commands=$(__git_list_all_commands)
827 __git_list_porcelain_commands ()
830 __git_compute_all_commands
831 for i in $__git_all_commands
834 *--*) : helper pattern;;
835 applymbox) : ask gittus;;
836 applypatch) : ask gittus;;
837 archimport) : import;;
838 cat-file) : plumbing;;
839 check-attr) : plumbing;;
840 check-ignore) : plumbing;;
841 check-mailmap) : plumbing;;
842 check-ref-format) : plumbing;;
843 checkout-index) : plumbing;;
844 column) : internal helper;;
845 commit-tree) : plumbing;;
846 count-objects) : infrequent;;
847 credential) : credentials;;
848 credential-*) : credentials helper;;
849 cvsexportcommit) : export;;
850 cvsimport) : import;;
851 cvsserver) : daemon;;
853 diff-files) : plumbing;;
854 diff-index) : plumbing;;
855 diff-tree) : plumbing;;
856 fast-import) : import;;
857 fast-export) : export;;
858 fsck-objects) : plumbing;;
859 fetch-pack) : plumbing;;
860 fmt-merge-msg) : plumbing;;
861 for-each-ref) : plumbing;;
862 hash-object) : plumbing;;
863 http-*) : transport;;
864 index-pack) : plumbing;;
865 init-db) : deprecated;;
866 local-fetch) : plumbing;;
867 ls-files) : plumbing;;
868 ls-remote) : plumbing;;
869 ls-tree) : plumbing;;
870 mailinfo) : plumbing;;
871 mailsplit) : plumbing;;
872 merge-*) : plumbing;;
875 pack-objects) : plumbing;;
876 pack-redundant) : plumbing;;
877 pack-refs) : plumbing;;
878 parse-remote) : plumbing;;
879 patch-id) : plumbing;;
881 prune-packed) : plumbing;;
882 quiltimport) : import;;
883 read-tree) : plumbing;;
884 receive-pack) : plumbing;;
885 remote-*) : transport;;
887 rev-list) : plumbing;;
888 rev-parse) : plumbing;;
889 runstatus) : plumbing;;
890 sh-setup) : internal;;
892 show-ref) : plumbing;;
893 send-pack) : plumbing;;
894 show-index) : plumbing;;
896 stripspace) : plumbing;;
897 symbolic-ref) : plumbing;;
898 unpack-file) : plumbing;;
899 unpack-objects) : plumbing;;
900 update-index) : plumbing;;
901 update-ref) : plumbing;;
902 update-server-info) : daemon;;
903 upload-archive) : plumbing;;
904 upload-pack) : plumbing;;
905 write-tree) : plumbing;;
907 verify-pack) : infrequent;;
908 verify-tag) : plumbing;;
914 __git_porcelain_commands=
915 __git_compute_porcelain_commands ()
917 test -n "$__git_porcelain_commands" ||
918 __git_porcelain_commands=$(__git_list_porcelain_commands)
921 # Lists all set config variables starting with the given section prefix,
922 # with the prefix removed.
923 __git_get_config_variables ()
925 local section="$1" i IFS=$'\n'
926 for i in $(__git config --name-only --get-regexp "^$section\..*"); do
927 echo "${i#$section.}"
931 __git_pretty_aliases ()
933 __git_get_config_variables "pretty"
938 __git_get_config_variables "alias"
941 # __git_aliased_command requires 1 argument
942 __git_aliased_command ()
944 local word cmdline=$(__git config --get "alias.$1")
945 for word in $cmdline; do
951 \!*) : shell command alias ;;
953 *=*) : setting env ;;
955 \(\)) : skip parens of shell function definition ;;
956 {) : skip start of shell helper function ;;
957 :) : skip null command ;;
958 \'*) : skip opening quote after sh -c ;;
966 # __git_find_on_cmdline requires 1 argument
967 __git_find_on_cmdline ()
969 local word subcommand c=1
970 while [ $c -lt $cword ]; do
972 for subcommand in $1; do
973 if [ "$subcommand" = "$word" ]; then
982 # Echo the value of an option set on the command line or config
984 # $1: short option name
985 # $2: long option name including =
986 # $3: list of possible values
987 # $4: config string (optional)
990 # result="$(__git_get_option_value "-d" "--do-something=" \
991 # "yes no" "core.doSomething")"
993 # result is then either empty (no option set) or "yes" or "no"
995 # __git_get_option_value requires 3 arguments
996 __git_get_option_value ()
998 local c short_opt long_opt val
999 local result= values config_key word
1007 while [ $c -ge 0 ]; do
1009 for val in $values; do
1010 if [ "$short_opt$val" = "$word" ] ||
1011 [ "$long_opt$val" = "$word" ]; then
1019 if [ -n "$config_key" ] && [ -z "$result" ]; then
1020 result="$(__git config "$config_key")"
1026 __git_has_doubledash ()
1029 while [ $c -lt $cword ]; do
1030 if [ "--" = "${words[c]}" ]; then
1038 # Try to count non option arguments passed on the command line for the
1039 # specified git command.
1040 # When options are used, it is necessary to use the special -- option to
1041 # tell the implementation were non option arguments begin.
1042 # XXX this can not be improved, since options can appear everywhere, as
1046 # __git_count_arguments requires 1 argument: the git command executed.
1047 __git_count_arguments ()
1051 # Skip "git" (first argument)
1052 for ((i=1; i < ${#words[@]}; i++)); do
1057 # Good; we can assume that the following are only non
1062 # Skip the specified git command and discard git
1075 __git_whitespacelist="nowarn warn error error-all fix"
1079 __git_find_repo_path
1080 if [ -d "$__git_repo_path"/rebase-apply ]; then
1081 __gitcomp "--skip --continue --resolved --abort"
1086 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
1091 --3way --committer-date-is-author-date --ignore-date
1092 --ignore-whitespace --ignore-space-change
1093 --interactive --keep --no-utf8 --signoff --utf8
1094 --whitespace= --scissors
1104 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
1109 --stat --numstat --summary --check --index
1110 --cached --index-info --reverse --reject --unidiff-zero
1111 --apply --no-add --exclude=
1112 --ignore-whitespace --ignore-space-change
1113 --whitespace= --inaccurate-eof --verbose
1114 --recount --directory=
1125 --interactive --refresh --patch --update --dry-run
1126 --ignore-errors --intent-to-add --force --edit --chmod=
1131 local complete_opt="--others --modified --directory --no-empty-directory"
1132 if test -n "$(__git_find_on_cmdline "-u --update")"
1134 complete_opt="--modified"
1136 __git_complete_index_file "$complete_opt"
1143 __gitcomp "$(git archive --list)" "" "${cur##--format=}"
1147 __gitcomp_nl "$(__git_remotes)" "" "${cur##--remote=}"
1152 --format= --list --verbose
1153 --prefix= --remote= --exec= --output
1163 __git_has_doubledash && return
1165 local subcommands="start bad good skip reset visualize replay log run"
1166 local subcommand="$(__git_find_on_cmdline "$subcommands")"
1167 if [ -z "$subcommand" ]; then
1168 __git_find_repo_path
1169 if [ -f "$__git_repo_path"/BISECT_START ]; then
1170 __gitcomp "$subcommands"
1172 __gitcomp "replay start"
1177 case "$subcommand" in
1178 bad|good|reset|skip|start)
1188 local i c=1 only_local_ref="n" has_r="n"
1190 while [ $c -lt $cword ]; do
1193 -d|--delete|-m|--move) only_local_ref="y" ;;
1194 -r|--remotes) has_r="y" ;;
1200 --set-upstream-to=*)
1201 __git_complete_refs --cur="${cur##--set-upstream-to=}"
1205 --color --no-color --verbose --abbrev= --no-abbrev
1206 --track --no-track --contains --no-contains --merged --no-merged
1207 --set-upstream-to= --edit-description --list
1208 --unset-upstream --delete --move --remotes
1209 --column --no-column --sort= --points-at
1213 if [ $only_local_ref = "y" -a $has_r = "n" ]; then
1214 __gitcomp_direct "$(__git_heads "" "$cur" " ")"
1224 local cmd="${words[2]}"
1227 __gitcomp "create list-heads verify unbundle"
1230 # looking for a file
1235 __git_complete_revlist
1244 __git_has_doubledash && return
1248 __gitcomp "diff3 merge" "" "${cur##--conflict=}"
1252 --quiet --ours --theirs --track --no-track --merge
1253 --conflict= --orphan --patch
1257 # check if --track, --no-track, or --no-guess was specified
1258 # if so, disable DWIM mode
1259 local flags="--track --no-track --no-guess" track_opt="--track"
1260 if [ "$GIT_COMPLETION_CHECKOUT_NO_GUESS" = "1" ] ||
1261 [ -n "$(__git_find_on_cmdline "$flags")" ]; then
1264 __git_complete_refs $track_opt
1276 __git_find_repo_path
1277 if [ -f "$__git_repo_path"/CHERRY_PICK_HEAD ]; then
1278 __gitcomp "--continue --quit --abort"
1283 __gitcomp "--edit --no-commit --signoff --strategy= --mainline"
1295 __gitcomp "--dry-run --quiet"
1300 # XXX should we check for -x option ?
1301 __git_complete_index_file "--others --directory"
1324 --recurse-submodules
1326 --shallow-submodules
1333 __git_untracked_file_modes="all no normal"
1346 __gitcomp "default scissors strip verbatim whitespace
1347 " "" "${cur##--cleanup=}"
1350 --reuse-message=*|--reedit-message=*|\
1351 --fixup=*|--squash=*)
1352 __git_complete_refs --cur="${cur#*=}"
1355 --untracked-files=*)
1356 __gitcomp "$__git_untracked_file_modes" "" "${cur##--untracked-files=}"
1361 --all --author= --signoff --verify --no-verify
1363 --amend --include --only --interactive
1364 --dry-run --reuse-message= --reedit-message=
1365 --reset-author --file= --message= --template=
1366 --cleanup= --untracked-files --untracked-files=
1367 --verbose --quiet --fixup= --squash=
1368 --patch --short --date --allow-empty
1373 if __git rev-parse --verify --quiet HEAD >/dev/null; then
1374 __git_complete_index_file "--committable"
1376 # This is the first commit
1377 __git_complete_index_file "--cached"
1386 --all --tags --contains --abbrev= --candidates=
1387 --exact-match --debug --long --match --always --first-parent
1388 --exclude --dirty --broken
1395 __git_diff_algorithms="myers minimal patience histogram"
1397 __git_diff_submodule_formats="diff log short"
1399 __git_diff_common_options="--stat --numstat --shortstat --summary
1400 --patch-with-stat --name-only --name-status --color
1401 --no-color --color-words --no-renames --check
1402 --full-index --binary --abbrev --diff-filter=
1403 --find-copies-harder
1404 --text --ignore-space-at-eol --ignore-space-change
1405 --ignore-all-space --ignore-blank-lines --exit-code
1406 --quiet --ext-diff --no-ext-diff
1407 --no-prefix --src-prefix= --dst-prefix=
1408 --inter-hunk-context=
1409 --patience --histogram --minimal
1410 --raw --word-diff --word-diff-regex=
1411 --dirstat --dirstat= --dirstat-by-file
1412 --dirstat-by-file= --cumulative
1414 --submodule --submodule=
1419 __git_has_doubledash && return
1423 __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}"
1427 __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}"
1431 __gitcomp "--cached --staged --pickaxe-all --pickaxe-regex
1432 --base --ours --theirs --no-index
1433 $__git_diff_common_options
1438 __git_complete_revlist_file
1441 __git_mergetools_common="diffuse diffmerge ecmerge emerge kdiff3 meld opendiff
1442 tkdiff vimdiff gvimdiff xxdiff araxis p4merge bc codecompare
1447 __git_has_doubledash && return
1451 __gitcomp "$__git_mergetools_common kompare" "" "${cur##--tool=}"
1455 __gitcomp "--cached --staged --pickaxe-all --pickaxe-regex
1456 --base --ours --theirs
1457 --no-renames --diff-filter= --find-copies-harder
1458 --relative --ignore-submodules
1463 __git_complete_revlist_file
1466 __git_fetch_recurse_submodules="yes on-demand no"
1468 __git_fetch_options="
1469 --quiet --verbose --append --upload-pack --force --keep --depth=
1470 --tags --no-tags --all --prune --dry-run --recurse-submodules=
1471 --unshallow --update-shallow
1477 --recurse-submodules=*)
1478 __gitcomp "$__git_fetch_recurse_submodules" "" "${cur##--recurse-submodules=}"
1482 __gitcomp "$__git_fetch_options"
1486 __git_complete_remote_or_refspec
1489 __git_format_patch_options="
1490 --stdout --attach --no-attach --thread --thread= --no-thread
1491 --numbered --start-number --numbered-files --keep-subject --signoff
1492 --signature --no-signature --in-reply-to= --cc= --full-index --binary
1493 --not --all --cover-letter --no-prefix --src-prefix= --dst-prefix=
1494 --inline --suffix= --ignore-if-in-upstream --subject-prefix=
1495 --output-directory --reroll-count --to= --quiet --notes
1498 _git_format_patch ()
1504 " "" "${cur##--thread=}"
1508 __gitcomp "$__git_format_patch_options"
1512 __git_complete_revlist
1520 --tags --root --unreachable --cache --no-reflogs --full
1521 --strict --verbose --lost-found --name-objects
1532 __gitcomp "--prune --aggressive"
1543 # Lists matching symbol names from a tag (as in ctags) file.
1544 # 1: List symbol names matching this word.
1545 # 2: The tag file to list symbol names from.
1546 # 3: A prefix to be added to each listed symbol name (optional).
1547 # 4: A suffix to be appended to each listed symbol name (optional).
1548 __git_match_ctag () {
1549 awk -v pfx="${3-}" -v sfx="${4-}" "
1550 /^${1//\//\\/}/ { print pfx \$1 sfx }
1554 # Complete symbol names from a tag file.
1555 # Usage: __git_complete_symbol [<option>]...
1556 # --tags=<file>: The tag file to list symbol names from instead of the
1558 # --pfx=<prefix>: A prefix to be added to each symbol name.
1559 # --cur=<word>: The current symbol name to be completed. Defaults to
1560 # the current word to be completed.
1561 # --sfx=<suffix>: A suffix to be appended to each symbol name instead
1562 # of the default space.
1563 __git_complete_symbol () {
1564 local tags=tags pfx="" cur_="${cur-}" sfx=" "
1566 while test $# != 0; do
1568 --tags=*) tags="${1##--tags=}" ;;
1569 --pfx=*) pfx="${1##--pfx=}" ;;
1570 --cur=*) cur_="${1##--cur=}" ;;
1571 --sfx=*) sfx="${1##--sfx=}" ;;
1577 if test -r "$tags"; then
1578 __gitcomp_direct "$(__git_match_ctag "$cur_" "$tags" "$pfx" "$sfx")"
1584 __git_has_doubledash && return
1590 --text --ignore-case --word-regexp --invert-match
1591 --full-name --line-number
1592 --extended-regexp --basic-regexp --fixed-strings
1595 --files-with-matches --name-only
1596 --files-without-match
1599 --and --or --not --all-match
1600 --break --heading --show-function --function-context
1601 --untracked --no-index
1607 case "$cword,$prev" in
1609 __git_complete_symbol && return
1620 __gitcomp "--all --guides --info --man --web"
1624 __git_compute_all_commands
1625 __gitcomp "$__git_all_commands $(__git_aliases)
1626 attributes cli core-tutorial cvs-migration
1627 diffcore everyday gitk glossary hooks ignore modules
1628 namespaces repository-layout revisions tutorial tutorial-2
1638 false true umask group all world everybody
1639 " "" "${cur##--shared=}"
1643 __gitcomp "--quiet --bare --template= --shared --shared="
1653 __gitcomp "--cached --deleted --modified --others --ignored
1654 --stage --directory --no-empty-directory --unmerged
1655 --killed --exclude= --exclude-from=
1656 --exclude-per-directory= --exclude-standard
1657 --error-unmatch --with-tree= --full-name
1658 --abbrev --ignored --exclude-per-directory
1664 # XXX ignore options like --modified and always suggest all cached
1666 __git_complete_index_file "--cached"
1673 __gitcomp "--heads --tags --refs --get-url --symref"
1677 __gitcomp_nl "$(__git_remotes)"
1685 # Options that go well for log, shortlog and gitk
1686 __git_log_common_options="
1688 --branches --tags --remotes
1689 --first-parent --merges --no-merges
1691 --max-age= --since= --after=
1692 --min-age= --until= --before=
1693 --min-parents= --max-parents=
1694 --no-min-parents --no-max-parents
1696 # Options that go well for log and gitk (not shortlog)
1697 __git_log_gitk_options="
1698 --dense --sparse --full-history
1699 --simplify-merges --simplify-by-decoration
1700 --left-right --notes --no-notes
1702 # Options that go well for log and shortlog (not gitk)
1703 __git_log_shortlog_options="
1704 --author= --committer= --grep=
1705 --all-match --invert-grep
1708 __git_log_pretty_formats="oneline short medium full fuller email raw format:"
1709 __git_log_date_formats="relative iso8601 rfc2822 short local default raw"
1713 __git_has_doubledash && return
1714 __git_find_repo_path
1717 if [ -f "$__git_repo_path/MERGE_HEAD" ]; then
1720 case "$prev,$cur" in
1722 return # fall back to Bash filename completion
1725 __git_complete_symbol --cur="${cur#:}" --sfx=":"
1729 __git_complete_symbol
1734 --pretty=*|--format=*)
1735 __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
1740 __gitcomp "$__git_log_date_formats" "" "${cur##--date=}"
1744 __gitcomp "full short no" "" "${cur##--decorate=}"
1748 __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}"
1752 __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}"
1757 $__git_log_common_options
1758 $__git_log_shortlog_options
1759 $__git_log_gitk_options
1760 --root --topo-order --date-order --reverse
1761 --follow --full-diff
1762 --abbrev-commit --abbrev=
1763 --relative-date --date=
1764 --pretty= --format= --oneline
1769 --decorate --decorate=
1771 --parents --children
1773 $__git_diff_common_options
1774 --pickaxe-all --pickaxe-regex
1779 return # fall back to Bash filename completion
1782 __git_complete_symbol --cur="${cur#-L:}" --sfx=":"
1786 __git_complete_symbol --pfx="-G" --cur="${cur#-G}"
1790 __git_complete_symbol --pfx="-S" --cur="${cur#-S}"
1794 __git_complete_revlist
1797 # Common merge options shared by git-merge(1) and git-pull(1).
1798 __git_merge_options="
1799 --no-commit --no-stat --log --no-log --squash --strategy
1800 --commit --stat --no-squash --ff --no-ff --ff-only --edit --no-edit
1801 --verify-signatures --no-verify-signatures --gpg-sign
1802 --quiet --verbose --progress --no-progress
1807 __git_complete_strategy && return
1811 __gitcomp "$__git_merge_options
1812 --rerere-autoupdate --no-rerere-autoupdate --abort --continue"
1822 __gitcomp "$__git_mergetools_common tortoisemerge" "" "${cur##--tool=}"
1826 __gitcomp "--tool= --prompt --no-prompt"
1836 __gitcomp "--octopus --independent --is-ancestor --fork-point"
1847 __gitcomp "--dry-run"
1852 if [ $(__git_count_arguments "mv") -gt 0 ]; then
1853 # We need to show both cached and untracked files (including
1854 # empty directories) since this may not be the last argument.
1855 __git_complete_index_file "--cached --others --directory"
1857 __git_complete_index_file "--cached"
1863 __gitcomp "--tags --all --stdin"
1868 local subcommands='add append copy edit list prune remove show'
1869 local subcommand="$(__git_find_on_cmdline "$subcommands")"
1871 case "$subcommand,$cur" in
1881 __gitcomp "$subcommands --ref"
1885 add,--reuse-message=*|append,--reuse-message=*|\
1886 add,--reedit-message=*|append,--reedit-message=*)
1887 __git_complete_refs --cur="${cur#*=}"
1890 __gitcomp '--file= --message= --reedit-message=
1897 __gitcomp '--dry-run --verbose'
1915 __git_complete_strategy && return
1918 --recurse-submodules=*)
1919 __gitcomp "$__git_fetch_recurse_submodules" "" "${cur##--recurse-submodules=}"
1924 --rebase --no-rebase
1925 $__git_merge_options
1926 $__git_fetch_options
1931 __git_complete_remote_or_refspec
1934 __git_push_recurse_submodules="check on-demand only"
1936 __git_complete_force_with_lease ()
1944 __git_complete_refs --cur="${cur_#*:}"
1947 __git_complete_refs --cur="$cur_"
1956 __gitcomp_nl "$(__git_remotes)"
1959 --recurse-submodules)
1960 __gitcomp "$__git_push_recurse_submodules"
1966 __gitcomp_nl "$(__git_remotes)" "" "${cur##--repo=}"
1969 --recurse-submodules=*)
1970 __gitcomp "$__git_push_recurse_submodules" "" "${cur##--recurse-submodules=}"
1973 --force-with-lease=*)
1974 __git_complete_force_with_lease "${cur##--force-with-lease=}"
1979 --all --mirror --tags --dry-run --force --verbose
1980 --quiet --prune --delete --follow-tags
1981 --receive-pack= --repo= --set-upstream
1982 --force-with-lease --force-with-lease= --recurse-submodules=
1987 __git_complete_remote_or_refspec
1992 __git_find_repo_path
1993 if [ -f "$__git_repo_path"/rebase-merge/interactive ]; then
1994 __gitcomp "--continue --skip --abort --quit --edit-todo"
1996 elif [ -d "$__git_repo_path"/rebase-apply ] || \
1997 [ -d "$__git_repo_path"/rebase-merge ]; then
1998 __gitcomp "--continue --skip --abort --quit"
2001 __git_complete_strategy && return
2004 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
2009 --onto --merge --strategy --interactive
2010 --preserve-merges --stat --no-stat
2011 --committer-date-is-author-date --ignore-date
2012 --ignore-whitespace --whitespace=
2013 --autosquash --no-autosquash
2014 --fork-point --no-fork-point
2015 --autostash --no-autostash
2016 --verify --no-verify
2017 --keep-empty --root --force-rebase --no-ff
2028 local subcommands="show delete expire"
2029 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2031 if [ -z "$subcommand" ]; then
2032 __gitcomp "$subcommands"
2038 __git_send_email_confirm_options="always never auto cc compose"
2039 __git_send_email_suppresscc_options="author self cc bodycc sob cccmd body all"
2044 --to|--cc|--bcc|--from)
2045 __gitcomp "$(__git send-email --dump-aliases)"
2053 $__git_send_email_confirm_options
2054 " "" "${cur##--confirm=}"
2059 $__git_send_email_suppresscc_options
2060 " "" "${cur##--suppress-cc=}"
2064 --smtp-encryption=*)
2065 __gitcomp "ssl tls" "" "${cur##--smtp-encryption=}"
2071 " "" "${cur##--thread=}"
2074 --to=*|--cc=*|--bcc=*|--from=*)
2075 __gitcomp "$(__git send-email --dump-aliases)" "" "${cur#--*=}"
2079 __gitcomp "--annotate --bcc --cc --cc-cmd --chain-reply-to
2080 --compose --confirm= --dry-run --envelope-sender
2082 --in-reply-to --no-chain-reply-to --no-signed-off-by-cc
2083 --no-suppress-from --no-thread --quiet
2084 --signed-off-by-cc --smtp-pass --smtp-server
2085 --smtp-server-port --smtp-encryption= --smtp-user
2086 --subject --suppress-cc= --suppress-from --thread --to
2087 --validate --no-validate
2088 $__git_format_patch_options"
2092 __git_complete_revlist
2103 local untracked_state
2106 --ignore-submodules=*)
2107 __gitcomp "none untracked dirty all" "" "${cur##--ignore-submodules=}"
2110 --untracked-files=*)
2111 __gitcomp "$__git_untracked_file_modes" "" "${cur##--untracked-files=}"
2116 always never auto column row plain dense nodense
2117 " "" "${cur##--column=}"
2122 --short --branch --porcelain --long --verbose
2123 --untracked-files= --ignore-submodules= --ignored
2124 --column= --no-column
2130 untracked_state="$(__git_get_option_value "-u" "--untracked-files=" \
2131 "$__git_untracked_file_modes" "status.showUntrackedFiles")"
2133 case "$untracked_state" in
2135 # --ignored option does not matter
2139 complete_opt="--cached --directory --no-empty-directory --others"
2141 if [ -n "$(__git_find_on_cmdline "--ignored")" ]; then
2142 complete_opt="$complete_opt --ignored --exclude=*"
2147 __git_complete_index_file "$complete_opt"
2150 __git_config_get_set_variables ()
2152 local prevword word config_file= c=$cword
2153 while [ $c -gt 1 ]; do
2156 --system|--global|--local|--file=*)
2161 config_file="$word $prevword"
2169 __git config $config_file --name-only --list
2175 branch.*.remote|branch.*.pushremote)
2176 __gitcomp_nl "$(__git_remotes)"
2184 __gitcomp "false true preserve interactive"
2188 __gitcomp_nl "$(__git_remotes)"
2192 local remote="${prev#remote.}"
2193 remote="${remote%.fetch}"
2194 if [ -z "$cur" ]; then
2195 __gitcomp_nl "refs/heads/" "" "" ""
2198 __gitcomp_nl "$(__git_refs_remotes "$remote")"
2202 local remote="${prev#remote.}"
2203 remote="${remote%.push}"
2204 __gitcomp_nl "$(__git for-each-ref \
2205 --format='%(refname):%(refname)' refs/heads)"
2208 pull.twohead|pull.octopus)
2209 __git_compute_merge_strategies
2210 __gitcomp "$__git_merge_strategies"
2213 color.branch|color.diff|color.interactive|\
2214 color.showbranch|color.status|color.ui)
2215 __gitcomp "always never auto"
2219 __gitcomp "false true"
2224 normal black red green yellow blue magenta cyan white
2225 bold dim ul blink reverse
2230 __gitcomp "log short"
2234 __gitcomp "man info web html"
2238 __gitcomp "$__git_log_date_formats"
2241 sendemail.aliasesfiletype)
2242 __gitcomp "mutt mailrc pine elm gnus"
2246 __gitcomp "$__git_send_email_confirm_options"
2249 sendemail.suppresscc)
2250 __gitcomp "$__git_send_email_suppresscc_options"
2253 sendemail.transferencoding)
2254 __gitcomp "7bit 8bit quoted-printable base64"
2257 --get|--get-all|--unset|--unset-all)
2258 __gitcomp_nl "$(__git_config_get_set_variables)"
2268 --system --global --local --file=
2269 --list --replace-all
2270 --get --get-all --get-regexp
2271 --add --unset --unset-all
2272 --remove-section --rename-section
2278 local pfx="${cur%.*}." cur_="${cur##*.}"
2279 __gitcomp "remote pushremote merge mergeoptions rebase" "$pfx" "$cur_"
2283 local pfx="${cur%.*}." cur_="${cur#*.}"
2284 __gitcomp_direct "$(__git_heads "$pfx" "$cur_" ".")"
2285 __gitcomp_nl_append $'autosetupmerge\nautosetuprebase\n' "$pfx" "$cur_"
2289 local pfx="${cur%.*}." cur_="${cur##*.}"
2291 argprompt cmd confirm needsfile noconsole norescan
2292 prompt revprompt revunmerged title
2297 local pfx="${cur%.*}." cur_="${cur##*.}"
2298 __gitcomp "cmd path" "$pfx" "$cur_"
2302 local pfx="${cur%.*}." cur_="${cur##*.}"
2303 __gitcomp "cmd path" "$pfx" "$cur_"
2307 local pfx="${cur%.*}." cur_="${cur##*.}"
2308 __gitcomp "cmd path trustExitCode" "$pfx" "$cur_"
2312 local pfx="${cur%.*}." cur_="${cur#*.}"
2313 __git_compute_all_commands
2314 __gitcomp_nl "$__git_all_commands" "$pfx" "$cur_"
2318 local pfx="${cur%.*}." cur_="${cur##*.}"
2320 url proxy fetch push mirror skipDefaultUpdate
2321 receivepack uploadpack tagopt pushurl
2326 local pfx="${cur%.*}." cur_="${cur#*.}"
2327 __gitcomp_nl "$(__git_remotes)" "$pfx" "$cur_" "."
2328 __gitcomp_nl_append "pushdefault" "$pfx" "$cur_"
2332 local pfx="${cur%.*}." cur_="${cur##*.}"
2333 __gitcomp "insteadOf pushInsteadOf" "$pfx" "$cur_"
2340 advice.commitBeforeMerge
2342 advice.implicitIdentity
2343 advice.pushAlreadyExists
2344 advice.pushFetchFirst
2345 advice.pushNeedsForce
2346 advice.pushNonFFCurrent
2347 advice.pushNonFFMatching
2348 advice.pushUpdateRejected
2349 advice.resolveConflict
2352 advice.statusUoption
2356 apply.ignorewhitespace
2358 branch.autosetupmerge
2359 branch.autosetuprebase
2363 color.branch.current
2368 color.decorate.branch
2369 color.decorate.remoteBranch
2370 color.decorate.stash
2380 color.diff.whitespace
2385 color.grep.linenumber
2388 color.grep.separator
2390 color.interactive.error
2391 color.interactive.header
2392 color.interactive.help
2393 color.interactive.prompt
2398 color.status.changed
2400 color.status.localBranch
2401 color.status.nobranch
2402 color.status.remoteBranch
2403 color.status.unmerged
2404 color.status.untracked
2405 color.status.updated
2417 core.bigFileThreshold
2422 core.deltaBaseCacheLimit
2427 core.fsyncobjectfiles
2433 core.logAllRefUpdates
2434 core.loosecompression
2437 core.packedGitWindowSize
2438 core.packedRefsTimeout
2440 core.precomposeUnicode
2441 core.preferSymlinkRefs
2446 core.repositoryFormatVersion
2448 core.sharedRepository
2455 core.warnAmbiguousRefs
2459 credential.useHttpPath
2461 credentialCache.ignoreSIGHUP
2462 diff.autorefreshindex
2464 diff.ignoreSubmodules
2471 diff.suppressBlankEmpty
2477 fetch.recurseSubmodules
2488 format.subjectprefix
2502 gc.reflogexpireunreachable
2505 gc.worktreePruneExpire
2507 gitcvs.commitmsgannotation
2508 gitcvs.dbTableNamePrefix
2519 gui.copyblamethreshold
2523 gui.matchtrackingbranch
2524 gui.newbranchtemplate
2525 gui.pruneduringfetch
2526 gui.spellingdictionary
2543 http.sslCertPasswordProtected
2548 i18n.logOutputEncoding
2554 imap.preformattedHTML
2564 interactive.singlekey
2580 mergetool.keepBackup
2581 mergetool.keepTemporaries
2586 notes.rewrite.rebase
2590 pack.deltaCacheLimit
2607 receive.denyCurrentBranch
2608 receive.denyDeleteCurrent
2610 receive.denyNonFastForwards
2613 receive.updateserverinfo
2616 repack.usedeltabaseoffset
2620 sendemail.aliasesfile
2621 sendemail.aliasfiletype
2625 sendemail.chainreplyto
2627 sendemail.envelopesender
2631 sendemail.signedoffbycc
2632 sendemail.smtpdomain
2633 sendemail.smtpencryption
2635 sendemail.smtpserver
2636 sendemail.smtpserveroption
2637 sendemail.smtpserverport
2639 sendemail.suppresscc
2640 sendemail.suppressfrom
2644 sendemail.smtpbatchsize
2645 sendemail.smtprelogindelay
2647 status.relativePaths
2648 status.showUntrackedFiles
2649 status.submodulesummary
2652 transfer.unpackLimit
2665 add rename remove set-head set-branches
2666 get-url set-url show prune update
2668 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2669 if [ -z "$subcommand" ]; then
2672 __gitcomp "--verbose"
2675 __gitcomp "$subcommands"
2681 case "$subcommand,$cur" in
2683 __gitcomp "--track --master --fetch --tags --no-tags --mirror="
2688 __gitcomp "--auto --delete"
2693 set-head,*|set-branches,*)
2694 __git_complete_remote_or_refspec
2700 __gitcomp "$(__git_get_config_variables "remotes")"
2703 __gitcomp "--push --add --delete"
2706 __gitcomp "--push --all"
2709 __gitcomp "--dry-run"
2712 __gitcomp_nl "$(__git_remotes)"
2721 __gitcomp "--edit --graft --format= --list --delete"
2730 local subcommands="clear forget diff remaining status gc"
2731 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2732 if test -z "$subcommand"
2734 __gitcomp "$subcommands"
2741 __git_has_doubledash && return
2745 __gitcomp "--merge --mixed --hard --soft --patch --keep"
2754 __git_find_repo_path
2755 if [ -f "$__git_repo_path"/REVERT_HEAD ]; then
2756 __gitcomp "--continue --quit --abort"
2762 --edit --mainline --no-edit --no-commit --signoff
2763 --strategy= --strategy-option=
2775 __gitcomp "--cached --dry-run --ignore-unmatch --quiet"
2780 __git_complete_index_file "--cached"
2785 __git_has_doubledash && return
2790 $__git_log_common_options
2791 $__git_log_shortlog_options
2792 --numbered --summary --email
2797 __git_complete_revlist
2802 __git_has_doubledash && return
2805 --pretty=*|--format=*)
2806 __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
2811 __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}"
2815 __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}"
2819 __gitcomp "--pretty= --format= --abbrev-commit --oneline
2821 $__git_diff_common_options
2826 __git_complete_revlist_file
2834 --all --remotes --topo-order --date-order --current --more=
2835 --list --independent --merge-base --no-name
2837 --sha1-name --sparse --topics --reflog
2842 __git_complete_revlist
2847 local save_opts='--all --keep-index --no-keep-index --quiet --patch --include-untracked'
2848 local subcommands='push save list show apply clear drop pop create branch'
2849 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2850 if [ -z "$subcommand" ]; then
2853 __gitcomp "$save_opts"
2856 if [ -z "$(__git_find_on_cmdline "$save_opts")" ]; then
2857 __gitcomp "$subcommands"
2862 case "$subcommand,$cur" in
2864 __gitcomp "$save_opts --message"
2867 __gitcomp "$save_opts"
2870 __gitcomp "--index --quiet"
2875 show,--*|branch,--*)
2878 if [ $cword -eq 3 ]; then
2881 __gitcomp_nl "$(__git stash list \
2882 | sed -n -e 's/:.*//p')"
2885 show,*|apply,*|drop,*|pop,*)
2886 __gitcomp_nl "$(__git stash list \
2887 | sed -n -e 's/:.*//p')"
2897 __git_has_doubledash && return
2899 local subcommands="add status init deinit update summary foreach sync"
2900 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2901 if [ -z "$subcommand" ]; then
2907 __gitcomp "$subcommands"
2913 case "$subcommand,$cur" in
2915 __gitcomp "--branch --force --name --reference --depth"
2918 __gitcomp "--cached --recursive"
2921 __gitcomp "--force --all"
2925 --init --remote --no-fetch
2926 --recommend-shallow --no-recommend-shallow
2927 --force --rebase --merge --reference --depth --recursive --jobs
2931 __gitcomp "--cached --files --summary-limit"
2933 foreach,--*|sync,--*)
2934 __gitcomp "--recursive"
2944 init fetch clone rebase dcommit log find-rev
2945 set-tree commit-diff info create-ignore propget
2946 proplist show-ignore show-externals branch tag blame
2947 migrate mkdirs reset gc
2949 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2950 if [ -z "$subcommand" ]; then
2951 __gitcomp "$subcommands"
2953 local remote_opts="--username= --config-dir= --no-auth-cache"
2955 --follow-parent --authors-file= --repack=
2956 --no-metadata --use-svm-props --use-svnsync-props
2957 --log-window-size= --no-checkout --quiet
2958 --repack-flags --use-log-author --localtime
2960 --ignore-paths= --include-paths= $remote_opts
2963 --template= --shared= --trunk= --tags=
2964 --branches= --stdlayout --minimize-url
2965 --no-metadata --use-svm-props --use-svnsync-props
2966 --rewrite-root= --prefix= $remote_opts
2969 --edit --rmdir --find-copies-harder --copy-similarity=
2972 case "$subcommand,$cur" in
2974 __gitcomp "--revision= --fetch-all $fc_opts"
2977 __gitcomp "--revision= $fc_opts $init_opts"
2980 __gitcomp "$init_opts"
2984 --merge --strategy= --verbose --dry-run
2985 --fetch-all --no-rebase --commit-url
2986 --revision --interactive $cmt_opts $fc_opts
2990 __gitcomp "--stdin $cmt_opts $fc_opts"
2992 create-ignore,--*|propget,--*|proplist,--*|show-ignore,--*|\
2993 show-externals,--*|mkdirs,--*)
2994 __gitcomp "--revision="
2998 --limit= --revision= --verbose --incremental
2999 --oneline --show-commit --non-recursive
3000 --authors-file= --color
3005 --merge --verbose --strategy= --local
3006 --fetch-all --dry-run $fc_opts
3010 __gitcomp "--message= --file= --revision= $cmt_opts"
3016 __gitcomp "--dry-run --message --tag"
3019 __gitcomp "--dry-run --message"
3022 __gitcomp "--git-format"
3026 --config-dir= --ignore-paths= --minimize
3027 --no-auth-cache --username=
3031 __gitcomp "--revision= --parent"
3042 while [ $c -lt $cword ]; do
3046 __gitcomp_direct "$(__git_tags "" "$cur" " ")"
3061 __gitcomp_direct "$(__git_tags "" "$cur" " ")"
3072 --list --delete --verify --annotate --message --file
3073 --sign --cleanup --local-user --force --column --sort=
3074 --contains --no-contains --points-at --merged --no-merged --create-reflog
3087 local subcommands="add list lock prune unlock"
3088 local subcommand="$(__git_find_on_cmdline "$subcommands")"
3089 if [ -z "$subcommand" ]; then
3090 __gitcomp "$subcommands"
3092 case "$subcommand,$cur" in
3094 __gitcomp "--detach"
3097 __gitcomp "--porcelain"
3100 __gitcomp "--reason"
3103 __gitcomp "--dry-run --expire --verbose"
3113 local i c=1 command __git_dir __git_repo_path
3114 local __git_C_args C_args_count=0
3116 while [ $c -lt $cword ]; do
3119 --git-dir=*) __git_dir="${i#--git-dir=}" ;;
3120 --git-dir) ((c++)) ; __git_dir="${words[c]}" ;;
3121 --bare) __git_dir="." ;;
3122 --help) command="help"; break ;;
3123 -c|--work-tree|--namespace) ((c++)) ;;
3124 -C) __git_C_args[C_args_count++]=-C
3126 __git_C_args[C_args_count++]="${words[c]}"
3129 *) command="$i"; break ;;
3134 if [ -z "$command" ]; then
3136 --git-dir|-C|--work-tree)
3137 # these need a path argument, let's fall back to
3138 # Bash filename completion
3142 # we don't support completing these options' arguments
3160 --no-replace-objects
3164 *) __git_compute_porcelain_commands
3165 __gitcomp "$__git_porcelain_commands $(__git_aliases)" ;;
3170 local completion_func="_git_${command//-/_}"
3171 declare -f $completion_func >/dev/null 2>/dev/null && $completion_func && return
3173 local expansion=$(__git_aliased_command "$command")
3174 if [ -n "$expansion" ]; then
3176 completion_func="_git_${expansion//-/_}"
3177 declare -f $completion_func >/dev/null 2>/dev/null && $completion_func
3183 __git_has_doubledash && return
3185 local __git_repo_path
3186 __git_find_repo_path
3189 if [ -f "$__git_repo_path/MERGE_HEAD" ]; then
3195 $__git_log_common_options
3196 $__git_log_gitk_options
3202 __git_complete_revlist
3205 if [[ -n ${ZSH_VERSION-} ]]; then
3206 echo "WARNING: this script is deprecated, please see git-completion.zsh" 1>&2
3208 autoload -U +X compinit && compinit
3214 local cur_="${3-$cur}"
3220 local c IFS=$' \t\n'
3228 array[${#array[@]}+1]="$c"
3231 compadd -Q -S '' -p "${2-}" -a -- array && _ret=0
3242 compadd -Q -- ${=1} && _ret=0
3251 compadd -Q -S "${4- }" -p "${2-}" -- ${=1} && _ret=0
3260 compadd -Q -p "${2-}" -f -- ${=1} && _ret=0
3265 local _ret=1 cur cword prev
3266 cur=${words[CURRENT]}
3267 prev=${words[CURRENT-1]}
3269 emulate ksh -c __${service}_main
3270 let _ret && _default && _ret=0
3274 compdef _git git gitk
3280 local cur words cword prev
3281 _get_comp_words_by_ref -n =: cur words cword prev
3285 # Setup completion for certain functions defined above by setting common
3286 # variables and workarounds.
3287 # This is NOT a public function; use at your own risk.
3290 local wrapper="__git_wrap${2}"
3291 eval "$wrapper () { __git_func_wrap $2 ; }"
3292 complete -o bashdefault -o default -o nospace -F $wrapper $1 2>/dev/null \
3293 || complete -o default -o nospace -F $wrapper $1
3296 # wrapper for backwards compatibility
3299 __git_wrap__git_main
3302 # wrapper for backwards compatibility
3305 __git_wrap__gitk_main
3308 __git_complete git __git_main
3309 __git_complete gitk __gitk_main
3311 # The following are necessary only for Cygwin, and only are needed
3312 # when the user has tab-completed the executable name and consequently
3313 # included the '.exe' suffix.
3315 if [ Cygwin = "$(uname -o 2>/dev/null)" ]; then
3316 __git_complete git.exe __git_main