completion: unite --reuse-message and --reedit-message for 'notes'
[alt-git.git] / contrib / completion / git-completion.bash
blob4a857b680fff613548838f52540a2c505c2c2b11
1 #!bash
3 # bash 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) Added the following line to your .bashrc:
22 # source ~/.git-completion.sh
24 # Or, add the following lines to your .zshrc:
25 # autoload bashcompinit
26 # bashcompinit
27 # source ~/.git-completion.sh
29 # 3) Consider changing your PS1 to also show the current branch:
30 # PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ '
32 # The argument to __git_ps1 will be displayed only if you
33 # are currently in a git repository. The %s token will be
34 # the name of the current branch.
36 # In addition, if you set GIT_PS1_SHOWDIRTYSTATE to a nonempty
37 # value, unstaged (*) and staged (+) changes will be shown next
38 # to the branch name. You can configure this per-repository
39 # with the bash.showDirtyState variable, which defaults to true
40 # once GIT_PS1_SHOWDIRTYSTATE is enabled.
42 # You can also see if currently something is stashed, by setting
43 # GIT_PS1_SHOWSTASHSTATE to a nonempty value. If something is stashed,
44 # then a '$' will be shown next to the branch name.
46 # If you would like to see if there're untracked files, then you can
47 # set GIT_PS1_SHOWUNTRACKEDFILES to a nonempty value. If there're
48 # untracked files, then a '%' will be shown next to the branch name.
50 # If you would like to see the difference between HEAD and its
51 # upstream, set GIT_PS1_SHOWUPSTREAM="auto". A "<" indicates
52 # you are behind, ">" indicates you are ahead, and "<>"
53 # indicates you have diverged. You can further control
54 # behaviour by setting GIT_PS1_SHOWUPSTREAM to a space-separated
55 # list of values:
56 # verbose show number of commits ahead/behind (+/-) upstream
57 # legacy don't use the '--count' option available in recent
58 # versions of git-rev-list
59 # git always compare HEAD to @{upstream}
60 # svn always compare HEAD to your SVN upstream
61 # By default, __git_ps1 will compare HEAD to your SVN upstream
62 # if it can find one, or @{upstream} otherwise. Once you have
63 # set GIT_PS1_SHOWUPSTREAM, you can override it on a
64 # per-repository basis by setting the bash.showUpstream config
65 # variable.
68 # To submit patches:
70 # *) Read Documentation/SubmittingPatches
71 # *) Send all patches to the current maintainer:
73 # "Shawn O. Pearce" <spearce@spearce.org>
75 # *) Always CC the Git mailing list:
77 # git@vger.kernel.org
80 case "$COMP_WORDBREAKS" in
81 *:*) : great ;;
82 *) COMP_WORDBREAKS="$COMP_WORDBREAKS:"
83 esac
85 # __gitdir accepts 0 or 1 arguments (i.e., location)
86 # returns location of .git repo
87 __gitdir ()
89 if [ -z "${1-}" ]; then
90 if [ -n "${__git_dir-}" ]; then
91 echo "$__git_dir"
92 elif [ -d .git ]; then
93 echo .git
94 else
95 git rev-parse --git-dir 2>/dev/null
97 elif [ -d "$1/.git" ]; then
98 echo "$1/.git"
99 else
100 echo "$1"
104 # stores the divergence from upstream in $p
105 # used by GIT_PS1_SHOWUPSTREAM
106 __git_ps1_show_upstream ()
108 local key value
109 local svn_remote=() svn_url_pattern count n
110 local upstream=git legacy="" verbose=""
112 # get some config options from git-config
113 while read key value; do
114 case "$key" in
115 bash.showupstream)
116 GIT_PS1_SHOWUPSTREAM="$value"
117 if [[ -z "${GIT_PS1_SHOWUPSTREAM}" ]]; then
118 p=""
119 return
122 svn-remote.*.url)
123 svn_remote[ $((${#svn_remote[@]} + 1)) ]="$value"
124 svn_url_pattern+="\\|$value"
125 upstream=svn+git # default upstream is SVN if available, else git
127 esac
128 done < <(git config -z --get-regexp '^(svn-remote\..*\.url|bash\.showupstream)$' 2>/dev/null | tr '\0\n' '\n ')
130 # parse configuration values
131 for option in ${GIT_PS1_SHOWUPSTREAM}; do
132 case "$option" in
133 git|svn) upstream="$option" ;;
134 verbose) verbose=1 ;;
135 legacy) legacy=1 ;;
136 esac
137 done
139 # Find our upstream
140 case "$upstream" in
141 git) upstream="@{upstream}" ;;
142 svn*)
143 # get the upstream from the "git-svn-id: ..." in a commit message
144 # (git-svn uses essentially the same procedure internally)
145 local svn_upstream=($(git log --first-parent -1 \
146 --grep="^git-svn-id: \(${svn_url_pattern#??}\)" 2>/dev/null))
147 if [[ 0 -ne ${#svn_upstream[@]} ]]; then
148 svn_upstream=${svn_upstream[ ${#svn_upstream[@]} - 2 ]}
149 svn_upstream=${svn_upstream%@*}
150 local n_stop="${#svn_remote[@]}"
151 for ((n=1; n <= n_stop; ++n)); do
152 svn_upstream=${svn_upstream#${svn_remote[$n]}}
153 done
155 if [[ -z "$svn_upstream" ]]; then
156 # default branch name for checkouts with no layout:
157 upstream=${GIT_SVN_ID:-git-svn}
158 else
159 upstream=${svn_upstream#/}
161 elif [[ "svn+git" = "$upstream" ]]; then
162 upstream="@{upstream}"
165 esac
167 # Find how many commits we are ahead/behind our upstream
168 if [[ -z "$legacy" ]]; then
169 count="$(git rev-list --count --left-right \
170 "$upstream"...HEAD 2>/dev/null)"
171 else
172 # produce equivalent output to --count for older versions of git
173 local commits
174 if commits="$(git rev-list --left-right "$upstream"...HEAD 2>/dev/null)"
175 then
176 local commit behind=0 ahead=0
177 for commit in $commits
179 case "$commit" in
180 "<"*) let ++behind
182 *) let ++ahead
184 esac
185 done
186 count="$behind $ahead"
187 else
188 count=""
192 # calculate the result
193 if [[ -z "$verbose" ]]; then
194 case "$count" in
195 "") # no upstream
196 p="" ;;
197 "0 0") # equal to upstream
198 p="=" ;;
199 "0 "*) # ahead of upstream
200 p=">" ;;
201 *" 0") # behind upstream
202 p="<" ;;
203 *) # diverged from upstream
204 p="<>" ;;
205 esac
206 else
207 case "$count" in
208 "") # no upstream
209 p="" ;;
210 "0 0") # equal to upstream
211 p=" u=" ;;
212 "0 "*) # ahead of upstream
213 p=" u+${count#0 }" ;;
214 *" 0") # behind upstream
215 p=" u-${count% 0}" ;;
216 *) # diverged from upstream
217 p=" u+${count#* }-${count% *}" ;;
218 esac
224 # __git_ps1 accepts 0 or 1 arguments (i.e., format string)
225 # returns text to add to bash PS1 prompt (includes branch name)
226 __git_ps1 ()
228 local g="$(__gitdir)"
229 if [ -n "$g" ]; then
230 local r=""
231 local b=""
232 if [ -f "$g/rebase-merge/interactive" ]; then
233 r="|REBASE-i"
234 b="$(cat "$g/rebase-merge/head-name")"
235 elif [ -d "$g/rebase-merge" ]; then
236 r="|REBASE-m"
237 b="$(cat "$g/rebase-merge/head-name")"
238 else
239 if [ -d "$g/rebase-apply" ]; then
240 if [ -f "$g/rebase-apply/rebasing" ]; then
241 r="|REBASE"
242 elif [ -f "$g/rebase-apply/applying" ]; then
243 r="|AM"
244 else
245 r="|AM/REBASE"
247 elif [ -f "$g/MERGE_HEAD" ]; then
248 r="|MERGING"
249 elif [ -f "$g/CHERRY_PICK_HEAD" ]; then
250 r="|CHERRY-PICKING"
251 elif [ -f "$g/BISECT_LOG" ]; then
252 r="|BISECTING"
255 b="$(git symbolic-ref HEAD 2>/dev/null)" || {
257 b="$(
258 case "${GIT_PS1_DESCRIBE_STYLE-}" in
259 (contains)
260 git describe --contains HEAD ;;
261 (branch)
262 git describe --contains --all HEAD ;;
263 (describe)
264 git describe HEAD ;;
265 (* | default)
266 git describe --tags --exact-match HEAD ;;
267 esac 2>/dev/null)" ||
269 b="$(cut -c1-7 "$g/HEAD" 2>/dev/null)..." ||
270 b="unknown"
271 b="($b)"
275 local w=""
276 local i=""
277 local s=""
278 local u=""
279 local c=""
280 local p=""
282 if [ "true" = "$(git rev-parse --is-inside-git-dir 2>/dev/null)" ]; then
283 if [ "true" = "$(git rev-parse --is-bare-repository 2>/dev/null)" ]; then
284 c="BARE:"
285 else
286 b="GIT_DIR!"
288 elif [ "true" = "$(git rev-parse --is-inside-work-tree 2>/dev/null)" ]; then
289 if [ -n "${GIT_PS1_SHOWDIRTYSTATE-}" ]; then
290 if [ "$(git config --bool bash.showDirtyState)" != "false" ]; then
291 git diff --no-ext-diff --quiet --exit-code || w="*"
292 if git rev-parse --quiet --verify HEAD >/dev/null; then
293 git diff-index --cached --quiet HEAD -- || i="+"
294 else
295 i="#"
299 if [ -n "${GIT_PS1_SHOWSTASHSTATE-}" ]; then
300 git rev-parse --verify refs/stash >/dev/null 2>&1 && s="$"
303 if [ -n "${GIT_PS1_SHOWUNTRACKEDFILES-}" ]; then
304 if [ -n "$(git ls-files --others --exclude-standard)" ]; then
305 u="%"
309 if [ -n "${GIT_PS1_SHOWUPSTREAM-}" ]; then
310 __git_ps1_show_upstream
314 local f="$w$i$s$u"
315 printf "${1:- (%s)}" "$c${b##refs/heads/}${f:+ $f}$r$p"
319 # __gitcomp_1 requires 2 arguments
320 __gitcomp_1 ()
322 local c IFS=' '$'\t'$'\n'
323 for c in $1; do
324 case "$c$2" in
325 --*=*) printf %s$'\n' "$c$2" ;;
326 *.) printf %s$'\n' "$c$2" ;;
327 *) printf %s$'\n' "$c$2 " ;;
328 esac
329 done
332 # The following function is based on code from:
334 # bash_completion - programmable completion functions for bash 3.2+
336 # Copyright © 2006-2008, Ian Macdonald <ian@caliban.org>
337 # © 2009-2010, Bash Completion Maintainers
338 # <bash-completion-devel@lists.alioth.debian.org>
340 # This program is free software; you can redistribute it and/or modify
341 # it under the terms of the GNU General Public License as published by
342 # the Free Software Foundation; either version 2, or (at your option)
343 # any later version.
345 # This program is distributed in the hope that it will be useful,
346 # but WITHOUT ANY WARRANTY; without even the implied warranty of
347 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
348 # GNU General Public License for more details.
350 # You should have received a copy of the GNU General Public License
351 # along with this program; if not, write to the Free Software Foundation,
352 # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
354 # The latest version of this software can be obtained here:
356 # http://bash-completion.alioth.debian.org/
358 # RELEASE: 2.x
360 # This function can be used to access a tokenized list of words
361 # on the command line:
363 # __git_reassemble_comp_words_by_ref '=:'
364 # if test "${words_[cword_-1]}" = -w
365 # then
366 # ...
367 # fi
369 # The argument should be a collection of characters from the list of
370 # word completion separators (COMP_WORDBREAKS) to treat as ordinary
371 # characters.
373 # This is roughly equivalent to going back in time and setting
374 # COMP_WORDBREAKS to exclude those characters. The intent is to
375 # make option types like --date=<type> and <rev>:<path> easy to
376 # recognize by treating each shell word as a single token.
378 # It is best not to set COMP_WORDBREAKS directly because the value is
379 # shared with other completion scripts. By the time the completion
380 # function gets called, COMP_WORDS has already been populated so local
381 # changes to COMP_WORDBREAKS have no effect.
383 # Output: words_, cword_, cur_.
385 __git_reassemble_comp_words_by_ref()
387 local exclude i j first
388 # Which word separators to exclude?
389 exclude="${1//[^$COMP_WORDBREAKS]}"
390 cword_=$COMP_CWORD
391 if [ -z "$exclude" ]; then
392 words_=("${COMP_WORDS[@]}")
393 return
395 # List of word completion separators has shrunk;
396 # re-assemble words to complete.
397 for ((i=0, j=0; i < ${#COMP_WORDS[@]}; i++, j++)); do
398 # Append each nonempty word consisting of just
399 # word separator characters to the current word.
400 first=t
401 while
402 [ $i -gt 0 ] &&
403 [ -n "${COMP_WORDS[$i]}" ] &&
404 # word consists of excluded word separators
405 [ "${COMP_WORDS[$i]//[^$exclude]}" = "${COMP_WORDS[$i]}" ]
407 # Attach to the previous token,
408 # unless the previous token is the command name.
409 if [ $j -ge 2 ] && [ -n "$first" ]; then
410 ((j--))
412 first=
413 words_[$j]=${words_[j]}${COMP_WORDS[i]}
414 if [ $i = $COMP_CWORD ]; then
415 cword_=$j
417 if (($i < ${#COMP_WORDS[@]} - 1)); then
418 ((i++))
419 else
420 # Done.
421 return
423 done
424 words_[$j]=${words_[j]}${COMP_WORDS[i]}
425 if [ $i = $COMP_CWORD ]; then
426 cword_=$j
428 done
431 if ! type _get_comp_words_by_ref >/dev/null 2>&1; then
432 if [[ -z ${ZSH_VERSION:+set} ]]; then
433 _get_comp_words_by_ref ()
435 local exclude cur_ words_ cword_
436 if [ "$1" = "-n" ]; then
437 exclude=$2
438 shift 2
440 __git_reassemble_comp_words_by_ref "$exclude"
441 cur_=${words_[cword_]}
442 while [ $# -gt 0 ]; do
443 case "$1" in
444 cur)
445 cur=$cur_
447 prev)
448 prev=${words_[$cword_-1]}
450 words)
451 words=("${words_[@]}")
453 cword)
454 cword=$cword_
456 esac
457 shift
458 done
460 else
461 _get_comp_words_by_ref ()
463 while [ $# -gt 0 ]; do
464 case "$1" in
465 cur)
466 cur=${COMP_WORDS[COMP_CWORD]}
468 prev)
469 prev=${COMP_WORDS[COMP_CWORD-1]}
471 words)
472 words=("${COMP_WORDS[@]}")
474 cword)
475 cword=$COMP_CWORD
478 # assume COMP_WORDBREAKS is already set sanely
479 shift
481 esac
482 shift
483 done
488 # __gitcomp accepts 1, 2, 3, or 4 arguments
489 # generates completion reply with compgen
490 __gitcomp ()
492 local cur
493 _get_comp_words_by_ref -n =: cur
494 if [ $# -gt 2 ]; then
495 cur="$3"
497 case "$cur" in
498 --*=)
499 COMPREPLY=()
502 local IFS=$'\n'
503 COMPREPLY=($(compgen -P "${2-}" \
504 -W "$(__gitcomp_1 "${1-}" "${4-}")" \
505 -- "$cur"))
507 esac
510 # __git_heads accepts 0 or 1 arguments (to pass to __gitdir)
511 __git_heads ()
513 local cmd i is_hash=y dir="$(__gitdir "${1-}")"
514 if [ -d "$dir" ]; then
515 git --git-dir="$dir" for-each-ref --format='%(refname:short)' \
516 refs/heads
517 return
519 for i in $(git ls-remote "${1-}" 2>/dev/null); do
520 case "$is_hash,$i" in
521 y,*) is_hash=n ;;
522 n,*^{}) is_hash=y ;;
523 n,refs/heads/*) is_hash=y; echo "${i#refs/heads/}" ;;
524 n,*) is_hash=y; echo "$i" ;;
525 esac
526 done
529 # __git_tags accepts 0 or 1 arguments (to pass to __gitdir)
530 __git_tags ()
532 local cmd i is_hash=y dir="$(__gitdir "${1-}")"
533 if [ -d "$dir" ]; then
534 git --git-dir="$dir" for-each-ref --format='%(refname:short)' \
535 refs/tags
536 return
538 for i in $(git ls-remote "${1-}" 2>/dev/null); do
539 case "$is_hash,$i" in
540 y,*) is_hash=n ;;
541 n,*^{}) is_hash=y ;;
542 n,refs/tags/*) is_hash=y; echo "${i#refs/tags/}" ;;
543 n,*) is_hash=y; echo "$i" ;;
544 esac
545 done
548 # __git_refs accepts 0, 1 (to pass to __gitdir), or 2 arguments
549 # presence of 2nd argument means use the guess heuristic employed
550 # by checkout for tracking branches
551 __git_refs ()
553 local i is_hash=y dir="$(__gitdir "${1-}")" track="${2-}"
554 local cur format refs
555 _get_comp_words_by_ref -n =: cur
556 if [ -d "$dir" ]; then
557 case "$cur" in
558 refs|refs/*)
559 format="refname"
560 refs="${cur%/*}"
561 track=""
564 for i in HEAD FETCH_HEAD ORIG_HEAD MERGE_HEAD; do
565 if [ -e "$dir/$i" ]; then echo $i; fi
566 done
567 format="refname:short"
568 refs="refs/tags refs/heads refs/remotes"
570 esac
571 git --git-dir="$dir" for-each-ref --format="%($format)" \
572 $refs
573 if [ -n "$track" ]; then
574 # employ the heuristic used by git checkout
575 # Try to find a remote branch that matches the completion word
576 # but only output if the branch name is unique
577 local ref entry
578 git --git-dir="$dir" for-each-ref --shell --format="ref=%(refname:short)" \
579 "refs/remotes/" | \
580 while read entry; do
581 eval "$entry"
582 ref="${ref#*/}"
583 if [[ "$ref" == "$cur"* ]]; then
584 echo "$ref"
586 done | uniq -u
588 return
590 for i in $(git ls-remote "$dir" 2>/dev/null); do
591 case "$is_hash,$i" in
592 y,*) is_hash=n ;;
593 n,*^{}) is_hash=y ;;
594 n,refs/tags/*) is_hash=y; echo "${i#refs/tags/}" ;;
595 n,refs/heads/*) is_hash=y; echo "${i#refs/heads/}" ;;
596 n,refs/remotes/*) is_hash=y; echo "${i#refs/remotes/}" ;;
597 n,*) is_hash=y; echo "$i" ;;
598 esac
599 done
602 # __git_refs2 requires 1 argument (to pass to __git_refs)
603 __git_refs2 ()
605 local i
606 for i in $(__git_refs "$1"); do
607 echo "$i:$i"
608 done
611 # __git_refs_remotes requires 1 argument (to pass to ls-remote)
612 __git_refs_remotes ()
614 local cmd i is_hash=y
615 for i in $(git ls-remote "$1" 2>/dev/null); do
616 case "$is_hash,$i" in
617 n,refs/heads/*)
618 is_hash=y
619 echo "$i:refs/remotes/$1/${i#refs/heads/}"
621 y,*) is_hash=n ;;
622 n,*^{}) is_hash=y ;;
623 n,refs/tags/*) is_hash=y;;
624 n,*) is_hash=y; ;;
625 esac
626 done
629 __git_remotes ()
631 local i ngoff IFS=$'\n' d="$(__gitdir)"
632 shopt -q nullglob || ngoff=1
633 shopt -s nullglob
634 for i in "$d/remotes"/*; do
635 echo ${i#$d/remotes/}
636 done
637 [ "$ngoff" ] && shopt -u nullglob
638 for i in $(git --git-dir="$d" config --get-regexp 'remote\..*\.url' 2>/dev/null); do
639 i="${i#remote.}"
640 echo "${i/.url*/}"
641 done
644 __git_list_merge_strategies ()
646 git merge -s help 2>&1 |
647 sed -n -e '/[Aa]vailable strategies are: /,/^$/{
648 s/\.$//
649 s/.*://
650 s/^[ ]*//
651 s/[ ]*$//
656 __git_merge_strategies=
657 # 'git merge -s help' (and thus detection of the merge strategy
658 # list) fails, unfortunately, if run outside of any git working
659 # tree. __git_merge_strategies is set to the empty string in
660 # that case, and the detection will be repeated the next time it
661 # is needed.
662 __git_compute_merge_strategies ()
664 : ${__git_merge_strategies:=$(__git_list_merge_strategies)}
667 __git_complete_revlist_file ()
669 local pfx ls ref cur
670 _get_comp_words_by_ref -n =: cur
671 case "$cur" in
672 *..?*:*)
673 return
675 ?*:*)
676 ref="${cur%%:*}"
677 cur="${cur#*:}"
678 case "$cur" in
679 ?*/*)
680 pfx="${cur%/*}"
681 cur="${cur##*/}"
682 ls="$ref:$pfx"
683 pfx="$pfx/"
686 ls="$ref"
688 esac
690 case "$COMP_WORDBREAKS" in
691 *:*) : great ;;
692 *) pfx="$ref:$pfx" ;;
693 esac
695 local IFS=$'\n'
696 COMPREPLY=($(compgen -P "$pfx" \
697 -W "$(git --git-dir="$(__gitdir)" ls-tree "$ls" \
698 | sed '/^100... blob /{
699 s,^.* ,,
700 s,$, ,
702 /^120000 blob /{
703 s,^.* ,,
704 s,$, ,
706 /^040000 tree /{
707 s,^.* ,,
708 s,$,/,
710 s/^.* //')" \
711 -- "$cur"))
713 *...*)
714 pfx="${cur%...*}..."
715 cur="${cur#*...}"
716 __gitcomp "$(__git_refs)" "$pfx" "$cur"
718 *..*)
719 pfx="${cur%..*}.."
720 cur="${cur#*..}"
721 __gitcomp "$(__git_refs)" "$pfx" "$cur"
724 __gitcomp "$(__git_refs)"
726 esac
730 __git_complete_file ()
732 __git_complete_revlist_file
735 __git_complete_revlist ()
737 __git_complete_revlist_file
740 __git_complete_remote_or_refspec ()
742 local cur words cword
743 _get_comp_words_by_ref -n =: cur words cword
744 local cmd="${words[1]}"
745 local i c=2 remote="" pfx="" lhs=1 no_complete_refspec=0
746 while [ $c -lt $cword ]; do
747 i="${words[c]}"
748 case "$i" in
749 --mirror) [ "$cmd" = "push" ] && no_complete_refspec=1 ;;
750 --all)
751 case "$cmd" in
752 push) no_complete_refspec=1 ;;
753 fetch)
754 COMPREPLY=()
755 return
757 *) ;;
758 esac
760 -*) ;;
761 *) remote="$i"; break ;;
762 esac
763 c=$((++c))
764 done
765 if [ -z "$remote" ]; then
766 __gitcomp "$(__git_remotes)"
767 return
769 if [ $no_complete_refspec = 1 ]; then
770 COMPREPLY=()
771 return
773 [ "$remote" = "." ] && remote=
774 case "$cur" in
775 *:*)
776 case "$COMP_WORDBREAKS" in
777 *:*) : great ;;
778 *) pfx="${cur%%:*}:" ;;
779 esac
780 cur="${cur#*:}"
781 lhs=0
784 pfx="+"
785 cur="${cur#+}"
787 esac
788 case "$cmd" in
789 fetch)
790 if [ $lhs = 1 ]; then
791 __gitcomp "$(__git_refs2 "$remote")" "$pfx" "$cur"
792 else
793 __gitcomp "$(__git_refs)" "$pfx" "$cur"
796 pull)
797 if [ $lhs = 1 ]; then
798 __gitcomp "$(__git_refs "$remote")" "$pfx" "$cur"
799 else
800 __gitcomp "$(__git_refs)" "$pfx" "$cur"
803 push)
804 if [ $lhs = 1 ]; then
805 __gitcomp "$(__git_refs)" "$pfx" "$cur"
806 else
807 __gitcomp "$(__git_refs "$remote")" "$pfx" "$cur"
810 esac
813 __git_complete_strategy ()
815 local cur prev
816 _get_comp_words_by_ref -n =: cur prev
817 __git_compute_merge_strategies
818 case "$prev" in
819 -s|--strategy)
820 __gitcomp "$__git_merge_strategies"
821 return 0
822 esac
823 case "$cur" in
824 --strategy=*)
825 __gitcomp "$__git_merge_strategies" "" "${cur##--strategy=}"
826 return 0
828 esac
829 return 1
832 __git_list_all_commands ()
834 local i IFS=" "$'\n'
835 for i in $(git help -a|egrep '^ [a-zA-Z0-9]')
837 case $i in
838 *--*) : helper pattern;;
839 *) echo $i;;
840 esac
841 done
844 __git_all_commands=
845 __git_compute_all_commands ()
847 : ${__git_all_commands:=$(__git_list_all_commands)}
850 __git_list_porcelain_commands ()
852 local i IFS=" "$'\n'
853 __git_compute_all_commands
854 for i in "help" $__git_all_commands
856 case $i in
857 *--*) : helper pattern;;
858 applymbox) : ask gittus;;
859 applypatch) : ask gittus;;
860 archimport) : import;;
861 cat-file) : plumbing;;
862 check-attr) : plumbing;;
863 check-ref-format) : plumbing;;
864 checkout-index) : plumbing;;
865 commit-tree) : plumbing;;
866 count-objects) : infrequent;;
867 cvsexportcommit) : export;;
868 cvsimport) : import;;
869 cvsserver) : daemon;;
870 daemon) : daemon;;
871 diff-files) : plumbing;;
872 diff-index) : plumbing;;
873 diff-tree) : plumbing;;
874 fast-import) : import;;
875 fast-export) : export;;
876 fsck-objects) : plumbing;;
877 fetch-pack) : plumbing;;
878 fmt-merge-msg) : plumbing;;
879 for-each-ref) : plumbing;;
880 hash-object) : plumbing;;
881 http-*) : transport;;
882 index-pack) : plumbing;;
883 init-db) : deprecated;;
884 local-fetch) : plumbing;;
885 lost-found) : infrequent;;
886 ls-files) : plumbing;;
887 ls-remote) : plumbing;;
888 ls-tree) : plumbing;;
889 mailinfo) : plumbing;;
890 mailsplit) : plumbing;;
891 merge-*) : plumbing;;
892 mktree) : plumbing;;
893 mktag) : plumbing;;
894 pack-objects) : plumbing;;
895 pack-redundant) : plumbing;;
896 pack-refs) : plumbing;;
897 parse-remote) : plumbing;;
898 patch-id) : plumbing;;
899 peek-remote) : plumbing;;
900 prune) : plumbing;;
901 prune-packed) : plumbing;;
902 quiltimport) : import;;
903 read-tree) : plumbing;;
904 receive-pack) : plumbing;;
905 remote-*) : transport;;
906 repo-config) : deprecated;;
907 rerere) : plumbing;;
908 rev-list) : plumbing;;
909 rev-parse) : plumbing;;
910 runstatus) : plumbing;;
911 sh-setup) : internal;;
912 shell) : daemon;;
913 show-ref) : plumbing;;
914 send-pack) : plumbing;;
915 show-index) : plumbing;;
916 ssh-*) : transport;;
917 stripspace) : plumbing;;
918 symbolic-ref) : plumbing;;
919 tar-tree) : deprecated;;
920 unpack-file) : plumbing;;
921 unpack-objects) : plumbing;;
922 update-index) : plumbing;;
923 update-ref) : plumbing;;
924 update-server-info) : daemon;;
925 upload-archive) : plumbing;;
926 upload-pack) : plumbing;;
927 write-tree) : plumbing;;
928 var) : infrequent;;
929 verify-pack) : infrequent;;
930 verify-tag) : plumbing;;
931 *) echo $i;;
932 esac
933 done
936 __git_porcelain_commands=
937 __git_compute_porcelain_commands ()
939 __git_compute_all_commands
940 : ${__git_porcelain_commands:=$(__git_list_porcelain_commands)}
943 __git_pretty_aliases ()
945 local i IFS=$'\n'
946 for i in $(git --git-dir="$(__gitdir)" config --get-regexp "pretty\..*" 2>/dev/null); do
947 case "$i" in
948 pretty.*)
949 i="${i#pretty.}"
950 echo "${i/ */}"
952 esac
953 done
956 __git_aliases ()
958 local i IFS=$'\n'
959 for i in $(git --git-dir="$(__gitdir)" config --get-regexp "alias\..*" 2>/dev/null); do
960 case "$i" in
961 alias.*)
962 i="${i#alias.}"
963 echo "${i/ */}"
965 esac
966 done
969 # __git_aliased_command requires 1 argument
970 __git_aliased_command ()
972 local word cmdline=$(git --git-dir="$(__gitdir)" \
973 config --get "alias.$1")
974 for word in $cmdline; do
975 case "$word" in
976 \!gitk|gitk)
977 echo "gitk"
978 return
980 \!*) : shell command alias ;;
981 -*) : option ;;
982 *=*) : setting env ;;
983 git) : git itself ;;
985 echo "$word"
986 return
987 esac
988 done
991 # __git_find_on_cmdline requires 1 argument
992 __git_find_on_cmdline ()
994 local word subcommand c=1 words cword
995 _get_comp_words_by_ref -n =: words cword
996 while [ $c -lt $cword ]; do
997 word="${words[c]}"
998 for subcommand in $1; do
999 if [ "$subcommand" = "$word" ]; then
1000 echo "$subcommand"
1001 return
1003 done
1004 c=$((++c))
1005 done
1008 __git_has_doubledash ()
1010 local c=1 words cword
1011 _get_comp_words_by_ref -n =: words cword
1012 while [ $c -lt $cword ]; do
1013 if [ "--" = "${words[c]}" ]; then
1014 return 0
1016 c=$((++c))
1017 done
1018 return 1
1021 __git_whitespacelist="nowarn warn error error-all fix"
1023 _git_am ()
1025 local cur dir="$(__gitdir)"
1026 _get_comp_words_by_ref -n =: cur
1027 if [ -d "$dir"/rebase-apply ]; then
1028 __gitcomp "--skip --continue --resolved --abort"
1029 return
1031 case "$cur" in
1032 --whitespace=*)
1033 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
1034 return
1036 --*)
1037 __gitcomp "
1038 --3way --committer-date-is-author-date --ignore-date
1039 --ignore-whitespace --ignore-space-change
1040 --interactive --keep --no-utf8 --signoff --utf8
1041 --whitespace= --scissors
1043 return
1044 esac
1045 COMPREPLY=()
1048 _git_apply ()
1050 local cur
1051 _get_comp_words_by_ref -n =: cur
1052 case "$cur" in
1053 --whitespace=*)
1054 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
1055 return
1057 --*)
1058 __gitcomp "
1059 --stat --numstat --summary --check --index
1060 --cached --index-info --reverse --reject --unidiff-zero
1061 --apply --no-add --exclude=
1062 --ignore-whitespace --ignore-space-change
1063 --whitespace= --inaccurate-eof --verbose
1065 return
1066 esac
1067 COMPREPLY=()
1070 _git_add ()
1072 __git_has_doubledash && return
1074 local cur
1075 _get_comp_words_by_ref -n =: cur
1076 case "$cur" in
1077 --*)
1078 __gitcomp "
1079 --interactive --refresh --patch --update --dry-run
1080 --ignore-errors --intent-to-add
1082 return
1083 esac
1084 COMPREPLY=()
1087 _git_archive ()
1089 local cur
1090 _get_comp_words_by_ref -n =: cur
1091 case "$cur" in
1092 --format=*)
1093 __gitcomp "$(git archive --list)" "" "${cur##--format=}"
1094 return
1096 --remote=*)
1097 __gitcomp "$(__git_remotes)" "" "${cur##--remote=}"
1098 return
1100 --*)
1101 __gitcomp "
1102 --format= --list --verbose
1103 --prefix= --remote= --exec=
1105 return
1107 esac
1108 __git_complete_file
1111 _git_bisect ()
1113 __git_has_doubledash && return
1115 local subcommands="start bad good skip reset visualize replay log run"
1116 local subcommand="$(__git_find_on_cmdline "$subcommands")"
1117 if [ -z "$subcommand" ]; then
1118 if [ -f "$(__gitdir)"/BISECT_START ]; then
1119 __gitcomp "$subcommands"
1120 else
1121 __gitcomp "replay start"
1123 return
1126 case "$subcommand" in
1127 bad|good|reset|skip|start)
1128 __gitcomp "$(__git_refs)"
1131 COMPREPLY=()
1133 esac
1136 _git_branch ()
1138 local i c=1 only_local_ref="n" has_r="n" cur words cword
1140 _get_comp_words_by_ref -n =: cur words cword
1141 while [ $c -lt $cword ]; do
1142 i="${words[c]}"
1143 case "$i" in
1144 -d|-m) only_local_ref="y" ;;
1145 -r) has_r="y" ;;
1146 esac
1147 c=$((++c))
1148 done
1150 case "$cur" in
1151 --*)
1152 __gitcomp "
1153 --color --no-color --verbose --abbrev= --no-abbrev
1154 --track --no-track --contains --merged --no-merged
1155 --set-upstream
1159 if [ $only_local_ref = "y" -a $has_r = "n" ]; then
1160 __gitcomp "$(__git_heads)"
1161 else
1162 __gitcomp "$(__git_refs)"
1165 esac
1168 _git_bundle ()
1170 local words cword
1171 _get_comp_words_by_ref -n =: words cword
1172 local cmd="${words[2]}"
1173 case "$cword" in
1175 __gitcomp "create list-heads verify unbundle"
1178 # looking for a file
1181 case "$cmd" in
1182 create)
1183 __git_complete_revlist
1185 esac
1187 esac
1190 _git_checkout ()
1192 __git_has_doubledash && return
1194 local cur
1195 _get_comp_words_by_ref -n =: cur
1196 case "$cur" in
1197 --conflict=*)
1198 __gitcomp "diff3 merge" "" "${cur##--conflict=}"
1200 --*)
1201 __gitcomp "
1202 --quiet --ours --theirs --track --no-track --merge
1203 --conflict= --orphan --patch
1207 # check if --track, --no-track, or --no-guess was specified
1208 # if so, disable DWIM mode
1209 local flags="--track --no-track --no-guess" track=1
1210 if [ -n "$(__git_find_on_cmdline "$flags")" ]; then
1211 track=''
1213 __gitcomp "$(__git_refs '' $track)"
1215 esac
1218 _git_cherry ()
1220 __gitcomp "$(__git_refs)"
1223 _git_cherry_pick ()
1225 local cur
1226 _get_comp_words_by_ref -n =: cur
1227 case "$cur" in
1228 --*)
1229 __gitcomp "--edit --no-commit"
1232 __gitcomp "$(__git_refs)"
1234 esac
1237 _git_clean ()
1239 __git_has_doubledash && return
1241 local cur
1242 _get_comp_words_by_ref -n =: cur
1243 case "$cur" in
1244 --*)
1245 __gitcomp "--dry-run --quiet"
1246 return
1248 esac
1249 COMPREPLY=()
1252 _git_clone ()
1254 local cur
1255 _get_comp_words_by_ref -n =: cur
1256 case "$cur" in
1257 --*)
1258 __gitcomp "
1259 --local
1260 --no-hardlinks
1261 --shared
1262 --reference
1263 --quiet
1264 --no-checkout
1265 --bare
1266 --mirror
1267 --origin
1268 --upload-pack
1269 --template=
1270 --depth
1272 return
1274 esac
1275 COMPREPLY=()
1278 _git_commit ()
1280 __git_has_doubledash && return
1282 local cur
1283 _get_comp_words_by_ref -n =: cur
1284 case "$cur" in
1285 --cleanup=*)
1286 __gitcomp "default strip verbatim whitespace
1287 " "" "${cur##--cleanup=}"
1288 return
1290 --reuse-message=*|--reedit-message=*|\
1291 --fixup=*|--squash=*)
1292 __gitcomp "$(__git_refs)" "" "${cur#*=}"
1293 return
1295 --untracked-files=*)
1296 __gitcomp "all no normal" "" "${cur##--untracked-files=}"
1297 return
1299 --*)
1300 __gitcomp "
1301 --all --author= --signoff --verify --no-verify
1302 --edit --amend --include --only --interactive
1303 --dry-run --reuse-message= --reedit-message=
1304 --reset-author --file= --message= --template=
1305 --cleanup= --untracked-files --untracked-files=
1306 --verbose --quiet --fixup= --squash=
1308 return
1309 esac
1310 COMPREPLY=()
1313 _git_describe ()
1315 local cur
1316 _get_comp_words_by_ref -n =: cur
1317 case "$cur" in
1318 --*)
1319 __gitcomp "
1320 --all --tags --contains --abbrev= --candidates=
1321 --exact-match --debug --long --match --always
1323 return
1324 esac
1325 __gitcomp "$(__git_refs)"
1328 __git_diff_common_options="--stat --numstat --shortstat --summary
1329 --patch-with-stat --name-only --name-status --color
1330 --no-color --color-words --no-renames --check
1331 --full-index --binary --abbrev --diff-filter=
1332 --find-copies-harder
1333 --text --ignore-space-at-eol --ignore-space-change
1334 --ignore-all-space --exit-code --quiet --ext-diff
1335 --no-ext-diff
1336 --no-prefix --src-prefix= --dst-prefix=
1337 --inter-hunk-context=
1338 --patience
1339 --raw
1340 --dirstat --dirstat= --dirstat-by-file
1341 --dirstat-by-file= --cumulative
1344 _git_diff ()
1346 __git_has_doubledash && return
1348 local cur
1349 _get_comp_words_by_ref -n =: cur
1350 case "$cur" in
1351 --*)
1352 __gitcomp "--cached --staged --pickaxe-all --pickaxe-regex
1353 --base --ours --theirs --no-index
1354 $__git_diff_common_options
1356 return
1358 esac
1359 __git_complete_revlist_file
1362 __git_mergetools_common="diffuse ecmerge emerge kdiff3 meld opendiff
1363 tkdiff vimdiff gvimdiff xxdiff araxis p4merge bc3
1366 _git_difftool ()
1368 __git_has_doubledash && return
1370 local cur
1371 _get_comp_words_by_ref -n =: cur
1372 case "$cur" in
1373 --tool=*)
1374 __gitcomp "$__git_mergetools_common kompare" "" "${cur##--tool=}"
1375 return
1377 --*)
1378 __gitcomp "--cached --staged --pickaxe-all --pickaxe-regex
1379 --base --ours --theirs
1380 --no-renames --diff-filter= --find-copies-harder
1381 --relative --ignore-submodules
1382 --tool="
1383 return
1385 esac
1386 __git_complete_file
1389 __git_fetch_options="
1390 --quiet --verbose --append --upload-pack --force --keep --depth=
1391 --tags --no-tags --all --prune --dry-run
1394 _git_fetch ()
1396 local cur
1397 _get_comp_words_by_ref -n =: cur
1398 case "$cur" in
1399 --*)
1400 __gitcomp "$__git_fetch_options"
1401 return
1403 esac
1404 __git_complete_remote_or_refspec
1407 _git_format_patch ()
1409 local cur
1410 _get_comp_words_by_ref -n =: cur
1411 case "$cur" in
1412 --thread=*)
1413 __gitcomp "
1414 deep shallow
1415 " "" "${cur##--thread=}"
1416 return
1418 --*)
1419 __gitcomp "
1420 --stdout --attach --no-attach --thread --thread=
1421 --output-directory
1422 --numbered --start-number
1423 --numbered-files
1424 --keep-subject
1425 --signoff --signature --no-signature
1426 --in-reply-to= --cc=
1427 --full-index --binary
1428 --not --all
1429 --cover-letter
1430 --no-prefix --src-prefix= --dst-prefix=
1431 --inline --suffix= --ignore-if-in-upstream
1432 --subject-prefix=
1434 return
1436 esac
1437 __git_complete_revlist
1440 _git_fsck ()
1442 local cur
1443 _get_comp_words_by_ref -n =: cur
1444 case "$cur" in
1445 --*)
1446 __gitcomp "
1447 --tags --root --unreachable --cache --no-reflogs --full
1448 --strict --verbose --lost-found
1450 return
1452 esac
1453 COMPREPLY=()
1456 _git_gc ()
1458 local cur
1459 _get_comp_words_by_ref -n =: cur
1460 case "$cur" in
1461 --*)
1462 __gitcomp "--prune --aggressive"
1463 return
1465 esac
1466 COMPREPLY=()
1469 _git_gitk ()
1471 _gitk
1474 _git_grep ()
1476 __git_has_doubledash && return
1478 local cur
1479 _get_comp_words_by_ref -n =: cur
1480 case "$cur" in
1481 --*)
1482 __gitcomp "
1483 --cached
1484 --text --ignore-case --word-regexp --invert-match
1485 --full-name
1486 --extended-regexp --basic-regexp --fixed-strings
1487 --files-with-matches --name-only
1488 --files-without-match
1489 --max-depth
1490 --count
1491 --and --or --not --all-match
1493 return
1495 esac
1497 __gitcomp "$(__git_refs)"
1500 _git_help ()
1502 local cur
1503 _get_comp_words_by_ref -n =: cur
1504 case "$cur" in
1505 --*)
1506 __gitcomp "--all --info --man --web"
1507 return
1509 esac
1510 __git_compute_all_commands
1511 __gitcomp "$__git_all_commands $(__git_aliases)
1512 attributes cli core-tutorial cvs-migration
1513 diffcore gitk glossary hooks ignore modules
1514 repository-layout tutorial tutorial-2
1515 workflows
1519 _git_init ()
1521 local cur
1522 _get_comp_words_by_ref -n =: cur
1523 case "$cur" in
1524 --shared=*)
1525 __gitcomp "
1526 false true umask group all world everybody
1527 " "" "${cur##--shared=}"
1528 return
1530 --*)
1531 __gitcomp "--quiet --bare --template= --shared --shared="
1532 return
1534 esac
1535 COMPREPLY=()
1538 _git_ls_files ()
1540 __git_has_doubledash && return
1542 local cur
1543 _get_comp_words_by_ref -n =: cur
1544 case "$cur" in
1545 --*)
1546 __gitcomp "--cached --deleted --modified --others --ignored
1547 --stage --directory --no-empty-directory --unmerged
1548 --killed --exclude= --exclude-from=
1549 --exclude-per-directory= --exclude-standard
1550 --error-unmatch --with-tree= --full-name
1551 --abbrev --ignored --exclude-per-directory
1553 return
1555 esac
1556 COMPREPLY=()
1559 _git_ls_remote ()
1561 __gitcomp "$(__git_remotes)"
1564 _git_ls_tree ()
1566 __git_complete_file
1569 # Options that go well for log, shortlog and gitk
1570 __git_log_common_options="
1571 --not --all
1572 --branches --tags --remotes
1573 --first-parent --merges --no-merges
1574 --max-count=
1575 --max-age= --since= --after=
1576 --min-age= --until= --before=
1577 --min-parents= --max-parents=
1578 --no-min-parents --no-max-parents
1580 # Options that go well for log and gitk (not shortlog)
1581 __git_log_gitk_options="
1582 --dense --sparse --full-history
1583 --simplify-merges --simplify-by-decoration
1584 --left-right
1586 # Options that go well for log and shortlog (not gitk)
1587 __git_log_shortlog_options="
1588 --author= --committer= --grep=
1589 --all-match
1592 __git_log_pretty_formats="oneline short medium full fuller email raw format:"
1593 __git_log_date_formats="relative iso8601 rfc2822 short local default raw"
1595 _git_log ()
1597 __git_has_doubledash && return
1599 local g="$(git rev-parse --git-dir 2>/dev/null)"
1600 local merge=""
1601 if [ -f "$g/MERGE_HEAD" ]; then
1602 merge="--merge"
1604 local cur
1605 _get_comp_words_by_ref -n =: cur
1606 case "$cur" in
1607 --pretty=*)
1608 __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
1609 " "" "${cur##--pretty=}"
1610 return
1612 --format=*)
1613 __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
1614 " "" "${cur##--format=}"
1615 return
1617 --date=*)
1618 __gitcomp "$__git_log_date_formats" "" "${cur##--date=}"
1619 return
1621 --decorate=*)
1622 __gitcomp "long short" "" "${cur##--decorate=}"
1623 return
1625 --*)
1626 __gitcomp "
1627 $__git_log_common_options
1628 $__git_log_shortlog_options
1629 $__git_log_gitk_options
1630 --root --topo-order --date-order --reverse
1631 --follow --full-diff
1632 --abbrev-commit --abbrev=
1633 --relative-date --date=
1634 --pretty= --format= --oneline
1635 --cherry-pick
1636 --graph
1637 --decorate --decorate=
1638 --walk-reflogs
1639 --parents --children
1640 $merge
1641 $__git_diff_common_options
1642 --pickaxe-all --pickaxe-regex
1644 return
1646 esac
1647 __git_complete_revlist
1650 __git_merge_options="
1651 --no-commit --no-stat --log --no-log --squash --strategy
1652 --commit --stat --no-squash --ff --no-ff --ff-only
1655 _git_merge ()
1657 __git_complete_strategy && return
1659 local cur
1660 _get_comp_words_by_ref -n =: cur
1661 case "$cur" in
1662 --*)
1663 __gitcomp "$__git_merge_options"
1664 return
1665 esac
1666 __gitcomp "$(__git_refs)"
1669 _git_mergetool ()
1671 local cur
1672 _get_comp_words_by_ref -n =: cur
1673 case "$cur" in
1674 --tool=*)
1675 __gitcomp "$__git_mergetools_common tortoisemerge" "" "${cur##--tool=}"
1676 return
1678 --*)
1679 __gitcomp "--tool="
1680 return
1682 esac
1683 COMPREPLY=()
1686 _git_merge_base ()
1688 __gitcomp "$(__git_refs)"
1691 _git_mv ()
1693 local cur
1694 _get_comp_words_by_ref -n =: cur
1695 case "$cur" in
1696 --*)
1697 __gitcomp "--dry-run"
1698 return
1700 esac
1701 COMPREPLY=()
1704 _git_name_rev ()
1706 __gitcomp "--tags --all --stdin"
1709 _git_notes ()
1711 local subcommands='add append copy edit list prune remove show'
1712 local subcommand="$(__git_find_on_cmdline "$subcommands")"
1713 local cur words cword
1714 _get_comp_words_by_ref -n =: cur words cword
1716 case "$subcommand,$cur" in
1717 ,--*)
1718 __gitcomp '--ref'
1721 case "${words[cword-1]}" in
1722 --ref)
1723 __gitcomp "$(__git_refs)"
1726 __gitcomp "$subcommands --ref"
1728 esac
1730 add,--reuse-message=*|append,--reuse-message=*|\
1731 add,--reedit-message=*|append,--reedit-message=*)
1732 __gitcomp "$(__git_refs)" "" "${cur#*=}"
1734 add,--*|append,--*)
1735 __gitcomp '--file= --message= --reedit-message=
1736 --reuse-message='
1738 copy,--*)
1739 __gitcomp '--stdin'
1741 prune,--*)
1742 __gitcomp '--dry-run --verbose'
1744 prune,*)
1747 case "${words[cword-1]}" in
1748 -m|-F)
1751 __gitcomp "$(__git_refs)"
1753 esac
1755 esac
1758 _git_pull ()
1760 __git_complete_strategy && return
1762 local cur
1763 _get_comp_words_by_ref -n =: cur
1764 case "$cur" in
1765 --*)
1766 __gitcomp "
1767 --rebase --no-rebase
1768 $__git_merge_options
1769 $__git_fetch_options
1771 return
1773 esac
1774 __git_complete_remote_or_refspec
1777 _git_push ()
1779 local cur prev
1780 _get_comp_words_by_ref -n =: cur prev
1781 case "$prev" in
1782 --repo)
1783 __gitcomp "$(__git_remotes)"
1784 return
1785 esac
1786 case "$cur" in
1787 --repo=*)
1788 __gitcomp "$(__git_remotes)" "" "${cur##--repo=}"
1789 return
1791 --*)
1792 __gitcomp "
1793 --all --mirror --tags --dry-run --force --verbose
1794 --receive-pack= --repo=
1796 return
1798 esac
1799 __git_complete_remote_or_refspec
1802 _git_rebase ()
1804 local dir="$(__gitdir)"
1805 local cur
1806 _get_comp_words_by_ref -n =: cur
1807 if [ -d "$dir"/rebase-apply ] || [ -d "$dir"/rebase-merge ]; then
1808 __gitcomp "--continue --skip --abort"
1809 return
1811 __git_complete_strategy && return
1812 case "$cur" in
1813 --whitespace=*)
1814 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
1815 return
1817 --*)
1818 __gitcomp "
1819 --onto --merge --strategy --interactive
1820 --preserve-merges --stat --no-stat
1821 --committer-date-is-author-date --ignore-date
1822 --ignore-whitespace --whitespace=
1823 --autosquash
1826 return
1827 esac
1828 __gitcomp "$(__git_refs)"
1831 _git_reflog ()
1833 local subcommands="show delete expire"
1834 local subcommand="$(__git_find_on_cmdline "$subcommands")"
1836 if [ -z "$subcommand" ]; then
1837 __gitcomp "$subcommands"
1838 else
1839 __gitcomp "$(__git_refs)"
1843 __git_send_email_confirm_options="always never auto cc compose"
1844 __git_send_email_suppresscc_options="author self cc bodycc sob cccmd body all"
1846 _git_send_email ()
1848 local cur
1849 _get_comp_words_by_ref -n =: cur
1850 case "$cur" in
1851 --confirm=*)
1852 __gitcomp "
1853 $__git_send_email_confirm_options
1854 " "" "${cur##--confirm=}"
1855 return
1857 --suppress-cc=*)
1858 __gitcomp "
1859 $__git_send_email_suppresscc_options
1860 " "" "${cur##--suppress-cc=}"
1862 return
1864 --smtp-encryption=*)
1865 __gitcomp "ssl tls" "" "${cur##--smtp-encryption=}"
1866 return
1868 --*)
1869 __gitcomp "--annotate --bcc --cc --cc-cmd --chain-reply-to
1870 --compose --confirm= --dry-run --envelope-sender
1871 --from --identity
1872 --in-reply-to --no-chain-reply-to --no-signed-off-by-cc
1873 --no-suppress-from --no-thread --quiet
1874 --signed-off-by-cc --smtp-pass --smtp-server
1875 --smtp-server-port --smtp-encryption= --smtp-user
1876 --subject --suppress-cc= --suppress-from --thread --to
1877 --validate --no-validate"
1878 return
1880 esac
1881 COMPREPLY=()
1884 _git_stage ()
1886 _git_add
1889 __git_config_get_set_variables ()
1891 local words cword
1892 _get_comp_words_by_ref -n =: words cword
1893 local prevword word config_file= c=$cword
1894 while [ $c -gt 1 ]; do
1895 word="${words[c]}"
1896 case "$word" in
1897 --global|--system|--file=*)
1898 config_file="$word"
1899 break
1901 -f|--file)
1902 config_file="$word $prevword"
1903 break
1905 esac
1906 prevword=$word
1907 c=$((--c))
1908 done
1910 git --git-dir="$(__gitdir)" config $config_file --list 2>/dev/null |
1911 while read line
1913 case "$line" in
1914 *.*=*)
1915 echo "${line/=*/}"
1917 esac
1918 done
1921 _git_config ()
1923 local cur prev
1924 _get_comp_words_by_ref -n =: cur prev
1925 case "$prev" in
1926 branch.*.remote)
1927 __gitcomp "$(__git_remotes)"
1928 return
1930 branch.*.merge)
1931 __gitcomp "$(__git_refs)"
1932 return
1934 remote.*.fetch)
1935 local remote="${prev#remote.}"
1936 remote="${remote%.fetch}"
1937 __gitcomp "$(__git_refs_remotes "$remote")"
1938 return
1940 remote.*.push)
1941 local remote="${prev#remote.}"
1942 remote="${remote%.push}"
1943 __gitcomp "$(git --git-dir="$(__gitdir)" \
1944 for-each-ref --format='%(refname):%(refname)' \
1945 refs/heads)"
1946 return
1948 pull.twohead|pull.octopus)
1949 __git_compute_merge_strategies
1950 __gitcomp "$__git_merge_strategies"
1951 return
1953 color.branch|color.diff|color.interactive|\
1954 color.showbranch|color.status|color.ui)
1955 __gitcomp "always never auto"
1956 return
1958 color.pager)
1959 __gitcomp "false true"
1960 return
1962 color.*.*)
1963 __gitcomp "
1964 normal black red green yellow blue magenta cyan white
1965 bold dim ul blink reverse
1967 return
1969 help.format)
1970 __gitcomp "man info web html"
1971 return
1973 log.date)
1974 __gitcomp "$__git_log_date_formats"
1975 return
1977 sendemail.aliasesfiletype)
1978 __gitcomp "mutt mailrc pine elm gnus"
1979 return
1981 sendemail.confirm)
1982 __gitcomp "$__git_send_email_confirm_options"
1983 return
1985 sendemail.suppresscc)
1986 __gitcomp "$__git_send_email_suppresscc_options"
1987 return
1989 --get|--get-all|--unset|--unset-all)
1990 __gitcomp "$(__git_config_get_set_variables)"
1991 return
1993 *.*)
1994 COMPREPLY=()
1995 return
1997 esac
1998 case "$cur" in
1999 --*)
2000 __gitcomp "
2001 --global --system --file=
2002 --list --replace-all
2003 --get --get-all --get-regexp
2004 --add --unset --unset-all
2005 --remove-section --rename-section
2007 return
2009 branch.*.*)
2010 local pfx="${cur%.*}."
2011 cur="${cur##*.}"
2012 __gitcomp "remote merge mergeoptions rebase" "$pfx" "$cur"
2013 return
2015 branch.*)
2016 local pfx="${cur%.*}."
2017 cur="${cur#*.}"
2018 __gitcomp "$(__git_heads)" "$pfx" "$cur" "."
2019 return
2021 guitool.*.*)
2022 local pfx="${cur%.*}."
2023 cur="${cur##*.}"
2024 __gitcomp "
2025 argprompt cmd confirm needsfile noconsole norescan
2026 prompt revprompt revunmerged title
2027 " "$pfx" "$cur"
2028 return
2030 difftool.*.*)
2031 local pfx="${cur%.*}."
2032 cur="${cur##*.}"
2033 __gitcomp "cmd path" "$pfx" "$cur"
2034 return
2036 man.*.*)
2037 local pfx="${cur%.*}."
2038 cur="${cur##*.}"
2039 __gitcomp "cmd path" "$pfx" "$cur"
2040 return
2042 mergetool.*.*)
2043 local pfx="${cur%.*}."
2044 cur="${cur##*.}"
2045 __gitcomp "cmd path trustExitCode" "$pfx" "$cur"
2046 return
2048 pager.*)
2049 local pfx="${cur%.*}."
2050 cur="${cur#*.}"
2051 __git_compute_all_commands
2052 __gitcomp "$__git_all_commands" "$pfx" "$cur"
2053 return
2055 remote.*.*)
2056 local pfx="${cur%.*}."
2057 cur="${cur##*.}"
2058 __gitcomp "
2059 url proxy fetch push mirror skipDefaultUpdate
2060 receivepack uploadpack tagopt pushurl
2061 " "$pfx" "$cur"
2062 return
2064 remote.*)
2065 local pfx="${cur%.*}."
2066 cur="${cur#*.}"
2067 __gitcomp "$(__git_remotes)" "$pfx" "$cur" "."
2068 return
2070 url.*.*)
2071 local pfx="${cur%.*}."
2072 cur="${cur##*.}"
2073 __gitcomp "insteadOf pushInsteadOf" "$pfx" "$cur"
2074 return
2076 esac
2077 __gitcomp "
2078 add.ignoreErrors
2079 advice.commitBeforeMerge
2080 advice.detachedHead
2081 advice.implicitIdentity
2082 advice.pushNonFastForward
2083 advice.resolveConflict
2084 advice.statusHints
2085 alias.
2086 am.keepcr
2087 apply.ignorewhitespace
2088 apply.whitespace
2089 branch.autosetupmerge
2090 branch.autosetuprebase
2091 browser.
2092 clean.requireForce
2093 color.branch
2094 color.branch.current
2095 color.branch.local
2096 color.branch.plain
2097 color.branch.remote
2098 color.decorate.HEAD
2099 color.decorate.branch
2100 color.decorate.remoteBranch
2101 color.decorate.stash
2102 color.decorate.tag
2103 color.diff
2104 color.diff.commit
2105 color.diff.frag
2106 color.diff.func
2107 color.diff.meta
2108 color.diff.new
2109 color.diff.old
2110 color.diff.plain
2111 color.diff.whitespace
2112 color.grep
2113 color.grep.context
2114 color.grep.filename
2115 color.grep.function
2116 color.grep.linenumber
2117 color.grep.match
2118 color.grep.selected
2119 color.grep.separator
2120 color.interactive
2121 color.interactive.error
2122 color.interactive.header
2123 color.interactive.help
2124 color.interactive.prompt
2125 color.pager
2126 color.showbranch
2127 color.status
2128 color.status.added
2129 color.status.changed
2130 color.status.header
2131 color.status.nobranch
2132 color.status.untracked
2133 color.status.updated
2134 color.ui
2135 commit.status
2136 commit.template
2137 core.abbrevguard
2138 core.askpass
2139 core.attributesfile
2140 core.autocrlf
2141 core.bare
2142 core.bigFileThreshold
2143 core.compression
2144 core.createObject
2145 core.deltaBaseCacheLimit
2146 core.editor
2147 core.eol
2148 core.excludesfile
2149 core.fileMode
2150 core.fsyncobjectfiles
2151 core.gitProxy
2152 core.ignoreCygwinFSTricks
2153 core.ignoreStat
2154 core.ignorecase
2155 core.logAllRefUpdates
2156 core.loosecompression
2157 core.notesRef
2158 core.packedGitLimit
2159 core.packedGitWindowSize
2160 core.pager
2161 core.preferSymlinkRefs
2162 core.preloadindex
2163 core.quotepath
2164 core.repositoryFormatVersion
2165 core.safecrlf
2166 core.sharedRepository
2167 core.sparseCheckout
2168 core.symlinks
2169 core.trustctime
2170 core.warnAmbiguousRefs
2171 core.whitespace
2172 core.worktree
2173 diff.autorefreshindex
2174 diff.external
2175 diff.ignoreSubmodules
2176 diff.mnemonicprefix
2177 diff.noprefix
2178 diff.renameLimit
2179 diff.renames
2180 diff.suppressBlankEmpty
2181 diff.tool
2182 diff.wordRegex
2183 difftool.
2184 difftool.prompt
2185 fetch.recurseSubmodules
2186 fetch.unpackLimit
2187 format.attach
2188 format.cc
2189 format.headers
2190 format.numbered
2191 format.pretty
2192 format.signature
2193 format.signoff
2194 format.subjectprefix
2195 format.suffix
2196 format.thread
2197 format.to
2199 gc.aggressiveWindow
2200 gc.auto
2201 gc.autopacklimit
2202 gc.packrefs
2203 gc.pruneexpire
2204 gc.reflogexpire
2205 gc.reflogexpireunreachable
2206 gc.rerereresolved
2207 gc.rerereunresolved
2208 gitcvs.allbinary
2209 gitcvs.commitmsgannotation
2210 gitcvs.dbTableNamePrefix
2211 gitcvs.dbdriver
2212 gitcvs.dbname
2213 gitcvs.dbpass
2214 gitcvs.dbuser
2215 gitcvs.enabled
2216 gitcvs.logfile
2217 gitcvs.usecrlfattr
2218 guitool.
2219 gui.blamehistoryctx
2220 gui.commitmsgwidth
2221 gui.copyblamethreshold
2222 gui.diffcontext
2223 gui.encoding
2224 gui.fastcopyblame
2225 gui.matchtrackingbranch
2226 gui.newbranchtemplate
2227 gui.pruneduringfetch
2228 gui.spellingdictionary
2229 gui.trustmtime
2230 help.autocorrect
2231 help.browser
2232 help.format
2233 http.lowSpeedLimit
2234 http.lowSpeedTime
2235 http.maxRequests
2236 http.minSessions
2237 http.noEPSV
2238 http.postBuffer
2239 http.proxy
2240 http.sslCAInfo
2241 http.sslCAPath
2242 http.sslCert
2243 http.sslCertPasswordProtected
2244 http.sslKey
2245 http.sslVerify
2246 http.useragent
2247 i18n.commitEncoding
2248 i18n.logOutputEncoding
2249 imap.authMethod
2250 imap.folder
2251 imap.host
2252 imap.pass
2253 imap.port
2254 imap.preformattedHTML
2255 imap.sslverify
2256 imap.tunnel
2257 imap.user
2258 init.templatedir
2259 instaweb.browser
2260 instaweb.httpd
2261 instaweb.local
2262 instaweb.modulepath
2263 instaweb.port
2264 interactive.singlekey
2265 log.date
2266 log.decorate
2267 log.showroot
2268 mailmap.file
2269 man.
2270 man.viewer
2271 merge.
2272 merge.conflictstyle
2273 merge.log
2274 merge.renameLimit
2275 merge.renormalize
2276 merge.stat
2277 merge.tool
2278 merge.verbosity
2279 mergetool.
2280 mergetool.keepBackup
2281 mergetool.keepTemporaries
2282 mergetool.prompt
2283 notes.displayRef
2284 notes.rewrite.
2285 notes.rewrite.amend
2286 notes.rewrite.rebase
2287 notes.rewriteMode
2288 notes.rewriteRef
2289 pack.compression
2290 pack.deltaCacheLimit
2291 pack.deltaCacheSize
2292 pack.depth
2293 pack.indexVersion
2294 pack.packSizeLimit
2295 pack.threads
2296 pack.window
2297 pack.windowMemory
2298 pager.
2299 pretty.
2300 pull.octopus
2301 pull.twohead
2302 push.default
2303 rebase.autosquash
2304 rebase.stat
2305 receive.autogc
2306 receive.denyCurrentBranch
2307 receive.denyDeleteCurrent
2308 receive.denyDeletes
2309 receive.denyNonFastForwards
2310 receive.fsckObjects
2311 receive.unpackLimit
2312 receive.updateserverinfo
2313 remotes.
2314 repack.usedeltabaseoffset
2315 rerere.autoupdate
2316 rerere.enabled
2317 sendemail.
2318 sendemail.aliasesfile
2319 sendemail.aliasfiletype
2320 sendemail.bcc
2321 sendemail.cc
2322 sendemail.cccmd
2323 sendemail.chainreplyto
2324 sendemail.confirm
2325 sendemail.envelopesender
2326 sendemail.from
2327 sendemail.identity
2328 sendemail.multiedit
2329 sendemail.signedoffbycc
2330 sendemail.smtpdomain
2331 sendemail.smtpencryption
2332 sendemail.smtppass
2333 sendemail.smtpserver
2334 sendemail.smtpserveroption
2335 sendemail.smtpserverport
2336 sendemail.smtpuser
2337 sendemail.suppresscc
2338 sendemail.suppressfrom
2339 sendemail.thread
2340 sendemail.to
2341 sendemail.validate
2342 showbranch.default
2343 status.relativePaths
2344 status.showUntrackedFiles
2345 status.submodulesummary
2346 submodule.
2347 tar.umask
2348 transfer.unpackLimit
2349 url.
2350 user.email
2351 user.name
2352 user.signingkey
2353 web.browser
2354 branch. remote.
2358 _git_remote ()
2360 local subcommands="add rename rm show prune update set-head"
2361 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2362 if [ -z "$subcommand" ]; then
2363 __gitcomp "$subcommands"
2364 return
2367 case "$subcommand" in
2368 rename|rm|show|prune)
2369 __gitcomp "$(__git_remotes)"
2371 update)
2372 local i c='' IFS=$'\n'
2373 for i in $(git --git-dir="$(__gitdir)" config --get-regexp "remotes\..*" 2>/dev/null); do
2374 i="${i#remotes.}"
2375 c="$c ${i/ */}"
2376 done
2377 __gitcomp "$c"
2380 COMPREPLY=()
2382 esac
2385 _git_replace ()
2387 __gitcomp "$(__git_refs)"
2390 _git_reset ()
2392 __git_has_doubledash && return
2394 local cur
2395 _get_comp_words_by_ref -n =: cur
2396 case "$cur" in
2397 --*)
2398 __gitcomp "--merge --mixed --hard --soft --patch"
2399 return
2401 esac
2402 __gitcomp "$(__git_refs)"
2405 _git_revert ()
2407 local cur
2408 _get_comp_words_by_ref -n =: cur
2409 case "$cur" in
2410 --*)
2411 __gitcomp "--edit --mainline --no-edit --no-commit --signoff"
2412 return
2414 esac
2415 __gitcomp "$(__git_refs)"
2418 _git_rm ()
2420 __git_has_doubledash && return
2422 local cur
2423 _get_comp_words_by_ref -n =: cur
2424 case "$cur" in
2425 --*)
2426 __gitcomp "--cached --dry-run --ignore-unmatch --quiet"
2427 return
2429 esac
2430 COMPREPLY=()
2433 _git_shortlog ()
2435 __git_has_doubledash && return
2437 local cur
2438 _get_comp_words_by_ref -n =: cur
2439 case "$cur" in
2440 --*)
2441 __gitcomp "
2442 $__git_log_common_options
2443 $__git_log_shortlog_options
2444 --numbered --summary
2446 return
2448 esac
2449 __git_complete_revlist
2452 _git_show ()
2454 __git_has_doubledash && return
2456 local cur
2457 _get_comp_words_by_ref -n =: cur
2458 case "$cur" in
2459 --pretty=*)
2460 __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
2461 " "" "${cur##--pretty=}"
2462 return
2464 --format=*)
2465 __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
2466 " "" "${cur##--format=}"
2467 return
2469 --*)
2470 __gitcomp "--pretty= --format= --abbrev-commit --oneline
2471 $__git_diff_common_options
2473 return
2475 esac
2476 __git_complete_file
2479 _git_show_branch ()
2481 local cur
2482 _get_comp_words_by_ref -n =: cur
2483 case "$cur" in
2484 --*)
2485 __gitcomp "
2486 --all --remotes --topo-order --current --more=
2487 --list --independent --merge-base --no-name
2488 --color --no-color
2489 --sha1-name --sparse --topics --reflog
2491 return
2493 esac
2494 __git_complete_revlist
2497 _git_stash ()
2499 local cur
2500 _get_comp_words_by_ref -n =: cur
2501 local save_opts='--keep-index --no-keep-index --quiet --patch'
2502 local subcommands='save list show apply clear drop pop create branch'
2503 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2504 if [ -z "$subcommand" ]; then
2505 case "$cur" in
2506 --*)
2507 __gitcomp "$save_opts"
2510 if [ -z "$(__git_find_on_cmdline "$save_opts")" ]; then
2511 __gitcomp "$subcommands"
2512 else
2513 COMPREPLY=()
2516 esac
2517 else
2518 case "$subcommand,$cur" in
2519 save,--*)
2520 __gitcomp "$save_opts"
2522 apply,--*|pop,--*)
2523 __gitcomp "--index --quiet"
2525 show,--*|drop,--*|branch,--*)
2526 COMPREPLY=()
2528 show,*|apply,*|drop,*|pop,*|branch,*)
2529 __gitcomp "$(git --git-dir="$(__gitdir)" stash list \
2530 | sed -n -e 's/:.*//p')"
2533 COMPREPLY=()
2535 esac
2539 _git_submodule ()
2541 __git_has_doubledash && return
2543 local subcommands="add status init update summary foreach sync"
2544 if [ -z "$(__git_find_on_cmdline "$subcommands")" ]; then
2545 local cur
2546 _get_comp_words_by_ref -n =: cur
2547 case "$cur" in
2548 --*)
2549 __gitcomp "--quiet --cached"
2552 __gitcomp "$subcommands"
2554 esac
2555 return
2559 _git_svn ()
2561 local subcommands="
2562 init fetch clone rebase dcommit log find-rev
2563 set-tree commit-diff info create-ignore propget
2564 proplist show-ignore show-externals branch tag blame
2565 migrate mkdirs reset gc
2567 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2568 if [ -z "$subcommand" ]; then
2569 __gitcomp "$subcommands"
2570 else
2571 local remote_opts="--username= --config-dir= --no-auth-cache"
2572 local fc_opts="
2573 --follow-parent --authors-file= --repack=
2574 --no-metadata --use-svm-props --use-svnsync-props
2575 --log-window-size= --no-checkout --quiet
2576 --repack-flags --use-log-author --localtime
2577 --ignore-paths= $remote_opts
2579 local init_opts="
2580 --template= --shared= --trunk= --tags=
2581 --branches= --stdlayout --minimize-url
2582 --no-metadata --use-svm-props --use-svnsync-props
2583 --rewrite-root= --prefix= --use-log-author
2584 --add-author-from $remote_opts
2586 local cmt_opts="
2587 --edit --rmdir --find-copies-harder --copy-similarity=
2590 local cur
2591 _get_comp_words_by_ref -n =: cur
2592 case "$subcommand,$cur" in
2593 fetch,--*)
2594 __gitcomp "--revision= --fetch-all $fc_opts"
2596 clone,--*)
2597 __gitcomp "--revision= $fc_opts $init_opts"
2599 init,--*)
2600 __gitcomp "$init_opts"
2602 dcommit,--*)
2603 __gitcomp "
2604 --merge --strategy= --verbose --dry-run
2605 --fetch-all --no-rebase --commit-url
2606 --revision $cmt_opts $fc_opts
2609 set-tree,--*)
2610 __gitcomp "--stdin $cmt_opts $fc_opts"
2612 create-ignore,--*|propget,--*|proplist,--*|show-ignore,--*|\
2613 show-externals,--*|mkdirs,--*)
2614 __gitcomp "--revision="
2616 log,--*)
2617 __gitcomp "
2618 --limit= --revision= --verbose --incremental
2619 --oneline --show-commit --non-recursive
2620 --authors-file= --color
2623 rebase,--*)
2624 __gitcomp "
2625 --merge --verbose --strategy= --local
2626 --fetch-all --dry-run $fc_opts
2629 commit-diff,--*)
2630 __gitcomp "--message= --file= --revision= $cmt_opts"
2632 info,--*)
2633 __gitcomp "--url"
2635 branch,--*)
2636 __gitcomp "--dry-run --message --tag"
2638 tag,--*)
2639 __gitcomp "--dry-run --message"
2641 blame,--*)
2642 __gitcomp "--git-format"
2644 migrate,--*)
2645 __gitcomp "
2646 --config-dir= --ignore-paths= --minimize
2647 --no-auth-cache --username=
2650 reset,--*)
2651 __gitcomp "--revision= --parent"
2654 COMPREPLY=()
2656 esac
2660 _git_tag ()
2662 local i c=1 f=0
2663 local words cword prev
2664 _get_comp_words_by_ref -n =: words cword prev
2665 while [ $c -lt $cword ]; do
2666 i="${words[c]}"
2667 case "$i" in
2668 -d|-v)
2669 __gitcomp "$(__git_tags)"
2670 return
2675 esac
2676 c=$((++c))
2677 done
2679 case "$prev" in
2680 -m|-F)
2681 COMPREPLY=()
2683 -*|tag)
2684 if [ $f = 1 ]; then
2685 __gitcomp "$(__git_tags)"
2686 else
2687 COMPREPLY=()
2691 __gitcomp "$(__git_refs)"
2693 esac
2696 _git_whatchanged ()
2698 _git_log
2701 _git ()
2703 local i c=1 command __git_dir
2705 if [[ -n ${ZSH_VERSION-} ]]; then
2706 emulate -L bash
2707 setopt KSH_TYPESET
2710 local cur words cword
2711 _get_comp_words_by_ref -n =: cur words cword
2712 while [ $c -lt $cword ]; do
2713 i="${words[c]}"
2714 case "$i" in
2715 --git-dir=*) __git_dir="${i#--git-dir=}" ;;
2716 --bare) __git_dir="." ;;
2717 --version|-p|--paginate) ;;
2718 --help) command="help"; break ;;
2719 *) command="$i"; break ;;
2720 esac
2721 c=$((++c))
2722 done
2724 if [ -z "$command" ]; then
2725 case "$cur" in
2726 --*) __gitcomp "
2727 --paginate
2728 --no-pager
2729 --git-dir=
2730 --bare
2731 --version
2732 --exec-path
2733 --html-path
2734 --work-tree=
2735 --help
2738 *) __git_compute_porcelain_commands
2739 __gitcomp "$__git_porcelain_commands $(__git_aliases)" ;;
2740 esac
2741 return
2744 local completion_func="_git_${command//-/_}"
2745 declare -f $completion_func >/dev/null && $completion_func && return
2747 local expansion=$(__git_aliased_command "$command")
2748 if [ -n "$expansion" ]; then
2749 completion_func="_git_${expansion//-/_}"
2750 declare -f $completion_func >/dev/null && $completion_func
2754 _gitk ()
2756 if [[ -n ${ZSH_VERSION-} ]]; then
2757 emulate -L bash
2758 setopt KSH_TYPESET
2761 __git_has_doubledash && return
2763 local cur
2764 local g="$(__gitdir)"
2765 local merge=""
2766 if [ -f "$g/MERGE_HEAD" ]; then
2767 merge="--merge"
2769 _get_comp_words_by_ref -n =: cur
2770 case "$cur" in
2771 --*)
2772 __gitcomp "
2773 $__git_log_common_options
2774 $__git_log_gitk_options
2775 $merge
2777 return
2779 esac
2780 __git_complete_revlist
2783 complete -o bashdefault -o default -o nospace -F _git git 2>/dev/null \
2784 || complete -o default -o nospace -F _git git
2785 complete -o bashdefault -o default -o nospace -F _gitk gitk 2>/dev/null \
2786 || complete -o default -o nospace -F _gitk gitk
2788 # The following are necessary only for Cygwin, and only are needed
2789 # when the user has tab-completed the executable name and consequently
2790 # included the '.exe' suffix.
2792 if [ Cygwin = "$(uname -o 2>/dev/null)" ]; then
2793 complete -o bashdefault -o default -o nospace -F _git git.exe 2>/dev/null \
2794 || complete -o default -o nospace -F _git git.exe
2797 if [[ -n ${ZSH_VERSION-} ]]; then
2798 shopt () {
2799 local option
2800 if [ $# -ne 2 ]; then
2801 echo "USAGE: $0 (-q|-s|-u) <option>" >&2
2802 return 1
2804 case "$2" in
2805 nullglob)
2806 option="$2"
2809 echo "$0: invalid option: $2" >&2
2810 return 1
2811 esac
2812 case "$1" in
2813 -q) setopt | grep -q "$option" ;;
2814 -u) unsetopt "$option" ;;
2815 -s) setopt "$option" ;;
2817 echo "$0: invalid flag: $1" >&2
2818 return 1
2819 esac