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 case "$COMP_WORDBREAKS" in
34 *) COMP_WORDBREAKS="$COMP_WORDBREAKS:"
37 # __gitdir accepts 0 or 1 arguments (i.e., location)
38 # returns location of .git repo
41 if [ -z "${1-}" ]; then
42 if [ -n "${__git_dir-}" ]; then
44 elif [ -n "${GIT_DIR-}" ]; then
45 test -d "${GIT_DIR-}" || return 1
47 elif [ -d .git ]; then
50 git rev-parse --git-dir 2>/dev/null
52 elif [ -d "$1/.git" ]; then
59 # The following function is based on code from:
61 # bash_completion - programmable completion functions for bash 3.2+
63 # Copyright © 2006-2008, Ian Macdonald <ian@caliban.org>
64 # © 2009-2010, Bash Completion Maintainers
65 # <bash-completion-devel@lists.alioth.debian.org>
67 # This program is free software; you can redistribute it and/or modify
68 # it under the terms of the GNU General Public License as published by
69 # the Free Software Foundation; either version 2, or (at your option)
72 # This program is distributed in the hope that it will be useful,
73 # but WITHOUT ANY WARRANTY; without even the implied warranty of
74 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
75 # GNU General Public License for more details.
77 # You should have received a copy of the GNU General Public License
78 # along with this program; if not, write to the Free Software Foundation,
79 # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
81 # The latest version of this software can be obtained here:
83 # http://bash-completion.alioth.debian.org/
87 # This function can be used to access a tokenized list of words
88 # on the command line:
90 # __git_reassemble_comp_words_by_ref '=:'
91 # if test "${words_[cword_-1]}" = -w
96 # The argument should be a collection of characters from the list of
97 # word completion separators (COMP_WORDBREAKS) to treat as ordinary
100 # This is roughly equivalent to going back in time and setting
101 # COMP_WORDBREAKS to exclude those characters. The intent is to
102 # make option types like --date=<type> and <rev>:<path> easy to
103 # recognize by treating each shell word as a single token.
105 # It is best not to set COMP_WORDBREAKS directly because the value is
106 # shared with other completion scripts. By the time the completion
107 # function gets called, COMP_WORDS has already been populated so local
108 # changes to COMP_WORDBREAKS have no effect.
110 # Output: words_, cword_, cur_.
112 __git_reassemble_comp_words_by_ref()
114 local exclude i j first
115 # Which word separators to exclude?
116 exclude="${1//[^$COMP_WORDBREAKS]}"
118 if [ -z "$exclude" ]; then
119 words_=("${COMP_WORDS[@]}")
122 # List of word completion separators has shrunk;
123 # re-assemble words to complete.
124 for ((i=0, j=0; i < ${#COMP_WORDS[@]}; i++, j++)); do
125 # Append each nonempty word consisting of just
126 # word separator characters to the current word.
130 [ -n "${COMP_WORDS[$i]}" ] &&
131 # word consists of excluded word separators
132 [ "${COMP_WORDS[$i]//[^$exclude]}" = "${COMP_WORDS[$i]}" ]
134 # Attach to the previous token,
135 # unless the previous token is the command name.
136 if [ $j -ge 2 ] && [ -n "$first" ]; then
140 words_[$j]=${words_[j]}${COMP_WORDS[i]}
141 if [ $i = $COMP_CWORD ]; then
144 if (($i < ${#COMP_WORDS[@]} - 1)); then
151 words_[$j]=${words_[j]}${COMP_WORDS[i]}
152 if [ $i = $COMP_CWORD ]; then
158 if ! type _get_comp_words_by_ref >/dev/null 2>&1; then
159 _get_comp_words_by_ref ()
161 local exclude cur_ words_ cword_
162 if [ "$1" = "-n" ]; then
166 __git_reassemble_comp_words_by_ref "$exclude"
167 cur_=${words_[cword_]}
168 while [ $# -gt 0 ]; do
174 prev=${words_[$cword_-1]}
177 words=("${words_[@]}")
190 local x i=${#COMPREPLY[@]}
192 if [[ "$x" == "$3"* ]]; then
193 COMPREPLY[i++]="$2$x$4"
204 # Generates completion reply, appending a space to possible completion words,
206 # It accepts 1 to 4 arguments:
207 # 1: List of possible completion words.
208 # 2: A prefix to be added to each possible completion word (optional).
209 # 3: Generate possible completion matches for this word (optional).
210 # 4: A suffix to be appended to each possible completion word (optional).
213 local cur_="${3-$cur}"
219 local c i=0 IFS=$' \t\n'
222 if [[ $c == "$cur_"* ]]; then
227 COMPREPLY[i++]="${2-}$c"
234 # Variation of __gitcomp_nl () that appends to the existing list of
235 # completion candidates, COMPREPLY.
236 __gitcomp_nl_append ()
239 __gitcompappend "$1" "${2-}" "${3-$cur}" "${4- }"
242 # Generates completion reply from newline-separated possible completion words
243 # by appending a space to all of them.
244 # It accepts 1 to 4 arguments:
245 # 1: List of possible completion words, separated by a single newline.
246 # 2: A prefix to be added to each possible completion word (optional).
247 # 3: Generate possible completion matches for this word (optional).
248 # 4: A suffix to be appended to each possible completion word instead of
249 # the default space (optional). If specified but empty, nothing is
254 __gitcomp_nl_append "$@"
257 # Generates completion reply with compgen from newline-separated possible
258 # completion filenames.
259 # It accepts 1 to 3 arguments:
260 # 1: List of possible completion filenames, separated by a single newline.
261 # 2: A directory prefix to be added to each possible completion filename
263 # 3: Generate possible completion matches for this word (optional).
268 # XXX does not work when the directory prefix contains a tilde,
269 # since tilde expansion is not applied.
270 # This means that COMPREPLY will be empty and Bash default
271 # completion will be used.
272 __gitcompadd "$1" "${2-}" "${3-$cur}" ""
274 # use a hack to enable file mode in bash < 4
275 compopt -o filenames +o nospace 2>/dev/null ||
276 compgen -f /non-existing-dir/ > /dev/null
279 # Execute 'git ls-files', unless the --committable option is specified, in
280 # which case it runs 'git diff-index' to find out the files that can be
281 # committed. It return paths relative to the directory specified in the first
282 # argument, and using the options specified in the second argument.
283 __git_ls_files_helper ()
285 if [ "$2" == "--committable" ]; then
286 git -C "$1" diff-index --name-only --relative HEAD
288 # NOTE: $2 is not quoted in order to support multiple options
289 git -C "$1" ls-files --exclude-standard $2
294 # __git_index_files accepts 1 or 2 arguments:
295 # 1: Options to pass to ls-files (required).
296 # 2: A directory path (optional).
297 # If provided, only files within the specified directory are listed.
298 # Sub directories are never recursed. Path must have a trailing
302 local dir="$(__gitdir)" root="${2-.}" file
304 if [ -d "$dir" ]; then
305 __git_ls_files_helper "$root" "$1" |
306 while read -r file; do
308 ?*/*) echo "${file%%/*}" ;;
317 local dir="$(__gitdir)"
318 if [ -d "$dir" ]; then
319 git --git-dir="$dir" for-each-ref --format='%(refname:short)' \
327 local dir="$(__gitdir)"
328 if [ -d "$dir" ]; then
329 git --git-dir="$dir" for-each-ref --format='%(refname:short)' \
335 # __git_refs accepts 0, 1 (to pass to __gitdir), or 2 arguments
336 # presence of 2nd argument means use the guess heuristic employed
337 # by checkout for tracking branches
340 local i hash dir="$(__gitdir "${1-}")" track="${2-}"
341 local format refs pfx
342 if [ -d "$dir" ]; then
350 [[ "$cur" == ^* ]] && pfx="^"
351 for i in HEAD FETCH_HEAD ORIG_HEAD MERGE_HEAD; do
352 if [ -e "$dir/$i" ]; then echo $pfx$i; fi
354 format="refname:short"
355 refs="refs/tags refs/heads refs/remotes"
358 git --git-dir="$dir" for-each-ref --format="$pfx%($format)" \
360 if [ -n "$track" ]; then
361 # employ the heuristic used by git checkout
362 # Try to find a remote branch that matches the completion word
363 # but only output if the branch name is unique
365 git --git-dir="$dir" for-each-ref --shell --format="ref=%(refname:short)" \
367 while read -r entry; do
370 if [[ "$ref" == "$cur"* ]]; then
373 done | sort | uniq -u
379 git ls-remote "$dir" "$cur*" 2>/dev/null | \
380 while read -r hash i; do
389 git for-each-ref --format="%(refname:short)" -- \
390 "refs/remotes/$dir/" 2>/dev/null | sed -e "s#^$dir/##"
395 # __git_refs2 requires 1 argument (to pass to __git_refs)
399 for i in $(__git_refs "$1"); do
404 # __git_refs_remotes requires 1 argument (to pass to ls-remote)
405 __git_refs_remotes ()
408 git ls-remote "$1" 'refs/heads/*' 2>/dev/null | \
409 while read -r hash i; do
410 echo "$i:refs/remotes/$1/${i#refs/heads/}"
416 local d="$(__gitdir)"
417 test -d "$d/remotes" && ls -1 "$d/remotes"
418 git --git-dir="$d" remote
421 __git_list_merge_strategies ()
423 git merge -s help 2>&1 |
424 sed -n -e '/[Aa]vailable strategies are: /,/^$/{
433 __git_merge_strategies=
434 # 'git merge -s help' (and thus detection of the merge strategy
435 # list) fails, unfortunately, if run outside of any git working
436 # tree. __git_merge_strategies is set to the empty string in
437 # that case, and the detection will be repeated the next time it
439 __git_compute_merge_strategies ()
441 test -n "$__git_merge_strategies" ||
442 __git_merge_strategies=$(__git_list_merge_strategies)
445 __git_complete_revlist_file ()
447 local pfx ls ref cur_="$cur"
467 case "$COMP_WORDBREAKS" in
469 *) pfx="$ref:$pfx" ;;
472 __gitcomp_nl "$(git --git-dir="$(__gitdir)" ls-tree "$ls" 2>/dev/null \
473 | sed '/^100... blob /{
489 pfx="${cur_%...*}..."
491 __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_"
496 __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_"
499 __gitcomp_nl "$(__git_refs)"
505 # __git_complete_index_file requires 1 argument:
506 # 1: the options to pass to ls-file
508 # The exception is --committable, which finds the files appropriate commit.
509 __git_complete_index_file ()
511 local pfx="" cur_="$cur"
521 __gitcomp_file "$(__git_index_files "$1" ${pfx:+"$pfx"})" "$pfx" "$cur_"
524 __git_complete_file ()
526 __git_complete_revlist_file
529 __git_complete_revlist ()
531 __git_complete_revlist_file
534 __git_complete_remote_or_refspec ()
536 local cur_="$cur" cmd="${words[1]}"
537 local i c=2 remote="" pfx="" lhs=1 no_complete_refspec=0
538 if [ "$cmd" = "remote" ]; then
541 while [ $c -lt $cword ]; do
544 --mirror) [ "$cmd" = "push" ] && no_complete_refspec=1 ;;
547 push) no_complete_refspec=1 ;;
555 *) remote="$i"; break ;;
559 if [ -z "$remote" ]; then
560 __gitcomp_nl "$(__git_remotes)"
563 if [ $no_complete_refspec = 1 ]; then
566 [ "$remote" = "." ] && remote=
569 case "$COMP_WORDBREAKS" in
571 *) pfx="${cur_%%:*}:" ;;
583 if [ $lhs = 1 ]; then
584 __gitcomp_nl "$(__git_refs2 "$remote")" "$pfx" "$cur_"
586 __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_"
590 if [ $lhs = 1 ]; then
591 __gitcomp_nl "$(__git_refs "$remote")" "$pfx" "$cur_"
593 __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_"
597 if [ $lhs = 1 ]; then
598 __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_"
600 __gitcomp_nl "$(__git_refs "$remote")" "$pfx" "$cur_"
606 __git_complete_strategy ()
608 __git_compute_merge_strategies
611 __gitcomp "$__git_merge_strategies"
616 __gitcomp "$__git_merge_strategies" "" "${cur##--strategy=}"
624 if test -n "${GIT_TESTING_COMMAND_COMPLETION:-}"
626 printf "%s" "${GIT_TESTING_COMMAND_COMPLETION}"
628 git help -a|egrep '^ [a-zA-Z0-9]'
632 __git_list_all_commands ()
635 for i in $(__git_commands)
638 *--*) : helper pattern;;
645 __git_compute_all_commands ()
647 test -n "$__git_all_commands" ||
648 __git_all_commands=$(__git_list_all_commands)
651 __git_list_porcelain_commands ()
654 __git_compute_all_commands
655 for i in $__git_all_commands
658 *--*) : helper pattern;;
659 applymbox) : ask gittus;;
660 applypatch) : ask gittus;;
661 archimport) : import;;
662 cat-file) : plumbing;;
663 check-attr) : plumbing;;
664 check-ignore) : plumbing;;
665 check-mailmap) : plumbing;;
666 check-ref-format) : plumbing;;
667 checkout-index) : plumbing;;
668 column) : internal helper;;
669 commit-tree) : plumbing;;
670 count-objects) : infrequent;;
671 credential) : credentials;;
672 credential-*) : credentials helper;;
673 cvsexportcommit) : export;;
674 cvsimport) : import;;
675 cvsserver) : daemon;;
677 diff-files) : plumbing;;
678 diff-index) : plumbing;;
679 diff-tree) : plumbing;;
680 fast-import) : import;;
681 fast-export) : export;;
682 fsck-objects) : plumbing;;
683 fetch-pack) : plumbing;;
684 fmt-merge-msg) : plumbing;;
685 for-each-ref) : plumbing;;
686 hash-object) : plumbing;;
687 http-*) : transport;;
688 index-pack) : plumbing;;
689 init-db) : deprecated;;
690 local-fetch) : plumbing;;
691 ls-files) : plumbing;;
692 ls-remote) : plumbing;;
693 ls-tree) : plumbing;;
694 mailinfo) : plumbing;;
695 mailsplit) : plumbing;;
696 merge-*) : plumbing;;
699 pack-objects) : plumbing;;
700 pack-redundant) : plumbing;;
701 pack-refs) : plumbing;;
702 parse-remote) : plumbing;;
703 patch-id) : plumbing;;
705 prune-packed) : plumbing;;
706 quiltimport) : import;;
707 read-tree) : plumbing;;
708 receive-pack) : plumbing;;
709 remote-*) : transport;;
711 rev-list) : plumbing;;
712 rev-parse) : plumbing;;
713 runstatus) : plumbing;;
714 sh-setup) : internal;;
716 show-ref) : plumbing;;
717 send-pack) : plumbing;;
718 show-index) : plumbing;;
720 stripspace) : plumbing;;
721 symbolic-ref) : plumbing;;
722 unpack-file) : plumbing;;
723 unpack-objects) : plumbing;;
724 update-index) : plumbing;;
725 update-ref) : plumbing;;
726 update-server-info) : daemon;;
727 upload-archive) : plumbing;;
728 upload-pack) : plumbing;;
729 write-tree) : plumbing;;
731 verify-pack) : infrequent;;
732 verify-tag) : plumbing;;
738 __git_porcelain_commands=
739 __git_compute_porcelain_commands ()
741 test -n "$__git_porcelain_commands" ||
742 __git_porcelain_commands=$(__git_list_porcelain_commands)
745 # Lists all set config variables starting with the given section prefix,
746 # with the prefix removed.
747 __git_get_config_variables ()
749 local section="$1" i IFS=$'\n'
750 for i in $(git --git-dir="$(__gitdir)" config --name-only --get-regexp "^$section\..*" 2>/dev/null); do
751 echo "${i#$section.}"
755 __git_pretty_aliases ()
757 __git_get_config_variables "pretty"
762 __git_get_config_variables "alias"
765 # __git_aliased_command requires 1 argument
766 __git_aliased_command ()
768 local word cmdline=$(git --git-dir="$(__gitdir)" \
769 config --get "alias.$1")
770 for word in $cmdline; do
776 \!*) : shell command alias ;;
778 *=*) : setting env ;;
780 \(\)) : skip parens of shell function definition ;;
781 {) : skip start of shell helper function ;;
782 :) : skip null command ;;
783 \'*) : skip opening quote after sh -c ;;
791 # __git_find_on_cmdline requires 1 argument
792 __git_find_on_cmdline ()
794 local word subcommand c=1
795 while [ $c -lt $cword ]; do
797 for subcommand in $1; do
798 if [ "$subcommand" = "$word" ]; then
807 # Echo the value of an option set on the command line or config
809 # $1: short option name
810 # $2: long option name including =
811 # $3: list of possible values
812 # $4: config string (optional)
815 # result="$(__git_get_option_value "-d" "--do-something=" \
816 # "yes no" "core.doSomething")"
818 # result is then either empty (no option set) or "yes" or "no"
820 # __git_get_option_value requires 3 arguments
821 __git_get_option_value ()
823 local c short_opt long_opt val
824 local result= values config_key word
832 while [ $c -ge 0 ]; do
834 for val in $values; do
835 if [ "$short_opt$val" = "$word" ] ||
836 [ "$long_opt$val" = "$word" ]; then
844 if [ -n "$config_key" ] && [ -z "$result" ]; then
845 result="$(git --git-dir="$(__gitdir)" config "$config_key")"
851 __git_has_doubledash ()
854 while [ $c -lt $cword ]; do
855 if [ "--" = "${words[c]}" ]; then
863 # Try to count non option arguments passed on the command line for the
864 # specified git command.
865 # When options are used, it is necessary to use the special -- option to
866 # tell the implementation were non option arguments begin.
867 # XXX this can not be improved, since options can appear everywhere, as
871 # __git_count_arguments requires 1 argument: the git command executed.
872 __git_count_arguments ()
876 # Skip "git" (first argument)
877 for ((i=1; i < ${#words[@]}; i++)); do
882 # Good; we can assume that the following are only non
887 # Skip the specified git command and discard git
900 __git_whitespacelist="nowarn warn error error-all fix"
904 local dir="$(__gitdir)"
905 if [ -d "$dir"/rebase-apply ]; then
906 __gitcomp "--skip --continue --resolved --abort"
911 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
916 --3way --committer-date-is-author-date --ignore-date
917 --ignore-whitespace --ignore-space-change
918 --interactive --keep --no-utf8 --signoff --utf8
919 --whitespace= --scissors
929 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
934 --stat --numstat --summary --check --index
935 --cached --index-info --reverse --reject --unidiff-zero
936 --apply --no-add --exclude=
937 --ignore-whitespace --ignore-space-change
938 --whitespace= --inaccurate-eof --verbose
939 --recount --directory=
950 --interactive --refresh --patch --update --dry-run
951 --ignore-errors --intent-to-add --force --edit --chmod=
956 local complete_opt="--others --modified --directory --no-empty-directory"
957 if test -n "$(__git_find_on_cmdline "-u --update")"
959 complete_opt="--modified"
961 __git_complete_index_file "$complete_opt"
968 __gitcomp "$(git archive --list)" "" "${cur##--format=}"
972 __gitcomp_nl "$(__git_remotes)" "" "${cur##--remote=}"
977 --format= --list --verbose
978 --prefix= --remote= --exec= --output
988 __git_has_doubledash && return
990 local subcommands="start bad good skip reset visualize replay log run"
991 local subcommand="$(__git_find_on_cmdline "$subcommands")"
992 if [ -z "$subcommand" ]; then
993 if [ -f "$(__gitdir)"/BISECT_START ]; then
994 __gitcomp "$subcommands"
996 __gitcomp "replay start"
1001 case "$subcommand" in
1002 bad|good|reset|skip|start)
1003 __gitcomp_nl "$(__git_refs)"
1012 local i c=1 only_local_ref="n" has_r="n"
1014 while [ $c -lt $cword ]; do
1017 -d|--delete|-m|--move) only_local_ref="y" ;;
1018 -r|--remotes) has_r="y" ;;
1024 --set-upstream-to=*)
1025 __gitcomp_nl "$(__git_refs)" "" "${cur##--set-upstream-to=}"
1029 --color --no-color --verbose --abbrev= --no-abbrev
1030 --track --no-track --contains --merged --no-merged
1031 --set-upstream-to= --edit-description --list
1032 --unset-upstream --delete --move --remotes
1033 --column --no-column --sort= --points-at
1037 if [ $only_local_ref = "y" -a $has_r = "n" ]; then
1038 __gitcomp_nl "$(__git_heads)"
1040 __gitcomp_nl "$(__git_refs)"
1048 local cmd="${words[2]}"
1051 __gitcomp "create list-heads verify unbundle"
1054 # looking for a file
1059 __git_complete_revlist
1068 __git_has_doubledash && return
1072 __gitcomp "diff3 merge" "" "${cur##--conflict=}"
1076 --quiet --ours --theirs --track --no-track --merge
1077 --conflict= --orphan --patch
1081 # check if --track, --no-track, or --no-guess was specified
1082 # if so, disable DWIM mode
1083 local flags="--track --no-track --no-guess" track=1
1084 if [ -n "$(__git_find_on_cmdline "$flags")" ]; then
1087 __gitcomp_nl "$(__git_refs '' $track)"
1094 __gitcomp_nl "$(__git_refs)"
1099 local dir="$(__gitdir)"
1100 if [ -f "$dir"/CHERRY_PICK_HEAD ]; then
1101 __gitcomp "--continue --quit --abort"
1106 __gitcomp "--edit --no-commit --signoff --strategy= --mainline"
1109 __gitcomp_nl "$(__git_refs)"
1118 __gitcomp "--dry-run --quiet"
1123 # XXX should we check for -x option ?
1124 __git_complete_index_file "--others --directory"
1146 --recurse-submodules
1148 --shallow-submodules
1155 __git_untracked_file_modes="all no normal"
1161 __gitcomp_nl "$(__git_refs)" "" "${cur}"
1168 __gitcomp "default scissors strip verbatim whitespace
1169 " "" "${cur##--cleanup=}"
1172 --reuse-message=*|--reedit-message=*|\
1173 --fixup=*|--squash=*)
1174 __gitcomp_nl "$(__git_refs)" "" "${cur#*=}"
1177 --untracked-files=*)
1178 __gitcomp "$__git_untracked_file_modes" "" "${cur##--untracked-files=}"
1183 --all --author= --signoff --verify --no-verify
1185 --amend --include --only --interactive
1186 --dry-run --reuse-message= --reedit-message=
1187 --reset-author --file= --message= --template=
1188 --cleanup= --untracked-files --untracked-files=
1189 --verbose --quiet --fixup= --squash=
1190 --patch --short --date --allow-empty
1195 if git rev-parse --verify --quiet HEAD >/dev/null; then
1196 __git_complete_index_file "--committable"
1198 # This is the first commit
1199 __git_complete_index_file "--cached"
1208 --all --tags --contains --abbrev= --candidates=
1209 --exact-match --debug --long --match --always --first-parent
1214 __gitcomp_nl "$(__git_refs)"
1217 __git_diff_algorithms="myers minimal patience histogram"
1219 __git_diff_submodule_formats="diff log short"
1221 __git_diff_common_options="--stat --numstat --shortstat --summary
1222 --patch-with-stat --name-only --name-status --color
1223 --no-color --color-words --no-renames --check
1224 --full-index --binary --abbrev --diff-filter=
1225 --find-copies-harder
1226 --text --ignore-space-at-eol --ignore-space-change
1227 --ignore-all-space --ignore-blank-lines --exit-code
1228 --quiet --ext-diff --no-ext-diff
1229 --no-prefix --src-prefix= --dst-prefix=
1230 --inter-hunk-context=
1231 --patience --histogram --minimal
1232 --raw --word-diff --word-diff-regex=
1233 --dirstat --dirstat= --dirstat-by-file
1234 --dirstat-by-file= --cumulative
1236 --submodule --submodule=
1241 __git_has_doubledash && return
1245 __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}"
1249 __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}"
1253 __gitcomp "--cached --staged --pickaxe-all --pickaxe-regex
1254 --base --ours --theirs --no-index
1255 $__git_diff_common_options
1260 __git_complete_revlist_file
1263 __git_mergetools_common="diffuse diffmerge ecmerge emerge kdiff3 meld opendiff
1264 tkdiff vimdiff gvimdiff xxdiff araxis p4merge bc codecompare
1269 __git_has_doubledash && return
1273 __gitcomp "$__git_mergetools_common kompare" "" "${cur##--tool=}"
1277 __gitcomp "--cached --staged --pickaxe-all --pickaxe-regex
1278 --base --ours --theirs
1279 --no-renames --diff-filter= --find-copies-harder
1280 --relative --ignore-submodules
1285 __git_complete_revlist_file
1288 __git_fetch_recurse_submodules="yes on-demand no"
1290 __git_fetch_options="
1291 --quiet --verbose --append --upload-pack --force --keep --depth=
1292 --tags --no-tags --all --prune --dry-run --recurse-submodules=
1293 --unshallow --update-shallow
1299 --recurse-submodules=*)
1300 __gitcomp "$__git_fetch_recurse_submodules" "" "${cur##--recurse-submodules=}"
1304 __gitcomp "$__git_fetch_options"
1308 __git_complete_remote_or_refspec
1311 __git_format_patch_options="
1312 --stdout --attach --no-attach --thread --thread= --no-thread
1313 --numbered --start-number --numbered-files --keep-subject --signoff
1314 --signature --no-signature --in-reply-to= --cc= --full-index --binary
1315 --not --all --cover-letter --no-prefix --src-prefix= --dst-prefix=
1316 --inline --suffix= --ignore-if-in-upstream --subject-prefix=
1317 --output-directory --reroll-count --to= --quiet --notes
1320 _git_format_patch ()
1326 " "" "${cur##--thread=}"
1330 __gitcomp "$__git_format_patch_options"
1334 __git_complete_revlist
1342 --tags --root --unreachable --cache --no-reflogs --full
1343 --strict --verbose --lost-found --name-objects
1354 __gitcomp "--prune --aggressive"
1365 __git_match_ctag() {
1366 awk "/^${1//\//\\/}/ { print \$1 }" "$2"
1371 __git_has_doubledash && return
1377 --text --ignore-case --word-regexp --invert-match
1378 --full-name --line-number
1379 --extended-regexp --basic-regexp --fixed-strings
1382 --files-with-matches --name-only
1383 --files-without-match
1386 --and --or --not --all-match
1387 --break --heading --show-function --function-context
1388 --untracked --no-index
1394 case "$cword,$prev" in
1396 if test -r tags; then
1397 __gitcomp_nl "$(__git_match_ctag "$cur" tags)"
1403 __gitcomp_nl "$(__git_refs)"
1410 __gitcomp "--all --guides --info --man --web"
1414 __git_compute_all_commands
1415 __gitcomp "$__git_all_commands $(__git_aliases)
1416 attributes cli core-tutorial cvs-migration
1417 diffcore everyday gitk glossary hooks ignore modules
1418 namespaces repository-layout revisions tutorial tutorial-2
1428 false true umask group all world everybody
1429 " "" "${cur##--shared=}"
1433 __gitcomp "--quiet --bare --template= --shared --shared="
1443 __gitcomp "--cached --deleted --modified --others --ignored
1444 --stage --directory --no-empty-directory --unmerged
1445 --killed --exclude= --exclude-from=
1446 --exclude-per-directory= --exclude-standard
1447 --error-unmatch --with-tree= --full-name
1448 --abbrev --ignored --exclude-per-directory
1454 # XXX ignore options like --modified and always suggest all cached
1456 __git_complete_index_file "--cached"
1463 __gitcomp "--heads --tags --refs --get-url --symref"
1467 __gitcomp_nl "$(__git_remotes)"
1475 # Options that go well for log, shortlog and gitk
1476 __git_log_common_options="
1478 --branches --tags --remotes
1479 --first-parent --merges --no-merges
1481 --max-age= --since= --after=
1482 --min-age= --until= --before=
1483 --min-parents= --max-parents=
1484 --no-min-parents --no-max-parents
1486 # Options that go well for log and gitk (not shortlog)
1487 __git_log_gitk_options="
1488 --dense --sparse --full-history
1489 --simplify-merges --simplify-by-decoration
1490 --left-right --notes --no-notes
1492 # Options that go well for log and shortlog (not gitk)
1493 __git_log_shortlog_options="
1494 --author= --committer= --grep=
1495 --all-match --invert-grep
1498 __git_log_pretty_formats="oneline short medium full fuller email raw format:"
1499 __git_log_date_formats="relative iso8601 rfc2822 short local default raw"
1503 __git_has_doubledash && return
1505 local g="$(git rev-parse --git-dir 2>/dev/null)"
1507 if [ -f "$g/MERGE_HEAD" ]; then
1511 --pretty=*|--format=*)
1512 __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
1517 __gitcomp "$__git_log_date_formats" "" "${cur##--date=}"
1521 __gitcomp "full short no" "" "${cur##--decorate=}"
1525 __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}"
1529 __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}"
1534 $__git_log_common_options
1535 $__git_log_shortlog_options
1536 $__git_log_gitk_options
1537 --root --topo-order --date-order --reverse
1538 --follow --full-diff
1539 --abbrev-commit --abbrev=
1540 --relative-date --date=
1541 --pretty= --format= --oneline
1546 --decorate --decorate=
1548 --parents --children
1550 $__git_diff_common_options
1551 --pickaxe-all --pickaxe-regex
1556 __git_complete_revlist
1559 # Common merge options shared by git-merge(1) and git-pull(1).
1560 __git_merge_options="
1561 --no-commit --no-stat --log --no-log --squash --strategy
1562 --commit --stat --no-squash --ff --no-ff --ff-only --edit --no-edit
1563 --verify-signatures --no-verify-signatures --gpg-sign
1564 --quiet --verbose --progress --no-progress
1569 __git_complete_strategy && return
1573 __gitcomp "$__git_merge_options
1574 --rerere-autoupdate --no-rerere-autoupdate --abort --continue"
1577 __gitcomp_nl "$(__git_refs)"
1584 __gitcomp "$__git_mergetools_common tortoisemerge" "" "${cur##--tool=}"
1588 __gitcomp "--tool= --prompt --no-prompt"
1598 __gitcomp "--octopus --independent --is-ancestor --fork-point"
1602 __gitcomp_nl "$(__git_refs)"
1609 __gitcomp "--dry-run"
1614 if [ $(__git_count_arguments "mv") -gt 0 ]; then
1615 # We need to show both cached and untracked files (including
1616 # empty directories) since this may not be the last argument.
1617 __git_complete_index_file "--cached --others --directory"
1619 __git_complete_index_file "--cached"
1625 __gitcomp "--tags --all --stdin"
1630 local subcommands='add append copy edit list prune remove show'
1631 local subcommand="$(__git_find_on_cmdline "$subcommands")"
1633 case "$subcommand,$cur" in
1640 __gitcomp_nl "$(__git_refs)"
1643 __gitcomp "$subcommands --ref"
1647 add,--reuse-message=*|append,--reuse-message=*|\
1648 add,--reedit-message=*|append,--reedit-message=*)
1649 __gitcomp_nl "$(__git_refs)" "" "${cur#*=}"
1652 __gitcomp '--file= --message= --reedit-message=
1659 __gitcomp '--dry-run --verbose'
1668 __gitcomp_nl "$(__git_refs)"
1677 __git_complete_strategy && return
1680 --recurse-submodules=*)
1681 __gitcomp "$__git_fetch_recurse_submodules" "" "${cur##--recurse-submodules=}"
1686 --rebase --no-rebase
1687 $__git_merge_options
1688 $__git_fetch_options
1693 __git_complete_remote_or_refspec
1696 __git_push_recurse_submodules="check on-demand only"
1698 __git_complete_force_with_lease ()
1706 __gitcomp_nl "$(__git_refs)" "" "${cur_#*:}"
1709 __gitcomp_nl "$(__git_refs)" "" "$cur_"
1718 __gitcomp_nl "$(__git_remotes)"
1721 --recurse-submodules)
1722 __gitcomp "$__git_push_recurse_submodules"
1728 __gitcomp_nl "$(__git_remotes)" "" "${cur##--repo=}"
1731 --recurse-submodules=*)
1732 __gitcomp "$__git_push_recurse_submodules" "" "${cur##--recurse-submodules=}"
1735 --force-with-lease=*)
1736 __git_complete_force_with_lease "${cur##--force-with-lease=}"
1741 --all --mirror --tags --dry-run --force --verbose
1742 --quiet --prune --delete --follow-tags
1743 --receive-pack= --repo= --set-upstream
1744 --force-with-lease --force-with-lease= --recurse-submodules=
1749 __git_complete_remote_or_refspec
1754 local dir="$(__gitdir)"
1755 if [ -f "$dir"/rebase-merge/interactive ]; then
1756 __gitcomp "--continue --skip --abort --quit --edit-todo"
1758 elif [ -d "$dir"/rebase-apply ] || [ -d "$dir"/rebase-merge ]; then
1759 __gitcomp "--continue --skip --abort --quit"
1762 __git_complete_strategy && return
1765 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
1770 --onto --merge --strategy --interactive
1771 --preserve-merges --stat --no-stat
1772 --committer-date-is-author-date --ignore-date
1773 --ignore-whitespace --whitespace=
1774 --autosquash --no-autosquash
1775 --fork-point --no-fork-point
1776 --autostash --no-autostash
1777 --verify --no-verify
1778 --keep-empty --root --force-rebase --no-ff
1784 __gitcomp_nl "$(__git_refs)"
1789 local subcommands="show delete expire"
1790 local subcommand="$(__git_find_on_cmdline "$subcommands")"
1792 if [ -z "$subcommand" ]; then
1793 __gitcomp "$subcommands"
1795 __gitcomp_nl "$(__git_refs)"
1799 __git_send_email_confirm_options="always never auto cc compose"
1800 __git_send_email_suppresscc_options="author self cc bodycc sob cccmd body all"
1805 --to|--cc|--bcc|--from)
1807 $(git --git-dir="$(__gitdir)" send-email --dump-aliases 2>/dev/null)
1816 $__git_send_email_confirm_options
1817 " "" "${cur##--confirm=}"
1822 $__git_send_email_suppresscc_options
1823 " "" "${cur##--suppress-cc=}"
1827 --smtp-encryption=*)
1828 __gitcomp "ssl tls" "" "${cur##--smtp-encryption=}"
1834 " "" "${cur##--thread=}"
1837 --to=*|--cc=*|--bcc=*|--from=*)
1839 $(git --git-dir="$(__gitdir)" send-email --dump-aliases 2>/dev/null)
1844 __gitcomp "--annotate --bcc --cc --cc-cmd --chain-reply-to
1845 --compose --confirm= --dry-run --envelope-sender
1847 --in-reply-to --no-chain-reply-to --no-signed-off-by-cc
1848 --no-suppress-from --no-thread --quiet
1849 --signed-off-by-cc --smtp-pass --smtp-server
1850 --smtp-server-port --smtp-encryption= --smtp-user
1851 --subject --suppress-cc= --suppress-from --thread --to
1852 --validate --no-validate
1853 $__git_format_patch_options"
1857 __git_complete_revlist
1868 local untracked_state
1871 --ignore-submodules=*)
1872 __gitcomp "none untracked dirty all" "" "${cur##--ignore-submodules=}"
1875 --untracked-files=*)
1876 __gitcomp "$__git_untracked_file_modes" "" "${cur##--untracked-files=}"
1881 always never auto column row plain dense nodense
1882 " "" "${cur##--column=}"
1887 --short --branch --porcelain --long --verbose
1888 --untracked-files= --ignore-submodules= --ignored
1889 --column= --no-column
1895 untracked_state="$(__git_get_option_value "-u" "--untracked-files=" \
1896 "$__git_untracked_file_modes" "status.showUntrackedFiles")"
1898 case "$untracked_state" in
1900 # --ignored option does not matter
1904 complete_opt="--cached --directory --no-empty-directory --others"
1906 if [ -n "$(__git_find_on_cmdline "--ignored")" ]; then
1907 complete_opt="$complete_opt --ignored --exclude=*"
1912 __git_complete_index_file "$complete_opt"
1915 __git_config_get_set_variables ()
1917 local prevword word config_file= c=$cword
1918 while [ $c -gt 1 ]; do
1921 --system|--global|--local|--file=*)
1926 config_file="$word $prevword"
1934 git --git-dir="$(__gitdir)" config $config_file --name-only --list 2>/dev/null
1940 branch.*.remote|branch.*.pushremote)
1941 __gitcomp_nl "$(__git_remotes)"
1945 __gitcomp_nl "$(__git_refs)"
1949 __gitcomp "false true preserve interactive"
1953 __gitcomp_nl "$(__git_remotes)"
1957 local remote="${prev#remote.}"
1958 remote="${remote%.fetch}"
1959 if [ -z "$cur" ]; then
1960 __gitcomp_nl "refs/heads/" "" "" ""
1963 __gitcomp_nl "$(__git_refs_remotes "$remote")"
1967 local remote="${prev#remote.}"
1968 remote="${remote%.push}"
1969 __gitcomp_nl "$(git --git-dir="$(__gitdir)" \
1970 for-each-ref --format='%(refname):%(refname)' \
1974 pull.twohead|pull.octopus)
1975 __git_compute_merge_strategies
1976 __gitcomp "$__git_merge_strategies"
1979 color.branch|color.diff|color.interactive|\
1980 color.showbranch|color.status|color.ui)
1981 __gitcomp "always never auto"
1985 __gitcomp "false true"
1990 normal black red green yellow blue magenta cyan white
1991 bold dim ul blink reverse
1996 __gitcomp "log short"
2000 __gitcomp "man info web html"
2004 __gitcomp "$__git_log_date_formats"
2007 sendemail.aliasesfiletype)
2008 __gitcomp "mutt mailrc pine elm gnus"
2012 __gitcomp "$__git_send_email_confirm_options"
2015 sendemail.suppresscc)
2016 __gitcomp "$__git_send_email_suppresscc_options"
2019 sendemail.transferencoding)
2020 __gitcomp "7bit 8bit quoted-printable base64"
2023 --get|--get-all|--unset|--unset-all)
2024 __gitcomp_nl "$(__git_config_get_set_variables)"
2034 --system --global --local --file=
2035 --list --replace-all
2036 --get --get-all --get-regexp
2037 --add --unset --unset-all
2038 --remove-section --rename-section
2044 local pfx="${cur%.*}." cur_="${cur##*.}"
2045 __gitcomp "remote pushremote merge mergeoptions rebase" "$pfx" "$cur_"
2049 local pfx="${cur%.*}." cur_="${cur#*.}"
2050 __gitcomp_nl "$(__git_heads)" "$pfx" "$cur_" "."
2051 __gitcomp_nl_append $'autosetupmerge\nautosetuprebase\n' "$pfx" "$cur_"
2055 local pfx="${cur%.*}." cur_="${cur##*.}"
2057 argprompt cmd confirm needsfile noconsole norescan
2058 prompt revprompt revunmerged title
2063 local pfx="${cur%.*}." cur_="${cur##*.}"
2064 __gitcomp "cmd path" "$pfx" "$cur_"
2068 local pfx="${cur%.*}." cur_="${cur##*.}"
2069 __gitcomp "cmd path" "$pfx" "$cur_"
2073 local pfx="${cur%.*}." cur_="${cur##*.}"
2074 __gitcomp "cmd path trustExitCode" "$pfx" "$cur_"
2078 local pfx="${cur%.*}." cur_="${cur#*.}"
2079 __git_compute_all_commands
2080 __gitcomp_nl "$__git_all_commands" "$pfx" "$cur_"
2084 local pfx="${cur%.*}." cur_="${cur##*.}"
2086 url proxy fetch push mirror skipDefaultUpdate
2087 receivepack uploadpack tagopt pushurl
2092 local pfx="${cur%.*}." cur_="${cur#*.}"
2093 __gitcomp_nl "$(__git_remotes)" "$pfx" "$cur_" "."
2094 __gitcomp_nl_append "pushdefault" "$pfx" "$cur_"
2098 local pfx="${cur%.*}." cur_="${cur##*.}"
2099 __gitcomp "insteadOf pushInsteadOf" "$pfx" "$cur_"
2105 advice.commitBeforeMerge
2107 advice.implicitIdentity
2108 advice.pushNonFastForward
2109 advice.resolveConflict
2113 apply.ignorewhitespace
2115 branch.autosetupmerge
2116 branch.autosetuprebase
2120 color.branch.current
2125 color.decorate.branch
2126 color.decorate.remoteBranch
2127 color.decorate.stash
2137 color.diff.whitespace
2142 color.grep.linenumber
2145 color.grep.separator
2147 color.interactive.error
2148 color.interactive.header
2149 color.interactive.help
2150 color.interactive.prompt
2155 color.status.changed
2157 color.status.nobranch
2158 color.status.unmerged
2159 color.status.untracked
2160 color.status.updated
2169 core.bigFileThreshold
2172 core.deltaBaseCacheLimit
2177 core.fsyncobjectfiles
2181 core.logAllRefUpdates
2182 core.loosecompression
2185 core.packedGitWindowSize
2187 core.preferSymlinkRefs
2190 core.repositoryFormatVersion
2192 core.sharedRepository
2197 core.warnAmbiguousRefs
2200 diff.autorefreshindex
2202 diff.ignoreSubmodules
2209 diff.suppressBlankEmpty
2215 fetch.recurseSubmodules
2226 format.subjectprefix
2237 gc.reflogexpireunreachable
2241 gitcvs.commitmsgannotation
2242 gitcvs.dbTableNamePrefix
2253 gui.copyblamethreshold
2257 gui.matchtrackingbranch
2258 gui.newbranchtemplate
2259 gui.pruneduringfetch
2260 gui.spellingdictionary
2277 http.sslCertPasswordProtected
2282 i18n.logOutputEncoding
2288 imap.preformattedHTML
2298 interactive.singlekey
2314 mergetool.keepBackup
2315 mergetool.keepTemporaries
2320 notes.rewrite.rebase
2324 pack.deltaCacheLimit
2341 receive.denyCurrentBranch
2342 receive.denyDeleteCurrent
2344 receive.denyNonFastForwards
2347 receive.updateserverinfo
2350 repack.usedeltabaseoffset
2354 sendemail.aliasesfile
2355 sendemail.aliasfiletype
2359 sendemail.chainreplyto
2361 sendemail.envelopesender
2365 sendemail.signedoffbycc
2366 sendemail.smtpdomain
2367 sendemail.smtpencryption
2369 sendemail.smtpserver
2370 sendemail.smtpserveroption
2371 sendemail.smtpserverport
2373 sendemail.suppresscc
2374 sendemail.suppressfrom
2379 status.relativePaths
2380 status.showUntrackedFiles
2381 status.submodulesummary
2384 transfer.unpackLimit
2397 add rename remove set-head set-branches
2398 get-url set-url show prune update
2400 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2401 if [ -z "$subcommand" ]; then
2404 __gitcomp "--verbose"
2407 __gitcomp "$subcommands"
2413 case "$subcommand,$cur" in
2415 __gitcomp "--track --master --fetch --tags --no-tags --mirror="
2420 __gitcomp "--auto --delete"
2425 set-head,*|set-branches,*)
2426 __git_complete_remote_or_refspec
2432 __gitcomp "$(__git_get_config_variables "remotes")"
2435 __gitcomp "--push --add --delete"
2438 __gitcomp "--push --all"
2441 __gitcomp "--dry-run"
2444 __gitcomp_nl "$(__git_remotes)"
2453 __gitcomp "--edit --graft --format= --list --delete"
2457 __gitcomp_nl "$(__git_refs)"
2462 local subcommands="clear forget diff remaining status gc"
2463 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2464 if test -z "$subcommand"
2466 __gitcomp "$subcommands"
2473 __git_has_doubledash && return
2477 __gitcomp "--merge --mixed --hard --soft --patch --keep"
2481 __gitcomp_nl "$(__git_refs)"
2486 local dir="$(__gitdir)"
2487 if [ -f "$dir"/REVERT_HEAD ]; then
2488 __gitcomp "--continue --quit --abort"
2494 --edit --mainline --no-edit --no-commit --signoff
2495 --strategy= --strategy-option=
2500 __gitcomp_nl "$(__git_refs)"
2507 __gitcomp "--cached --dry-run --ignore-unmatch --quiet"
2512 __git_complete_index_file "--cached"
2517 __git_has_doubledash && return
2522 $__git_log_common_options
2523 $__git_log_shortlog_options
2524 --numbered --summary --email
2529 __git_complete_revlist
2534 __git_has_doubledash && return
2537 --pretty=*|--format=*)
2538 __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
2543 __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}"
2547 __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}"
2551 __gitcomp "--pretty= --format= --abbrev-commit --oneline
2553 $__git_diff_common_options
2558 __git_complete_revlist_file
2566 --all --remotes --topo-order --date-order --current --more=
2567 --list --independent --merge-base --no-name
2569 --sha1-name --sparse --topics --reflog
2574 __git_complete_revlist
2579 local save_opts='--all --keep-index --no-keep-index --quiet --patch --include-untracked'
2580 local subcommands='save list show apply clear drop pop create branch'
2581 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2582 if [ -z "$subcommand" ]; then
2585 __gitcomp "$save_opts"
2588 if [ -z "$(__git_find_on_cmdline "$save_opts")" ]; then
2589 __gitcomp "$subcommands"
2594 case "$subcommand,$cur" in
2596 __gitcomp "$save_opts"
2599 __gitcomp "--index --quiet"
2604 show,--*|branch,--*)
2607 if [ $cword -eq 3 ]; then
2608 __gitcomp_nl "$(__git_refs)";
2610 __gitcomp_nl "$(git --git-dir="$(__gitdir)" stash list \
2611 | sed -n -e 's/:.*//p')"
2614 show,*|apply,*|drop,*|pop,*)
2615 __gitcomp_nl "$(git --git-dir="$(__gitdir)" stash list \
2616 | sed -n -e 's/:.*//p')"
2626 __git_has_doubledash && return
2628 local subcommands="add status init deinit update summary foreach sync"
2629 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2630 if [ -z "$subcommand" ]; then
2636 __gitcomp "$subcommands"
2642 case "$subcommand,$cur" in
2644 __gitcomp "--branch --force --name --reference --depth"
2647 __gitcomp "--cached --recursive"
2650 __gitcomp "--force --all"
2654 --init --remote --no-fetch
2655 --recommend-shallow --no-recommend-shallow
2656 --force --rebase --merge --reference --depth --recursive --jobs
2660 __gitcomp "--cached --files --summary-limit"
2662 foreach,--*|sync,--*)
2663 __gitcomp "--recursive"
2673 init fetch clone rebase dcommit log find-rev
2674 set-tree commit-diff info create-ignore propget
2675 proplist show-ignore show-externals branch tag blame
2676 migrate mkdirs reset gc
2678 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2679 if [ -z "$subcommand" ]; then
2680 __gitcomp "$subcommands"
2682 local remote_opts="--username= --config-dir= --no-auth-cache"
2684 --follow-parent --authors-file= --repack=
2685 --no-metadata --use-svm-props --use-svnsync-props
2686 --log-window-size= --no-checkout --quiet
2687 --repack-flags --use-log-author --localtime
2689 --ignore-paths= --include-paths= $remote_opts
2692 --template= --shared= --trunk= --tags=
2693 --branches= --stdlayout --minimize-url
2694 --no-metadata --use-svm-props --use-svnsync-props
2695 --rewrite-root= --prefix= $remote_opts
2698 --edit --rmdir --find-copies-harder --copy-similarity=
2701 case "$subcommand,$cur" in
2703 __gitcomp "--revision= --fetch-all $fc_opts"
2706 __gitcomp "--revision= $fc_opts $init_opts"
2709 __gitcomp "$init_opts"
2713 --merge --strategy= --verbose --dry-run
2714 --fetch-all --no-rebase --commit-url
2715 --revision --interactive $cmt_opts $fc_opts
2719 __gitcomp "--stdin $cmt_opts $fc_opts"
2721 create-ignore,--*|propget,--*|proplist,--*|show-ignore,--*|\
2722 show-externals,--*|mkdirs,--*)
2723 __gitcomp "--revision="
2727 --limit= --revision= --verbose --incremental
2728 --oneline --show-commit --non-recursive
2729 --authors-file= --color
2734 --merge --verbose --strategy= --local
2735 --fetch-all --dry-run $fc_opts
2739 __gitcomp "--message= --file= --revision= $cmt_opts"
2745 __gitcomp "--dry-run --message --tag"
2748 __gitcomp "--dry-run --message"
2751 __gitcomp "--git-format"
2755 --config-dir= --ignore-paths= --minimize
2756 --no-auth-cache --username=
2760 __gitcomp "--revision= --parent"
2771 while [ $c -lt $cword ]; do
2775 __gitcomp_nl "$(__git_tags)"
2790 __gitcomp_nl "$(__git_tags)"
2794 __gitcomp_nl "$(__git_refs)"
2801 --list --delete --verify --annotate --message --file
2802 --sign --cleanup --local-user --force --column --sort=
2803 --contains --points-at --merged --no-merged --create-reflog
2816 local subcommands="add list lock prune unlock"
2817 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2818 if [ -z "$subcommand" ]; then
2819 __gitcomp "$subcommands"
2821 case "$subcommand,$cur" in
2823 __gitcomp "--detach"
2826 __gitcomp "--porcelain"
2829 __gitcomp "--reason"
2832 __gitcomp "--dry-run --expire --verbose"
2842 local i c=1 command __git_dir
2844 while [ $c -lt $cword ]; do
2847 --git-dir=*) __git_dir="${i#--git-dir=}" ;;
2848 --git-dir) ((c++)) ; __git_dir="${words[c]}" ;;
2849 --bare) __git_dir="." ;;
2850 --help) command="help"; break ;;
2851 -c|--work-tree|--namespace) ((c++)) ;;
2853 *) command="$i"; break ;;
2858 if [ -z "$command" ]; then
2873 --no-replace-objects
2877 *) __git_compute_porcelain_commands
2878 __gitcomp "$__git_porcelain_commands $(__git_aliases)" ;;
2883 local completion_func="_git_${command//-/_}"
2884 declare -f $completion_func >/dev/null && $completion_func && return
2886 local expansion=$(__git_aliased_command "$command")
2887 if [ -n "$expansion" ]; then
2889 completion_func="_git_${expansion//-/_}"
2890 declare -f $completion_func >/dev/null && $completion_func
2896 __git_has_doubledash && return
2898 local g="$(__gitdir)"
2900 if [ -f "$g/MERGE_HEAD" ]; then
2906 $__git_log_common_options
2907 $__git_log_gitk_options
2913 __git_complete_revlist
2916 if [[ -n ${ZSH_VERSION-} ]]; then
2917 echo "WARNING: this script is deprecated, please see git-completion.zsh" 1>&2
2919 autoload -U +X compinit && compinit
2925 local cur_="${3-$cur}"
2931 local c IFS=$' \t\n'
2939 array[${#array[@]}+1]="$c"
2942 compadd -Q -S '' -p "${2-}" -a -- array && _ret=0
2953 compadd -Q -S "${4- }" -p "${2-}" -- ${=1} && _ret=0
2962 compadd -Q -p "${2-}" -f -- ${=1} && _ret=0
2967 local _ret=1 cur cword prev
2968 cur=${words[CURRENT]}
2969 prev=${words[CURRENT-1]}
2971 emulate ksh -c __${service}_main
2972 let _ret && _default && _ret=0
2976 compdef _git git gitk
2982 local cur words cword prev
2983 _get_comp_words_by_ref -n =: cur words cword prev
2987 # Setup completion for certain functions defined above by setting common
2988 # variables and workarounds.
2989 # This is NOT a public function; use at your own risk.
2992 local wrapper="__git_wrap${2}"
2993 eval "$wrapper () { __git_func_wrap $2 ; }"
2994 complete -o bashdefault -o default -o nospace -F $wrapper $1 2>/dev/null \
2995 || complete -o default -o nospace -F $wrapper $1
2998 # wrapper for backwards compatibility
3001 __git_wrap__git_main
3004 # wrapper for backwards compatibility
3007 __git_wrap__gitk_main
3010 __git_complete git __git_main
3011 __git_complete gitk __gitk_main
3013 # The following are necessary only for Cygwin, and only are needed
3014 # when the user has tab-completed the executable name and consequently
3015 # included the '.exe' suffix.
3017 if [ Cygwin = "$(uname -o 2>/dev/null)" ]; then
3018 __git_complete git.exe __git_main