Merge branch 'ds/completion-silence-in-tree-path-probe' into maint
[git/mingw.git] / contrib / completion / git-completion.bash
blob14dd5e7ca272350b3fa13d6fc8da3ccb46e12227
1 #!bash
3 # bash/zsh completion support for core Git.
5 # Copyright (C) 2006,2007 Shawn O. Pearce <spearce@spearce.org>
6 # Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/).
7 # Distributed under the GNU General Public License, version 2.0.
9 # The contained completion routines provide support for completing:
11 # *) local and remote branch names
12 # *) local and remote tag names
13 # *) .git/remotes file names
14 # *) git 'subcommands'
15 # *) tree paths within 'ref:path/to/file' expressions
16 # *) common --long-options
18 # To use these routines:
20 # 1) Copy this file to somewhere (e.g. ~/.git-completion.sh).
21 # 2) Add the following line to your .bashrc/.zshrc:
22 # source ~/.git-completion.sh
23 # 3) Consider changing your PS1 to also show the current branch,
24 # see git-prompt.sh for details.
26 case "$COMP_WORDBREAKS" in
27 *:*) : great ;;
28 *) COMP_WORDBREAKS="$COMP_WORDBREAKS:"
29 esac
31 # __gitdir accepts 0 or 1 arguments (i.e., location)
32 # returns location of .git repo
33 __gitdir ()
35 # Note: this function is duplicated in git-prompt.sh
36 # When updating it, make sure you update the other one to match.
37 if [ -z "${1-}" ]; then
38 if [ -n "${__git_dir-}" ]; then
39 echo "$__git_dir"
40 elif [ -n "${GIT_DIR-}" ]; then
41 test -d "${GIT_DIR-}" || return 1
42 echo "$GIT_DIR"
43 elif [ -d .git ]; then
44 echo .git
45 else
46 git rev-parse --git-dir 2>/dev/null
48 elif [ -d "$1/.git" ]; then
49 echo "$1/.git"
50 else
51 echo "$1"
55 __gitcomp_1 ()
57 local c IFS=$' \t\n'
58 for c in $1; do
59 c="$c$2"
60 case $c in
61 --*=*|*.) ;;
62 *) c="$c " ;;
63 esac
64 printf '%s\n' "$c"
65 done
68 # The following function is based on code from:
70 # bash_completion - programmable completion functions for bash 3.2+
72 # Copyright © 2006-2008, Ian Macdonald <ian@caliban.org>
73 # © 2009-2010, Bash Completion Maintainers
74 # <bash-completion-devel@lists.alioth.debian.org>
76 # This program is free software; you can redistribute it and/or modify
77 # it under the terms of the GNU General Public License as published by
78 # the Free Software Foundation; either version 2, or (at your option)
79 # any later version.
81 # This program is distributed in the hope that it will be useful,
82 # but WITHOUT ANY WARRANTY; without even the implied warranty of
83 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
84 # GNU General Public License for more details.
86 # You should have received a copy of the GNU General Public License
87 # along with this program; if not, write to the Free Software Foundation,
88 # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
90 # The latest version of this software can be obtained here:
92 # http://bash-completion.alioth.debian.org/
94 # RELEASE: 2.x
96 # This function can be used to access a tokenized list of words
97 # on the command line:
99 # __git_reassemble_comp_words_by_ref '=:'
100 # if test "${words_[cword_-1]}" = -w
101 # then
102 # ...
103 # fi
105 # The argument should be a collection of characters from the list of
106 # word completion separators (COMP_WORDBREAKS) to treat as ordinary
107 # characters.
109 # This is roughly equivalent to going back in time and setting
110 # COMP_WORDBREAKS to exclude those characters. The intent is to
111 # make option types like --date=<type> and <rev>:<path> easy to
112 # recognize by treating each shell word as a single token.
114 # It is best not to set COMP_WORDBREAKS directly because the value is
115 # shared with other completion scripts. By the time the completion
116 # function gets called, COMP_WORDS has already been populated so local
117 # changes to COMP_WORDBREAKS have no effect.
119 # Output: words_, cword_, cur_.
121 __git_reassemble_comp_words_by_ref()
123 local exclude i j first
124 # Which word separators to exclude?
125 exclude="${1//[^$COMP_WORDBREAKS]}"
126 cword_=$COMP_CWORD
127 if [ -z "$exclude" ]; then
128 words_=("${COMP_WORDS[@]}")
129 return
131 # List of word completion separators has shrunk;
132 # re-assemble words to complete.
133 for ((i=0, j=0; i < ${#COMP_WORDS[@]}; i++, j++)); do
134 # Append each nonempty word consisting of just
135 # word separator characters to the current word.
136 first=t
137 while
138 [ $i -gt 0 ] &&
139 [ -n "${COMP_WORDS[$i]}" ] &&
140 # word consists of excluded word separators
141 [ "${COMP_WORDS[$i]//[^$exclude]}" = "${COMP_WORDS[$i]}" ]
143 # Attach to the previous token,
144 # unless the previous token is the command name.
145 if [ $j -ge 2 ] && [ -n "$first" ]; then
146 ((j--))
148 first=
149 words_[$j]=${words_[j]}${COMP_WORDS[i]}
150 if [ $i = $COMP_CWORD ]; then
151 cword_=$j
153 if (($i < ${#COMP_WORDS[@]} - 1)); then
154 ((i++))
155 else
156 # Done.
157 return
159 done
160 words_[$j]=${words_[j]}${COMP_WORDS[i]}
161 if [ $i = $COMP_CWORD ]; then
162 cword_=$j
164 done
167 if ! type _get_comp_words_by_ref >/dev/null 2>&1; then
168 _get_comp_words_by_ref ()
170 local exclude cur_ words_ cword_
171 if [ "$1" = "-n" ]; then
172 exclude=$2
173 shift 2
175 __git_reassemble_comp_words_by_ref "$exclude"
176 cur_=${words_[cword_]}
177 while [ $# -gt 0 ]; do
178 case "$1" in
179 cur)
180 cur=$cur_
182 prev)
183 prev=${words_[$cword_-1]}
185 words)
186 words=("${words_[@]}")
188 cword)
189 cword=$cword_
191 esac
192 shift
193 done
197 # Generates completion reply with compgen, appending a space to possible
198 # completion words, if necessary.
199 # It accepts 1 to 4 arguments:
200 # 1: List of possible completion words.
201 # 2: A prefix to be added to each possible completion word (optional).
202 # 3: Generate possible completion matches for this word (optional).
203 # 4: A suffix to be appended to each possible completion word (optional).
204 __gitcomp ()
206 local cur_="${3-$cur}"
208 case "$cur_" in
209 --*=)
210 COMPREPLY=()
213 local IFS=$'\n'
214 COMPREPLY=($(compgen -P "${2-}" \
215 -W "$(__gitcomp_1 "${1-}" "${4-}")" \
216 -- "$cur_"))
218 esac
221 # Generates completion reply with compgen from newline-separated possible
222 # completion words by appending a space to all of them.
223 # It accepts 1 to 4 arguments:
224 # 1: List of possible completion words, separated by a single newline.
225 # 2: A prefix to be added to each possible completion word (optional).
226 # 3: Generate possible completion matches for this word (optional).
227 # 4: A suffix to be appended to each possible completion word instead of
228 # the default space (optional). If specified but empty, nothing is
229 # appended.
230 __gitcomp_nl ()
232 local IFS=$'\n'
233 COMPREPLY=($(compgen -P "${2-}" -S "${4- }" -W "$1" -- "${3-$cur}"))
236 __git_heads ()
238 local dir="$(__gitdir)"
239 if [ -d "$dir" ]; then
240 git --git-dir="$dir" for-each-ref --format='%(refname:short)' \
241 refs/heads
242 return
246 __git_tags ()
248 local dir="$(__gitdir)"
249 if [ -d "$dir" ]; then
250 git --git-dir="$dir" for-each-ref --format='%(refname:short)' \
251 refs/tags
252 return
256 # __git_refs accepts 0, 1 (to pass to __gitdir), or 2 arguments
257 # presence of 2nd argument means use the guess heuristic employed
258 # by checkout for tracking branches
259 __git_refs ()
261 local i hash dir="$(__gitdir "${1-}")" track="${2-}"
262 local format refs
263 if [ -d "$dir" ]; then
264 case "$cur" in
265 refs|refs/*)
266 format="refname"
267 refs="${cur%/*}"
268 track=""
271 for i in HEAD FETCH_HEAD ORIG_HEAD MERGE_HEAD; do
272 if [ -e "$dir/$i" ]; then echo $i; fi
273 done
274 format="refname:short"
275 refs="refs/tags refs/heads refs/remotes"
277 esac
278 git --git-dir="$dir" for-each-ref --format="%($format)" \
279 $refs
280 if [ -n "$track" ]; then
281 # employ the heuristic used by git checkout
282 # Try to find a remote branch that matches the completion word
283 # but only output if the branch name is unique
284 local ref entry
285 git --git-dir="$dir" for-each-ref --shell --format="ref=%(refname:short)" \
286 "refs/remotes/" | \
287 while read -r entry; do
288 eval "$entry"
289 ref="${ref#*/}"
290 if [[ "$ref" == "$cur"* ]]; then
291 echo "$ref"
293 done | sort | uniq -u
295 return
297 case "$cur" in
298 refs|refs/*)
299 git ls-remote "$dir" "$cur*" 2>/dev/null | \
300 while read -r hash i; do
301 case "$i" in
302 *^{}) ;;
303 *) echo "$i" ;;
304 esac
305 done
308 git ls-remote "$dir" HEAD ORIG_HEAD 'refs/tags/*' 'refs/heads/*' 'refs/remotes/*' 2>/dev/null | \
309 while read -r hash i; do
310 case "$i" in
311 *^{}) ;;
312 refs/*) echo "${i#refs/*/}" ;;
313 *) echo "$i" ;;
314 esac
315 done
317 esac
320 # __git_refs2 requires 1 argument (to pass to __git_refs)
321 __git_refs2 ()
323 local i
324 for i in $(__git_refs "$1"); do
325 echo "$i:$i"
326 done
329 # __git_refs_remotes requires 1 argument (to pass to ls-remote)
330 __git_refs_remotes ()
332 local i hash
333 git ls-remote "$1" 'refs/heads/*' 2>/dev/null | \
334 while read -r hash i; do
335 echo "$i:refs/remotes/$1/${i#refs/heads/}"
336 done
339 __git_remotes ()
341 local i IFS=$'\n' d="$(__gitdir)"
342 test -d "$d/remotes" && ls -1 "$d/remotes"
343 for i in $(git --git-dir="$d" config --get-regexp 'remote\..*\.url' 2>/dev/null); do
344 i="${i#remote.}"
345 echo "${i/.url*/}"
346 done
349 __git_list_merge_strategies ()
351 git merge -s help 2>&1 |
352 sed -n -e '/[Aa]vailable strategies are: /,/^$/{
353 s/\.$//
354 s/.*://
355 s/^[ ]*//
356 s/[ ]*$//
361 __git_merge_strategies=
362 # 'git merge -s help' (and thus detection of the merge strategy
363 # list) fails, unfortunately, if run outside of any git working
364 # tree. __git_merge_strategies is set to the empty string in
365 # that case, and the detection will be repeated the next time it
366 # is needed.
367 __git_compute_merge_strategies ()
369 test -n "$__git_merge_strategies" ||
370 __git_merge_strategies=$(__git_list_merge_strategies)
373 __git_complete_revlist_file ()
375 local pfx ls ref cur_="$cur"
376 case "$cur_" in
377 *..?*:*)
378 return
380 ?*:*)
381 ref="${cur_%%:*}"
382 cur_="${cur_#*:}"
383 case "$cur_" in
384 ?*/*)
385 pfx="${cur_%/*}"
386 cur_="${cur_##*/}"
387 ls="$ref:$pfx"
388 pfx="$pfx/"
391 ls="$ref"
393 esac
395 case "$COMP_WORDBREAKS" in
396 *:*) : great ;;
397 *) pfx="$ref:$pfx" ;;
398 esac
400 __gitcomp_nl "$(git --git-dir="$(__gitdir)" ls-tree "$ls" 2>/dev/null \
401 | sed '/^100... blob /{
402 s,^.* ,,
403 s,$, ,
405 /^120000 blob /{
406 s,^.* ,,
407 s,$, ,
409 /^040000 tree /{
410 s,^.* ,,
411 s,$,/,
413 s/^.* //')" \
414 "$pfx" "$cur_" ""
416 *...*)
417 pfx="${cur_%...*}..."
418 cur_="${cur_#*...}"
419 __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_"
421 *..*)
422 pfx="${cur_%..*}.."
423 cur_="${cur_#*..}"
424 __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_"
427 __gitcomp_nl "$(__git_refs)"
429 esac
433 __git_complete_file ()
435 __git_complete_revlist_file
438 __git_complete_revlist ()
440 __git_complete_revlist_file
443 __git_complete_remote_or_refspec ()
445 local cur_="$cur" cmd="${words[1]}"
446 local i c=2 remote="" pfx="" lhs=1 no_complete_refspec=0
447 if [ "$cmd" = "remote" ]; then
448 ((c++))
450 while [ $c -lt $cword ]; do
451 i="${words[c]}"
452 case "$i" in
453 --mirror) [ "$cmd" = "push" ] && no_complete_refspec=1 ;;
454 --all)
455 case "$cmd" in
456 push) no_complete_refspec=1 ;;
457 fetch)
458 COMPREPLY=()
459 return
461 *) ;;
462 esac
464 -*) ;;
465 *) remote="$i"; break ;;
466 esac
467 ((c++))
468 done
469 if [ -z "$remote" ]; then
470 __gitcomp_nl "$(__git_remotes)"
471 return
473 if [ $no_complete_refspec = 1 ]; then
474 COMPREPLY=()
475 return
477 [ "$remote" = "." ] && remote=
478 case "$cur_" in
479 *:*)
480 case "$COMP_WORDBREAKS" in
481 *:*) : great ;;
482 *) pfx="${cur_%%:*}:" ;;
483 esac
484 cur_="${cur_#*:}"
485 lhs=0
488 pfx="+"
489 cur_="${cur_#+}"
491 esac
492 case "$cmd" in
493 fetch)
494 if [ $lhs = 1 ]; then
495 __gitcomp_nl "$(__git_refs2 "$remote")" "$pfx" "$cur_"
496 else
497 __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_"
500 pull|remote)
501 if [ $lhs = 1 ]; then
502 __gitcomp_nl "$(__git_refs "$remote")" "$pfx" "$cur_"
503 else
504 __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_"
507 push)
508 if [ $lhs = 1 ]; then
509 __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_"
510 else
511 __gitcomp_nl "$(__git_refs "$remote")" "$pfx" "$cur_"
514 esac
517 __git_complete_strategy ()
519 __git_compute_merge_strategies
520 case "$prev" in
521 -s|--strategy)
522 __gitcomp "$__git_merge_strategies"
523 return 0
524 esac
525 case "$cur" in
526 --strategy=*)
527 __gitcomp "$__git_merge_strategies" "" "${cur##--strategy=}"
528 return 0
530 esac
531 return 1
534 __git_list_all_commands ()
536 local i IFS=" "$'\n'
537 for i in $(git help -a|egrep '^ [a-zA-Z0-9]')
539 case $i in
540 *--*) : helper pattern;;
541 *) echo $i;;
542 esac
543 done
546 __git_all_commands=
547 __git_compute_all_commands ()
549 test -n "$__git_all_commands" ||
550 __git_all_commands=$(__git_list_all_commands)
553 __git_list_porcelain_commands ()
555 local i IFS=" "$'\n'
556 __git_compute_all_commands
557 for i in $__git_all_commands
559 case $i in
560 *--*) : helper pattern;;
561 applymbox) : ask gittus;;
562 applypatch) : ask gittus;;
563 archimport) : import;;
564 cat-file) : plumbing;;
565 check-attr) : plumbing;;
566 check-ref-format) : plumbing;;
567 checkout-index) : plumbing;;
568 commit-tree) : plumbing;;
569 count-objects) : infrequent;;
570 credential-cache) : credentials helper;;
571 credential-store) : credentials helper;;
572 cvsexportcommit) : export;;
573 cvsimport) : import;;
574 cvsserver) : daemon;;
575 daemon) : daemon;;
576 diff-files) : plumbing;;
577 diff-index) : plumbing;;
578 diff-tree) : plumbing;;
579 fast-import) : import;;
580 fast-export) : export;;
581 fsck-objects) : plumbing;;
582 fetch-pack) : plumbing;;
583 fmt-merge-msg) : plumbing;;
584 for-each-ref) : plumbing;;
585 hash-object) : plumbing;;
586 http-*) : transport;;
587 index-pack) : plumbing;;
588 init-db) : deprecated;;
589 local-fetch) : plumbing;;
590 lost-found) : infrequent;;
591 ls-files) : plumbing;;
592 ls-remote) : plumbing;;
593 ls-tree) : plumbing;;
594 mailinfo) : plumbing;;
595 mailsplit) : plumbing;;
596 merge-*) : plumbing;;
597 mktree) : plumbing;;
598 mktag) : plumbing;;
599 pack-objects) : plumbing;;
600 pack-redundant) : plumbing;;
601 pack-refs) : plumbing;;
602 parse-remote) : plumbing;;
603 patch-id) : plumbing;;
604 peek-remote) : plumbing;;
605 prune) : plumbing;;
606 prune-packed) : plumbing;;
607 quiltimport) : import;;
608 read-tree) : plumbing;;
609 receive-pack) : plumbing;;
610 remote-*) : transport;;
611 repo-config) : deprecated;;
612 rerere) : plumbing;;
613 rev-list) : plumbing;;
614 rev-parse) : plumbing;;
615 runstatus) : plumbing;;
616 sh-setup) : internal;;
617 shell) : daemon;;
618 show-ref) : plumbing;;
619 send-pack) : plumbing;;
620 show-index) : plumbing;;
621 ssh-*) : transport;;
622 stripspace) : plumbing;;
623 symbolic-ref) : plumbing;;
624 tar-tree) : deprecated;;
625 unpack-file) : plumbing;;
626 unpack-objects) : plumbing;;
627 update-index) : plumbing;;
628 update-ref) : plumbing;;
629 update-server-info) : daemon;;
630 upload-archive) : plumbing;;
631 upload-pack) : plumbing;;
632 write-tree) : plumbing;;
633 var) : infrequent;;
634 verify-pack) : infrequent;;
635 verify-tag) : plumbing;;
636 *) echo $i;;
637 esac
638 done
641 __git_porcelain_commands=
642 __git_compute_porcelain_commands ()
644 __git_compute_all_commands
645 test -n "$__git_porcelain_commands" ||
646 __git_porcelain_commands=$(__git_list_porcelain_commands)
649 __git_pretty_aliases ()
651 local i IFS=$'\n'
652 for i in $(git --git-dir="$(__gitdir)" config --get-regexp "pretty\..*" 2>/dev/null); do
653 case "$i" in
654 pretty.*)
655 i="${i#pretty.}"
656 echo "${i/ */}"
658 esac
659 done
662 __git_aliases ()
664 local i IFS=$'\n'
665 for i in $(git --git-dir="$(__gitdir)" config --get-regexp "alias\..*" 2>/dev/null); do
666 case "$i" in
667 alias.*)
668 i="${i#alias.}"
669 echo "${i/ */}"
671 esac
672 done
675 # __git_aliased_command requires 1 argument
676 __git_aliased_command ()
678 local word cmdline=$(git --git-dir="$(__gitdir)" \
679 config --get "alias.$1")
680 for word in $cmdline; do
681 case "$word" in
682 \!gitk|gitk)
683 echo "gitk"
684 return
686 \!*) : shell command alias ;;
687 -*) : option ;;
688 *=*) : setting env ;;
689 git) : git itself ;;
691 echo "$word"
692 return
693 esac
694 done
697 # __git_find_on_cmdline requires 1 argument
698 __git_find_on_cmdline ()
700 local word subcommand c=1
701 while [ $c -lt $cword ]; do
702 word="${words[c]}"
703 for subcommand in $1; do
704 if [ "$subcommand" = "$word" ]; then
705 echo "$subcommand"
706 return
708 done
709 ((c++))
710 done
713 __git_has_doubledash ()
715 local c=1
716 while [ $c -lt $cword ]; do
717 if [ "--" = "${words[c]}" ]; then
718 return 0
720 ((c++))
721 done
722 return 1
725 __git_whitespacelist="nowarn warn error error-all fix"
727 _git_am ()
729 local dir="$(__gitdir)"
730 if [ -d "$dir"/rebase-apply ]; then
731 __gitcomp "--skip --continue --resolved --abort"
732 return
734 case "$cur" in
735 --whitespace=*)
736 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
737 return
739 --*)
740 __gitcomp "
741 --3way --committer-date-is-author-date --ignore-date
742 --ignore-whitespace --ignore-space-change
743 --interactive --keep --no-utf8 --signoff --utf8
744 --whitespace= --scissors
746 return
747 esac
748 COMPREPLY=()
751 _git_apply ()
753 case "$cur" in
754 --whitespace=*)
755 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
756 return
758 --*)
759 __gitcomp "
760 --stat --numstat --summary --check --index
761 --cached --index-info --reverse --reject --unidiff-zero
762 --apply --no-add --exclude=
763 --ignore-whitespace --ignore-space-change
764 --whitespace= --inaccurate-eof --verbose
766 return
767 esac
768 COMPREPLY=()
771 _git_add ()
773 __git_has_doubledash && return
775 case "$cur" in
776 --*)
777 __gitcomp "
778 --interactive --refresh --patch --update --dry-run
779 --ignore-errors --intent-to-add
781 return
782 esac
783 COMPREPLY=()
786 _git_archive ()
788 case "$cur" in
789 --format=*)
790 __gitcomp "$(git archive --list)" "" "${cur##--format=}"
791 return
793 --remote=*)
794 __gitcomp_nl "$(__git_remotes)" "" "${cur##--remote=}"
795 return
797 --*)
798 __gitcomp "
799 --format= --list --verbose
800 --prefix= --remote= --exec=
802 return
804 esac
805 __git_complete_file
808 _git_bisect ()
810 __git_has_doubledash && return
812 local subcommands="start bad good skip reset visualize replay log run"
813 local subcommand="$(__git_find_on_cmdline "$subcommands")"
814 if [ -z "$subcommand" ]; then
815 if [ -f "$(__gitdir)"/BISECT_START ]; then
816 __gitcomp "$subcommands"
817 else
818 __gitcomp "replay start"
820 return
823 case "$subcommand" in
824 bad|good|reset|skip|start)
825 __gitcomp_nl "$(__git_refs)"
828 COMPREPLY=()
830 esac
833 _git_branch ()
835 local i c=1 only_local_ref="n" has_r="n"
837 while [ $c -lt $cword ]; do
838 i="${words[c]}"
839 case "$i" in
840 -d|-m) only_local_ref="y" ;;
841 -r) has_r="y" ;;
842 esac
843 ((c++))
844 done
846 case "$cur" in
847 --set-upstream-to=*)
848 __gitcomp "$(__git_refs)" "" "${cur##--set-upstream-to=}"
850 --*)
851 __gitcomp "
852 --color --no-color --verbose --abbrev= --no-abbrev
853 --track --no-track --contains --merged --no-merged
854 --set-upstream-to= --edit-description --list
855 --unset-upstream
859 if [ $only_local_ref = "y" -a $has_r = "n" ]; then
860 __gitcomp_nl "$(__git_heads)"
861 else
862 __gitcomp_nl "$(__git_refs)"
865 esac
868 _git_bundle ()
870 local cmd="${words[2]}"
871 case "$cword" in
873 __gitcomp "create list-heads verify unbundle"
876 # looking for a file
879 case "$cmd" in
880 create)
881 __git_complete_revlist
883 esac
885 esac
888 _git_checkout ()
890 __git_has_doubledash && return
892 case "$cur" in
893 --conflict=*)
894 __gitcomp "diff3 merge" "" "${cur##--conflict=}"
896 --*)
897 __gitcomp "
898 --quiet --ours --theirs --track --no-track --merge
899 --conflict= --orphan --patch
903 # check if --track, --no-track, or --no-guess was specified
904 # if so, disable DWIM mode
905 local flags="--track --no-track --no-guess" track=1
906 if [ -n "$(__git_find_on_cmdline "$flags")" ]; then
907 track=''
909 __gitcomp_nl "$(__git_refs '' $track)"
911 esac
914 _git_cherry ()
916 __gitcomp "$(__git_refs)"
919 _git_cherry_pick ()
921 case "$cur" in
922 --*)
923 __gitcomp "--edit --no-commit"
926 __gitcomp_nl "$(__git_refs)"
928 esac
931 _git_clean ()
933 __git_has_doubledash && return
935 case "$cur" in
936 --*)
937 __gitcomp "--dry-run --quiet"
938 return
940 esac
941 COMPREPLY=()
944 _git_clone ()
946 case "$cur" in
947 --*)
948 __gitcomp "
949 --local
950 --no-hardlinks
951 --shared
952 --reference
953 --quiet
954 --no-checkout
955 --bare
956 --mirror
957 --origin
958 --upload-pack
959 --template=
960 --depth
961 --single-branch
962 --branch
964 return
966 esac
967 COMPREPLY=()
970 _git_commit ()
972 __git_has_doubledash && return
974 case "$prev" in
975 -c|-C)
976 __gitcomp_nl "$(__git_refs)" "" "${cur}"
977 return
979 esac
981 case "$cur" in
982 --cleanup=*)
983 __gitcomp "default strip verbatim whitespace
984 " "" "${cur##--cleanup=}"
985 return
987 --reuse-message=*|--reedit-message=*|\
988 --fixup=*|--squash=*)
989 __gitcomp_nl "$(__git_refs)" "" "${cur#*=}"
990 return
992 --untracked-files=*)
993 __gitcomp "all no normal" "" "${cur##--untracked-files=}"
994 return
996 --*)
997 __gitcomp "
998 --all --author= --signoff --verify --no-verify
999 --edit --no-edit
1000 --amend --include --only --interactive
1001 --dry-run --reuse-message= --reedit-message=
1002 --reset-author --file= --message= --template=
1003 --cleanup= --untracked-files --untracked-files=
1004 --verbose --quiet --fixup= --squash=
1006 return
1007 esac
1008 COMPREPLY=()
1011 _git_describe ()
1013 case "$cur" in
1014 --*)
1015 __gitcomp "
1016 --all --tags --contains --abbrev= --candidates=
1017 --exact-match --debug --long --match --always
1019 return
1020 esac
1021 __gitcomp_nl "$(__git_refs)"
1024 __git_diff_common_options="--stat --numstat --shortstat --summary
1025 --patch-with-stat --name-only --name-status --color
1026 --no-color --color-words --no-renames --check
1027 --full-index --binary --abbrev --diff-filter=
1028 --find-copies-harder
1029 --text --ignore-space-at-eol --ignore-space-change
1030 --ignore-all-space --exit-code --quiet --ext-diff
1031 --no-ext-diff
1032 --no-prefix --src-prefix= --dst-prefix=
1033 --inter-hunk-context=
1034 --patience
1035 --raw
1036 --dirstat --dirstat= --dirstat-by-file
1037 --dirstat-by-file= --cumulative
1040 _git_diff ()
1042 __git_has_doubledash && return
1044 case "$cur" in
1045 --*)
1046 __gitcomp "--cached --staged --pickaxe-all --pickaxe-regex
1047 --base --ours --theirs --no-index
1048 $__git_diff_common_options
1050 return
1052 esac
1053 __git_complete_revlist_file
1056 __git_mergetools_common="diffuse ecmerge emerge kdiff3 meld opendiff
1057 tkdiff vimdiff gvimdiff xxdiff araxis p4merge bc3 codecompare
1060 _git_difftool ()
1062 __git_has_doubledash && return
1064 case "$cur" in
1065 --tool=*)
1066 __gitcomp "$__git_mergetools_common kompare" "" "${cur##--tool=}"
1067 return
1069 --*)
1070 __gitcomp "--cached --staged --pickaxe-all --pickaxe-regex
1071 --base --ours --theirs
1072 --no-renames --diff-filter= --find-copies-harder
1073 --relative --ignore-submodules
1074 --tool="
1075 return
1077 esac
1078 __git_complete_file
1081 __git_fetch_options="
1082 --quiet --verbose --append --upload-pack --force --keep --depth=
1083 --tags --no-tags --all --prune --dry-run
1086 _git_fetch ()
1088 case "$cur" in
1089 --*)
1090 __gitcomp "$__git_fetch_options"
1091 return
1093 esac
1094 __git_complete_remote_or_refspec
1097 __git_format_patch_options="
1098 --stdout --attach --no-attach --thread --thread= --output-directory
1099 --numbered --start-number --numbered-files --keep-subject --signoff
1100 --signature --no-signature --in-reply-to= --cc= --full-index --binary
1101 --not --all --cover-letter --no-prefix --src-prefix= --dst-prefix=
1102 --inline --suffix= --ignore-if-in-upstream --subject-prefix=
1105 _git_format_patch ()
1107 case "$cur" in
1108 --thread=*)
1109 __gitcomp "
1110 deep shallow
1111 " "" "${cur##--thread=}"
1112 return
1114 --*)
1115 __gitcomp "$__git_format_patch_options"
1116 return
1118 esac
1119 __git_complete_revlist
1122 _git_fsck ()
1124 case "$cur" in
1125 --*)
1126 __gitcomp "
1127 --tags --root --unreachable --cache --no-reflogs --full
1128 --strict --verbose --lost-found
1130 return
1132 esac
1133 COMPREPLY=()
1136 _git_gc ()
1138 case "$cur" in
1139 --*)
1140 __gitcomp "--prune --aggressive"
1141 return
1143 esac
1144 COMPREPLY=()
1147 _git_gitk ()
1149 _gitk
1152 __git_match_ctag() {
1153 awk "/^${1////\\/}/ { print \$1 }" "$2"
1156 _git_grep ()
1158 __git_has_doubledash && return
1160 case "$cur" in
1161 --*)
1162 __gitcomp "
1163 --cached
1164 --text --ignore-case --word-regexp --invert-match
1165 --full-name --line-number
1166 --extended-regexp --basic-regexp --fixed-strings
1167 --perl-regexp
1168 --files-with-matches --name-only
1169 --files-without-match
1170 --max-depth
1171 --count
1172 --and --or --not --all-match
1174 return
1176 esac
1178 case "$cword,$prev" in
1179 2,*|*,-*)
1180 if test -r tags; then
1181 __gitcomp_nl "$(__git_match_ctag "$cur" tags)"
1182 return
1185 esac
1187 __gitcomp_nl "$(__git_refs)"
1190 _git_help ()
1192 case "$cur" in
1193 --*)
1194 __gitcomp "--all --info --man --web"
1195 return
1197 esac
1198 __git_compute_all_commands
1199 __gitcomp "$__git_all_commands $(__git_aliases)
1200 attributes cli core-tutorial cvs-migration
1201 diffcore gitk glossary hooks ignore modules
1202 namespaces repository-layout tutorial tutorial-2
1203 workflows
1207 _git_init ()
1209 case "$cur" in
1210 --shared=*)
1211 __gitcomp "
1212 false true umask group all world everybody
1213 " "" "${cur##--shared=}"
1214 return
1216 --*)
1217 __gitcomp "--quiet --bare --template= --shared --shared="
1218 return
1220 esac
1221 COMPREPLY=()
1224 _git_ls_files ()
1226 __git_has_doubledash && return
1228 case "$cur" in
1229 --*)
1230 __gitcomp "--cached --deleted --modified --others --ignored
1231 --stage --directory --no-empty-directory --unmerged
1232 --killed --exclude= --exclude-from=
1233 --exclude-per-directory= --exclude-standard
1234 --error-unmatch --with-tree= --full-name
1235 --abbrev --ignored --exclude-per-directory
1237 return
1239 esac
1240 COMPREPLY=()
1243 _git_ls_remote ()
1245 __gitcomp_nl "$(__git_remotes)"
1248 _git_ls_tree ()
1250 __git_complete_file
1253 # Options that go well for log, shortlog and gitk
1254 __git_log_common_options="
1255 --not --all
1256 --branches --tags --remotes
1257 --first-parent --merges --no-merges
1258 --max-count=
1259 --max-age= --since= --after=
1260 --min-age= --until= --before=
1261 --min-parents= --max-parents=
1262 --no-min-parents --no-max-parents
1264 # Options that go well for log and gitk (not shortlog)
1265 __git_log_gitk_options="
1266 --dense --sparse --full-history
1267 --simplify-merges --simplify-by-decoration
1268 --left-right --notes --no-notes
1270 # Options that go well for log and shortlog (not gitk)
1271 __git_log_shortlog_options="
1272 --author= --committer= --grep=
1273 --all-match
1276 __git_log_pretty_formats="oneline short medium full fuller email raw format:"
1277 __git_log_date_formats="relative iso8601 rfc2822 short local default raw"
1279 _git_log ()
1281 __git_has_doubledash && return
1283 local g="$(git rev-parse --git-dir 2>/dev/null)"
1284 local merge=""
1285 if [ -f "$g/MERGE_HEAD" ]; then
1286 merge="--merge"
1288 case "$cur" in
1289 --pretty=*|--format=*)
1290 __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
1291 " "" "${cur#*=}"
1292 return
1294 --date=*)
1295 __gitcomp "$__git_log_date_formats" "" "${cur##--date=}"
1296 return
1298 --decorate=*)
1299 __gitcomp "long short" "" "${cur##--decorate=}"
1300 return
1302 --*)
1303 __gitcomp "
1304 $__git_log_common_options
1305 $__git_log_shortlog_options
1306 $__git_log_gitk_options
1307 --root --topo-order --date-order --reverse
1308 --follow --full-diff
1309 --abbrev-commit --abbrev=
1310 --relative-date --date=
1311 --pretty= --format= --oneline
1312 --cherry-pick
1313 --graph
1314 --decorate --decorate=
1315 --walk-reflogs
1316 --parents --children
1317 $merge
1318 $__git_diff_common_options
1319 --pickaxe-all --pickaxe-regex
1321 return
1323 esac
1324 __git_complete_revlist
1327 __git_merge_options="
1328 --no-commit --no-stat --log --no-log --squash --strategy
1329 --commit --stat --no-squash --ff --no-ff --ff-only --edit --no-edit
1332 _git_merge ()
1334 __git_complete_strategy && return
1336 case "$cur" in
1337 --*)
1338 __gitcomp "$__git_merge_options"
1339 return
1340 esac
1341 __gitcomp_nl "$(__git_refs)"
1344 _git_mergetool ()
1346 case "$cur" in
1347 --tool=*)
1348 __gitcomp "$__git_mergetools_common tortoisemerge" "" "${cur##--tool=}"
1349 return
1351 --*)
1352 __gitcomp "--tool="
1353 return
1355 esac
1356 COMPREPLY=()
1359 _git_merge_base ()
1361 __gitcomp_nl "$(__git_refs)"
1364 _git_mv ()
1366 case "$cur" in
1367 --*)
1368 __gitcomp "--dry-run"
1369 return
1371 esac
1372 COMPREPLY=()
1375 _git_name_rev ()
1377 __gitcomp "--tags --all --stdin"
1380 _git_notes ()
1382 local subcommands='add append copy edit list prune remove show'
1383 local subcommand="$(__git_find_on_cmdline "$subcommands")"
1385 case "$subcommand,$cur" in
1386 ,--*)
1387 __gitcomp '--ref'
1390 case "$prev" in
1391 --ref)
1392 __gitcomp_nl "$(__git_refs)"
1395 __gitcomp "$subcommands --ref"
1397 esac
1399 add,--reuse-message=*|append,--reuse-message=*|\
1400 add,--reedit-message=*|append,--reedit-message=*)
1401 __gitcomp_nl "$(__git_refs)" "" "${cur#*=}"
1403 add,--*|append,--*)
1404 __gitcomp '--file= --message= --reedit-message=
1405 --reuse-message='
1407 copy,--*)
1408 __gitcomp '--stdin'
1410 prune,--*)
1411 __gitcomp '--dry-run --verbose'
1413 prune,*)
1416 case "$prev" in
1417 -m|-F)
1420 __gitcomp_nl "$(__git_refs)"
1422 esac
1424 esac
1427 _git_pull ()
1429 __git_complete_strategy && return
1431 case "$cur" in
1432 --*)
1433 __gitcomp "
1434 --rebase --no-rebase
1435 $__git_merge_options
1436 $__git_fetch_options
1438 return
1440 esac
1441 __git_complete_remote_or_refspec
1444 _git_push ()
1446 case "$prev" in
1447 --repo)
1448 __gitcomp_nl "$(__git_remotes)"
1449 return
1450 esac
1451 case "$cur" in
1452 --repo=*)
1453 __gitcomp_nl "$(__git_remotes)" "" "${cur##--repo=}"
1454 return
1456 --*)
1457 __gitcomp "
1458 --all --mirror --tags --dry-run --force --verbose
1459 --receive-pack= --repo= --set-upstream
1461 return
1463 esac
1464 __git_complete_remote_or_refspec
1467 _git_rebase ()
1469 local dir="$(__gitdir)"
1470 if [ -d "$dir"/rebase-apply ] || [ -d "$dir"/rebase-merge ]; then
1471 __gitcomp "--continue --skip --abort"
1472 return
1474 __git_complete_strategy && return
1475 case "$cur" in
1476 --whitespace=*)
1477 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
1478 return
1480 --*)
1481 __gitcomp "
1482 --onto --merge --strategy --interactive
1483 --preserve-merges --stat --no-stat
1484 --committer-date-is-author-date --ignore-date
1485 --ignore-whitespace --whitespace=
1486 --autosquash
1489 return
1490 esac
1491 __gitcomp_nl "$(__git_refs)"
1494 _git_reflog ()
1496 local subcommands="show delete expire"
1497 local subcommand="$(__git_find_on_cmdline "$subcommands")"
1499 if [ -z "$subcommand" ]; then
1500 __gitcomp "$subcommands"
1501 else
1502 __gitcomp_nl "$(__git_refs)"
1506 __git_send_email_confirm_options="always never auto cc compose"
1507 __git_send_email_suppresscc_options="author self cc bodycc sob cccmd body all"
1509 _git_send_email ()
1511 case "$cur" in
1512 --confirm=*)
1513 __gitcomp "
1514 $__git_send_email_confirm_options
1515 " "" "${cur##--confirm=}"
1516 return
1518 --suppress-cc=*)
1519 __gitcomp "
1520 $__git_send_email_suppresscc_options
1521 " "" "${cur##--suppress-cc=}"
1523 return
1525 --smtp-encryption=*)
1526 __gitcomp "ssl tls" "" "${cur##--smtp-encryption=}"
1527 return
1529 --thread=*)
1530 __gitcomp "
1531 deep shallow
1532 " "" "${cur##--thread=}"
1533 return
1535 --*)
1536 __gitcomp "--annotate --bcc --cc --cc-cmd --chain-reply-to
1537 --compose --confirm= --dry-run --envelope-sender
1538 --from --identity
1539 --in-reply-to --no-chain-reply-to --no-signed-off-by-cc
1540 --no-suppress-from --no-thread --quiet
1541 --signed-off-by-cc --smtp-pass --smtp-server
1542 --smtp-server-port --smtp-encryption= --smtp-user
1543 --subject --suppress-cc= --suppress-from --thread --to
1544 --validate --no-validate
1545 $__git_format_patch_options"
1546 return
1548 esac
1549 __git_complete_revlist
1552 _git_stage ()
1554 _git_add
1557 __git_config_get_set_variables ()
1559 local prevword word config_file= c=$cword
1560 while [ $c -gt 1 ]; do
1561 word="${words[c]}"
1562 case "$word" in
1563 --global|--system|--file=*)
1564 config_file="$word"
1565 break
1567 -f|--file)
1568 config_file="$word $prevword"
1569 break
1571 esac
1572 prevword=$word
1573 c=$((--c))
1574 done
1576 git --git-dir="$(__gitdir)" config $config_file --list 2>/dev/null |
1577 while read -r line
1579 case "$line" in
1580 *.*=*)
1581 echo "${line/=*/}"
1583 esac
1584 done
1587 _git_config ()
1589 case "$prev" in
1590 branch.*.remote)
1591 __gitcomp_nl "$(__git_remotes)"
1592 return
1594 branch.*.merge)
1595 __gitcomp_nl "$(__git_refs)"
1596 return
1598 remote.*.fetch)
1599 local remote="${prev#remote.}"
1600 remote="${remote%.fetch}"
1601 if [ -z "$cur" ]; then
1602 COMPREPLY=("refs/heads/")
1603 return
1605 __gitcomp_nl "$(__git_refs_remotes "$remote")"
1606 return
1608 remote.*.push)
1609 local remote="${prev#remote.}"
1610 remote="${remote%.push}"
1611 __gitcomp_nl "$(git --git-dir="$(__gitdir)" \
1612 for-each-ref --format='%(refname):%(refname)' \
1613 refs/heads)"
1614 return
1616 pull.twohead|pull.octopus)
1617 __git_compute_merge_strategies
1618 __gitcomp "$__git_merge_strategies"
1619 return
1621 color.branch|color.diff|color.interactive|\
1622 color.showbranch|color.status|color.ui)
1623 __gitcomp "always never auto"
1624 return
1626 color.pager)
1627 __gitcomp "false true"
1628 return
1630 color.*.*)
1631 __gitcomp "
1632 normal black red green yellow blue magenta cyan white
1633 bold dim ul blink reverse
1635 return
1637 help.format)
1638 __gitcomp "man info web html"
1639 return
1641 log.date)
1642 __gitcomp "$__git_log_date_formats"
1643 return
1645 sendemail.aliasesfiletype)
1646 __gitcomp "mutt mailrc pine elm gnus"
1647 return
1649 sendemail.confirm)
1650 __gitcomp "$__git_send_email_confirm_options"
1651 return
1653 sendemail.suppresscc)
1654 __gitcomp "$__git_send_email_suppresscc_options"
1655 return
1657 --get|--get-all|--unset|--unset-all)
1658 __gitcomp_nl "$(__git_config_get_set_variables)"
1659 return
1661 *.*)
1662 COMPREPLY=()
1663 return
1665 esac
1666 case "$cur" in
1667 --*)
1668 __gitcomp "
1669 --global --system --file=
1670 --list --replace-all
1671 --get --get-all --get-regexp
1672 --add --unset --unset-all
1673 --remove-section --rename-section
1675 return
1677 branch.*.*)
1678 local pfx="${cur%.*}." cur_="${cur##*.}"
1679 __gitcomp "remote merge mergeoptions rebase" "$pfx" "$cur_"
1680 return
1682 branch.*)
1683 local pfx="${cur%.*}." cur_="${cur#*.}"
1684 __gitcomp_nl "$(__git_heads)" "$pfx" "$cur_" "."
1685 return
1687 guitool.*.*)
1688 local pfx="${cur%.*}." cur_="${cur##*.}"
1689 __gitcomp "
1690 argprompt cmd confirm needsfile noconsole norescan
1691 prompt revprompt revunmerged title
1692 " "$pfx" "$cur_"
1693 return
1695 difftool.*.*)
1696 local pfx="${cur%.*}." cur_="${cur##*.}"
1697 __gitcomp "cmd path" "$pfx" "$cur_"
1698 return
1700 man.*.*)
1701 local pfx="${cur%.*}." cur_="${cur##*.}"
1702 __gitcomp "cmd path" "$pfx" "$cur_"
1703 return
1705 mergetool.*.*)
1706 local pfx="${cur%.*}." cur_="${cur##*.}"
1707 __gitcomp "cmd path trustExitCode" "$pfx" "$cur_"
1708 return
1710 pager.*)
1711 local pfx="${cur%.*}." cur_="${cur#*.}"
1712 __git_compute_all_commands
1713 __gitcomp_nl "$__git_all_commands" "$pfx" "$cur_"
1714 return
1716 remote.*.*)
1717 local pfx="${cur%.*}." cur_="${cur##*.}"
1718 __gitcomp "
1719 url proxy fetch push mirror skipDefaultUpdate
1720 receivepack uploadpack tagopt pushurl
1721 " "$pfx" "$cur_"
1722 return
1724 remote.*)
1725 local pfx="${cur%.*}." cur_="${cur#*.}"
1726 __gitcomp_nl "$(__git_remotes)" "$pfx" "$cur_" "."
1727 return
1729 url.*.*)
1730 local pfx="${cur%.*}." cur_="${cur##*.}"
1731 __gitcomp "insteadOf pushInsteadOf" "$pfx" "$cur_"
1732 return
1734 esac
1735 __gitcomp "
1736 add.ignoreErrors
1737 advice.commitBeforeMerge
1738 advice.detachedHead
1739 advice.implicitIdentity
1740 advice.pushNonFastForward
1741 advice.resolveConflict
1742 advice.statusHints
1743 alias.
1744 am.keepcr
1745 apply.ignorewhitespace
1746 apply.whitespace
1747 branch.autosetupmerge
1748 branch.autosetuprebase
1749 browser.
1750 clean.requireForce
1751 color.branch
1752 color.branch.current
1753 color.branch.local
1754 color.branch.plain
1755 color.branch.remote
1756 color.decorate.HEAD
1757 color.decorate.branch
1758 color.decorate.remoteBranch
1759 color.decorate.stash
1760 color.decorate.tag
1761 color.diff
1762 color.diff.commit
1763 color.diff.frag
1764 color.diff.func
1765 color.diff.meta
1766 color.diff.new
1767 color.diff.old
1768 color.diff.plain
1769 color.diff.whitespace
1770 color.grep
1771 color.grep.context
1772 color.grep.filename
1773 color.grep.function
1774 color.grep.linenumber
1775 color.grep.match
1776 color.grep.selected
1777 color.grep.separator
1778 color.interactive
1779 color.interactive.error
1780 color.interactive.header
1781 color.interactive.help
1782 color.interactive.prompt
1783 color.pager
1784 color.showbranch
1785 color.status
1786 color.status.added
1787 color.status.changed
1788 color.status.header
1789 color.status.nobranch
1790 color.status.untracked
1791 color.status.updated
1792 color.ui
1793 commit.status
1794 commit.template
1795 core.abbrev
1796 core.askpass
1797 core.attributesfile
1798 core.autocrlf
1799 core.bare
1800 core.bigFileThreshold
1801 core.compression
1802 core.createObject
1803 core.deltaBaseCacheLimit
1804 core.editor
1805 core.eol
1806 core.excludesfile
1807 core.fileMode
1808 core.fsyncobjectfiles
1809 core.gitProxy
1810 core.ignoreCygwinFSTricks
1811 core.ignoreStat
1812 core.ignorecase
1813 core.logAllRefUpdates
1814 core.loosecompression
1815 core.notesRef
1816 core.packedGitLimit
1817 core.packedGitWindowSize
1818 core.pager
1819 core.preferSymlinkRefs
1820 core.preloadindex
1821 core.quotepath
1822 core.repositoryFormatVersion
1823 core.safecrlf
1824 core.sharedRepository
1825 core.sparseCheckout
1826 core.symlinks
1827 core.trustctime
1828 core.warnAmbiguousRefs
1829 core.whitespace
1830 core.worktree
1831 diff.autorefreshindex
1832 diff.statGraphWidth
1833 diff.external
1834 diff.ignoreSubmodules
1835 diff.mnemonicprefix
1836 diff.noprefix
1837 diff.renameLimit
1838 diff.renames
1839 diff.suppressBlankEmpty
1840 diff.tool
1841 diff.wordRegex
1842 difftool.
1843 difftool.prompt
1844 fetch.recurseSubmodules
1845 fetch.unpackLimit
1846 format.attach
1847 format.cc
1848 format.headers
1849 format.numbered
1850 format.pretty
1851 format.signature
1852 format.signoff
1853 format.subjectprefix
1854 format.suffix
1855 format.thread
1856 format.to
1858 gc.aggressiveWindow
1859 gc.auto
1860 gc.autopacklimit
1861 gc.packrefs
1862 gc.pruneexpire
1863 gc.reflogexpire
1864 gc.reflogexpireunreachable
1865 gc.rerereresolved
1866 gc.rerereunresolved
1867 gitcvs.allbinary
1868 gitcvs.commitmsgannotation
1869 gitcvs.dbTableNamePrefix
1870 gitcvs.dbdriver
1871 gitcvs.dbname
1872 gitcvs.dbpass
1873 gitcvs.dbuser
1874 gitcvs.enabled
1875 gitcvs.logfile
1876 gitcvs.usecrlfattr
1877 guitool.
1878 gui.blamehistoryctx
1879 gui.commitmsgwidth
1880 gui.copyblamethreshold
1881 gui.diffcontext
1882 gui.encoding
1883 gui.fastcopyblame
1884 gui.matchtrackingbranch
1885 gui.newbranchtemplate
1886 gui.pruneduringfetch
1887 gui.spellingdictionary
1888 gui.trustmtime
1889 help.autocorrect
1890 help.browser
1891 help.format
1892 http.lowSpeedLimit
1893 http.lowSpeedTime
1894 http.maxRequests
1895 http.minSessions
1896 http.noEPSV
1897 http.postBuffer
1898 http.proxy
1899 http.sslCAInfo
1900 http.sslCAPath
1901 http.sslCert
1902 http.sslCertPasswordProtected
1903 http.sslKey
1904 http.sslVerify
1905 http.useragent
1906 i18n.commitEncoding
1907 i18n.logOutputEncoding
1908 imap.authMethod
1909 imap.folder
1910 imap.host
1911 imap.pass
1912 imap.port
1913 imap.preformattedHTML
1914 imap.sslverify
1915 imap.tunnel
1916 imap.user
1917 init.templatedir
1918 instaweb.browser
1919 instaweb.httpd
1920 instaweb.local
1921 instaweb.modulepath
1922 instaweb.port
1923 interactive.singlekey
1924 log.date
1925 log.decorate
1926 log.showroot
1927 mailmap.file
1928 man.
1929 man.viewer
1930 merge.
1931 merge.conflictstyle
1932 merge.log
1933 merge.renameLimit
1934 merge.renormalize
1935 merge.stat
1936 merge.tool
1937 merge.verbosity
1938 mergetool.
1939 mergetool.keepBackup
1940 mergetool.keepTemporaries
1941 mergetool.prompt
1942 notes.displayRef
1943 notes.rewrite.
1944 notes.rewrite.amend
1945 notes.rewrite.rebase
1946 notes.rewriteMode
1947 notes.rewriteRef
1948 pack.compression
1949 pack.deltaCacheLimit
1950 pack.deltaCacheSize
1951 pack.depth
1952 pack.indexVersion
1953 pack.packSizeLimit
1954 pack.threads
1955 pack.window
1956 pack.windowMemory
1957 pager.
1958 pretty.
1959 pull.octopus
1960 pull.twohead
1961 push.default
1962 rebase.autosquash
1963 rebase.stat
1964 receive.autogc
1965 receive.denyCurrentBranch
1966 receive.denyDeleteCurrent
1967 receive.denyDeletes
1968 receive.denyNonFastForwards
1969 receive.fsckObjects
1970 receive.unpackLimit
1971 receive.updateserverinfo
1972 remotes.
1973 repack.usedeltabaseoffset
1974 rerere.autoupdate
1975 rerere.enabled
1976 sendemail.
1977 sendemail.aliasesfile
1978 sendemail.aliasfiletype
1979 sendemail.bcc
1980 sendemail.cc
1981 sendemail.cccmd
1982 sendemail.chainreplyto
1983 sendemail.confirm
1984 sendemail.envelopesender
1985 sendemail.from
1986 sendemail.identity
1987 sendemail.multiedit
1988 sendemail.signedoffbycc
1989 sendemail.smtpdomain
1990 sendemail.smtpencryption
1991 sendemail.smtppass
1992 sendemail.smtpserver
1993 sendemail.smtpserveroption
1994 sendemail.smtpserverport
1995 sendemail.smtpuser
1996 sendemail.suppresscc
1997 sendemail.suppressfrom
1998 sendemail.thread
1999 sendemail.to
2000 sendemail.validate
2001 showbranch.default
2002 status.relativePaths
2003 status.showUntrackedFiles
2004 status.submodulesummary
2005 submodule.
2006 tar.umask
2007 transfer.unpackLimit
2008 url.
2009 user.email
2010 user.name
2011 user.signingkey
2012 web.browser
2013 branch. remote.
2017 _git_remote ()
2019 local subcommands="add rename remove set-head set-branches set-url show prune update"
2020 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2021 if [ -z "$subcommand" ]; then
2022 __gitcomp "$subcommands"
2023 return
2026 case "$subcommand" in
2027 rename|remove|set-url|show|prune)
2028 __gitcomp_nl "$(__git_remotes)"
2030 set-head|set-branches)
2031 __git_complete_remote_or_refspec
2033 update)
2034 local i c='' IFS=$'\n'
2035 for i in $(git --git-dir="$(__gitdir)" config --get-regexp "remotes\..*" 2>/dev/null); do
2036 i="${i#remotes.}"
2037 c="$c ${i/ */}"
2038 done
2039 __gitcomp "$c"
2042 COMPREPLY=()
2044 esac
2047 _git_replace ()
2049 __gitcomp_nl "$(__git_refs)"
2052 _git_reset ()
2054 __git_has_doubledash && return
2056 case "$cur" in
2057 --*)
2058 __gitcomp "--merge --mixed --hard --soft --patch"
2059 return
2061 esac
2062 __gitcomp_nl "$(__git_refs)"
2065 _git_revert ()
2067 case "$cur" in
2068 --*)
2069 __gitcomp "--edit --mainline --no-edit --no-commit --signoff"
2070 return
2072 esac
2073 __gitcomp_nl "$(__git_refs)"
2076 _git_rm ()
2078 __git_has_doubledash && return
2080 case "$cur" in
2081 --*)
2082 __gitcomp "--cached --dry-run --ignore-unmatch --quiet"
2083 return
2085 esac
2086 COMPREPLY=()
2089 _git_shortlog ()
2091 __git_has_doubledash && return
2093 case "$cur" in
2094 --*)
2095 __gitcomp "
2096 $__git_log_common_options
2097 $__git_log_shortlog_options
2098 --numbered --summary
2100 return
2102 esac
2103 __git_complete_revlist
2106 _git_show ()
2108 __git_has_doubledash && return
2110 case "$cur" in
2111 --pretty=*|--format=*)
2112 __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
2113 " "" "${cur#*=}"
2114 return
2116 --*)
2117 __gitcomp "--pretty= --format= --abbrev-commit --oneline
2118 $__git_diff_common_options
2120 return
2122 esac
2123 __git_complete_file
2126 _git_show_branch ()
2128 case "$cur" in
2129 --*)
2130 __gitcomp "
2131 --all --remotes --topo-order --current --more=
2132 --list --independent --merge-base --no-name
2133 --color --no-color
2134 --sha1-name --sparse --topics --reflog
2136 return
2138 esac
2139 __git_complete_revlist
2142 _git_stash ()
2144 local save_opts='--keep-index --no-keep-index --quiet --patch'
2145 local subcommands='save list show apply clear drop pop create branch'
2146 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2147 if [ -z "$subcommand" ]; then
2148 case "$cur" in
2149 --*)
2150 __gitcomp "$save_opts"
2153 if [ -z "$(__git_find_on_cmdline "$save_opts")" ]; then
2154 __gitcomp "$subcommands"
2155 else
2156 COMPREPLY=()
2159 esac
2160 else
2161 case "$subcommand,$cur" in
2162 save,--*)
2163 __gitcomp "$save_opts"
2165 apply,--*|pop,--*)
2166 __gitcomp "--index --quiet"
2168 show,--*|drop,--*|branch,--*)
2169 COMPREPLY=()
2171 show,*|apply,*|drop,*|pop,*|branch,*)
2172 __gitcomp_nl "$(git --git-dir="$(__gitdir)" stash list \
2173 | sed -n -e 's/:.*//p')"
2176 COMPREPLY=()
2178 esac
2182 _git_submodule ()
2184 __git_has_doubledash && return
2186 local subcommands="add status init update summary foreach sync"
2187 if [ -z "$(__git_find_on_cmdline "$subcommands")" ]; then
2188 case "$cur" in
2189 --*)
2190 __gitcomp "--quiet --cached"
2193 __gitcomp "$subcommands"
2195 esac
2196 return
2200 _git_svn ()
2202 local subcommands="
2203 init fetch clone rebase dcommit log find-rev
2204 set-tree commit-diff info create-ignore propget
2205 proplist show-ignore show-externals branch tag blame
2206 migrate mkdirs reset gc
2208 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2209 if [ -z "$subcommand" ]; then
2210 __gitcomp "$subcommands"
2211 else
2212 local remote_opts="--username= --config-dir= --no-auth-cache"
2213 local fc_opts="
2214 --follow-parent --authors-file= --repack=
2215 --no-metadata --use-svm-props --use-svnsync-props
2216 --log-window-size= --no-checkout --quiet
2217 --repack-flags --use-log-author --localtime
2218 --ignore-paths= $remote_opts
2220 local init_opts="
2221 --template= --shared= --trunk= --tags=
2222 --branches= --stdlayout --minimize-url
2223 --no-metadata --use-svm-props --use-svnsync-props
2224 --rewrite-root= --prefix= --use-log-author
2225 --add-author-from $remote_opts
2227 local cmt_opts="
2228 --edit --rmdir --find-copies-harder --copy-similarity=
2231 case "$subcommand,$cur" in
2232 fetch,--*)
2233 __gitcomp "--revision= --fetch-all $fc_opts"
2235 clone,--*)
2236 __gitcomp "--revision= $fc_opts $init_opts"
2238 init,--*)
2239 __gitcomp "$init_opts"
2241 dcommit,--*)
2242 __gitcomp "
2243 --merge --strategy= --verbose --dry-run
2244 --fetch-all --no-rebase --commit-url
2245 --revision --interactive $cmt_opts $fc_opts
2248 set-tree,--*)
2249 __gitcomp "--stdin $cmt_opts $fc_opts"
2251 create-ignore,--*|propget,--*|proplist,--*|show-ignore,--*|\
2252 show-externals,--*|mkdirs,--*)
2253 __gitcomp "--revision="
2255 log,--*)
2256 __gitcomp "
2257 --limit= --revision= --verbose --incremental
2258 --oneline --show-commit --non-recursive
2259 --authors-file= --color
2262 rebase,--*)
2263 __gitcomp "
2264 --merge --verbose --strategy= --local
2265 --fetch-all --dry-run $fc_opts
2268 commit-diff,--*)
2269 __gitcomp "--message= --file= --revision= $cmt_opts"
2271 info,--*)
2272 __gitcomp "--url"
2274 branch,--*)
2275 __gitcomp "--dry-run --message --tag"
2277 tag,--*)
2278 __gitcomp "--dry-run --message"
2280 blame,--*)
2281 __gitcomp "--git-format"
2283 migrate,--*)
2284 __gitcomp "
2285 --config-dir= --ignore-paths= --minimize
2286 --no-auth-cache --username=
2289 reset,--*)
2290 __gitcomp "--revision= --parent"
2293 COMPREPLY=()
2295 esac
2299 _git_tag ()
2301 local i c=1 f=0
2302 while [ $c -lt $cword ]; do
2303 i="${words[c]}"
2304 case "$i" in
2305 -d|-v)
2306 __gitcomp_nl "$(__git_tags)"
2307 return
2312 esac
2313 ((c++))
2314 done
2316 case "$prev" in
2317 -m|-F)
2318 COMPREPLY=()
2320 -*|tag)
2321 if [ $f = 1 ]; then
2322 __gitcomp_nl "$(__git_tags)"
2323 else
2324 COMPREPLY=()
2328 __gitcomp_nl "$(__git_refs)"
2330 esac
2333 _git_whatchanged ()
2335 _git_log
2338 __git_main ()
2340 local i c=1 command __git_dir
2342 while [ $c -lt $cword ]; do
2343 i="${words[c]}"
2344 case "$i" in
2345 --git-dir=*) __git_dir="${i#--git-dir=}" ;;
2346 --bare) __git_dir="." ;;
2347 --help) command="help"; break ;;
2348 -c) c=$((++c)) ;;
2349 -*) ;;
2350 *) command="$i"; break ;;
2351 esac
2352 ((c++))
2353 done
2355 if [ -z "$command" ]; then
2356 case "$cur" in
2357 --*) __gitcomp "
2358 --paginate
2359 --no-pager
2360 --git-dir=
2361 --bare
2362 --version
2363 --exec-path
2364 --exec-path=
2365 --html-path
2366 --info-path
2367 --work-tree=
2368 --namespace=
2369 --no-replace-objects
2370 --help
2373 *) __git_compute_porcelain_commands
2374 __gitcomp "$__git_porcelain_commands $(__git_aliases)" ;;
2375 esac
2376 return
2379 local completion_func="_git_${command//-/_}"
2380 declare -f $completion_func >/dev/null && $completion_func && return
2382 local expansion=$(__git_aliased_command "$command")
2383 if [ -n "$expansion" ]; then
2384 completion_func="_git_${expansion//-/_}"
2385 declare -f $completion_func >/dev/null && $completion_func
2389 __gitk_main ()
2391 __git_has_doubledash && return
2393 local g="$(__gitdir)"
2394 local merge=""
2395 if [ -f "$g/MERGE_HEAD" ]; then
2396 merge="--merge"
2398 case "$cur" in
2399 --*)
2400 __gitcomp "
2401 $__git_log_common_options
2402 $__git_log_gitk_options
2403 $merge
2405 return
2407 esac
2408 __git_complete_revlist
2411 if [[ -n ${ZSH_VERSION-} ]]; then
2412 echo "WARNING: this script is deprecated, please see git-completion.zsh" 1>&2
2414 autoload -U +X compinit && compinit
2416 __gitcomp ()
2418 emulate -L zsh
2420 local cur_="${3-$cur}"
2422 case "$cur_" in
2423 --*=)
2426 local c IFS=$' \t\n'
2427 local -a array
2428 for c in ${=1}; do
2429 c="$c${4-}"
2430 case $c in
2431 --*=*|*.) ;;
2432 *) c="$c " ;;
2433 esac
2434 array+=("$c")
2435 done
2436 compset -P '*[=:]'
2437 compadd -Q -S '' -p "${2-}" -a -- array && _ret=0
2439 esac
2442 __gitcomp_nl ()
2444 emulate -L zsh
2446 local IFS=$'\n'
2447 compset -P '*[=:]'
2448 compadd -Q -S "${4- }" -p "${2-}" -- ${=1} && _ret=0
2451 __git_zsh_helper ()
2453 emulate -L ksh
2454 local cur cword prev
2455 cur=${words[CURRENT-1]}
2456 prev=${words[CURRENT-2]}
2457 let cword=CURRENT-1
2458 __${service}_main
2461 _git ()
2463 emulate -L zsh
2464 local _ret=1
2465 __git_zsh_helper
2466 let _ret && _default -S '' && _ret=0
2467 return _ret
2470 compdef _git git gitk
2471 return
2474 __git_func_wrap ()
2476 local cur words cword prev
2477 _get_comp_words_by_ref -n =: cur words cword prev
2481 # Setup completion for certain functions defined above by setting common
2482 # variables and workarounds.
2483 # This is NOT a public function; use at your own risk.
2484 __git_complete ()
2486 local wrapper="__git_wrap${2}"
2487 eval "$wrapper () { __git_func_wrap $2 ; }"
2488 complete -o bashdefault -o default -o nospace -F $wrapper $1 2>/dev/null \
2489 || complete -o default -o nospace -F $wrapper $1
2492 # wrapper for backwards compatibility
2493 _git ()
2495 __git_wrap__git_main
2498 # wrapper for backwards compatibility
2499 _gitk ()
2501 __git_wrap__gitk_main
2504 __git_complete git __git_main
2505 __git_complete gitk __gitk_main
2507 # The following are necessary only for Cygwin, and only are needed
2508 # when the user has tab-completed the executable name and consequently
2509 # included the '.exe' suffix.
2511 if [ Cygwin = "$(uname -o 2>/dev/null)" ]; then
2512 __git_complete git.exe __git_main