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
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
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
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:
80 case "$COMP_WORDBREAKS" in
82 *) COMP_WORDBREAKS
="$COMP_WORDBREAKS:"
85 # __gitdir accepts 0 or 1 arguments (i.e., location)
86 # returns location of .git repo
89 if [ -z "${1-}" ]; then
90 if [ -n "${__git_dir-}" ]; then
92 elif [ -d .git
]; then
95 git rev-parse
--git-dir 2>/dev
/null
97 elif [ -d "$1/.git" ]; then
104 # stores the divergence from upstream in $p
105 # used by GIT_PS1_SHOWUPSTREAM
106 __git_ps1_show_upstream
()
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
116 GIT_PS1_SHOWUPSTREAM
="$value"
117 if [[ -z "${GIT_PS1_SHOWUPSTREAM}" ]]; then
123 svn_remote
[ $
((${#svn_remote[@]} + 1)) ]="$value"
124 svn_url_pattern
+="\\|$value"
125 upstream
=svn
+git
# default upstream is SVN if available, else git
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
133 git|svn
) upstream
="$option" ;;
134 verbose
) verbose
=1 ;;
141 git
) upstream
="@{upstream}" ;;
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]}}
155 if [[ -z "$svn_upstream" ]]; then
156 # default branch name for checkouts with no layout:
157 upstream
=${GIT_SVN_ID:-git-svn}
159 upstream
=${svn_upstream#/}
161 elif [[ "svn+git" = "$upstream" ]]; then
162 upstream
="@{upstream}"
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)"
172 # produce equivalent output to --count for older versions of git
174 if commits
="$(git rev-list --left-right "$upstream"...HEAD 2>/dev/null)"
176 local commit behind
=0 ahead
=0
177 for commit
in $commits
186 count
="$behind $ahead"
192 # calculate the result
193 if [[ -z "$verbose" ]]; then
197 "0 0") # equal to upstream
199 "0 "*) # ahead of upstream
201 *" 0") # behind upstream
203 *) # diverged from upstream
210 "0 0") # equal to upstream
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% *}" ;;
224 # __git_ps1 accepts 0 or 1 arguments (i.e., format string)
225 # returns text to add to bash PS1 prompt (includes branch name)
228 local g
="$(__gitdir)"
232 if [ -f "$g/rebase-merge/interactive" ]; then
234 b
="$(cat "$g/rebase-merge
/head-name
")"
235 elif [ -d "$g/rebase-merge" ]; then
237 b
="$(cat "$g/rebase-merge
/head-name
")"
239 if [ -d "$g/rebase-apply" ]; then
240 if [ -f "$g/rebase-apply/rebasing" ]; then
242 elif [ -f "$g/rebase-apply/applying" ]; then
247 elif [ -f "$g/MERGE_HEAD" ]; then
249 elif [ -f "$g/CHERRY_PICK_HEAD" ]; then
251 elif [ -f "$g/BISECT_LOG" ]; then
255 b
="$(git symbolic-ref HEAD 2>/dev/null)" ||
{
258 case "${GIT_PS1_DESCRIBE_STYLE-}" in
260 git describe --contains HEAD ;;
262 git describe --contains --all HEAD ;;
266 git describe --tags --exact-match HEAD ;;
267 esac 2>/dev/null)" ||
269 b
="$(cut -c1-7 "$g/HEAD
" 2>/dev/null)..." ||
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
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
="+"
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
309 if [ -n "${GIT_PS1_SHOWUPSTREAM-}" ]; then
310 __git_ps1_show_upstream
315 printf "${1:- (%s)}" "$c${b##refs/heads/}${f:+ $f}$r$p"
319 # __gitcomp_1 requires 2 arguments
322 local c IFS
=' '$
'\t'$
'\n'
325 --*=*) printf %s$
'\n' "$c$2" ;;
326 *.
) printf %s$
'\n' "$c$2" ;;
327 *) printf %s$
'\n' "$c$2 " ;;
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)
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/
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
369 # The argument should be a collection of characters from the list of
370 # word completion separators (COMP_WORDBREAKS) to treat as ordinary
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]}"
391 if [ -z "$exclude" ]; then
392 words_
=("${COMP_WORDS[@]}")
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.
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
413 words_
[$j]=${words_[j]}${COMP_WORDS[i]}
414 if [ $i = $COMP_CWORD ]; then
417 if (($i < ${#COMP_WORDS[@]} - 1)); then
424 words_
[$j]=${words_[j]}${COMP_WORDS[i]}
425 if [ $i = $COMP_CWORD ]; then
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
440 __git_reassemble_comp_words_by_ref
"$exclude"
441 cur_
=${words_[cword_]}
442 while [ $# -gt 0 ]; do
448 prev
=${words_[$cword_-1]}
451 words
=("${words_[@]}")
461 _get_comp_words_by_ref
()
463 while [ $# -gt 0 ]; do
466 cur
=${COMP_WORDS[COMP_CWORD]}
469 prev
=${COMP_WORDS[COMP_CWORD-1]}
472 words
=("${COMP_WORDS[@]}")
478 # assume COMP_WORDBREAKS is already set sanely
488 # __gitcomp accepts 1, 2, 3, or 4 arguments
489 # generates completion reply with compgen
493 _get_comp_words_by_ref
-n =: cur
494 if [ $# -gt 2 ]; then
503 COMPREPLY
=($
(compgen
-P "${2-}" \
504 -W "$(__gitcomp_1 "${1-}" "${4-}")" \
510 # __git_heads accepts 0 or 1 arguments (to pass to __gitdir)
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)' \
519 for i
in $
(git ls-remote
"${1-}" 2>/dev
/null
); do
520 case "$is_hash,$i" in
523 n
,refs
/heads
/*) is_hash
=y
; echo "${i#refs/heads/}" ;;
524 n
,*) is_hash
=y
; echo "$i" ;;
529 # __git_tags accepts 0 or 1 arguments (to pass to __gitdir)
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)' \
538 for i
in $
(git ls-remote
"${1-}" 2>/dev
/null
); do
539 case "$is_hash,$i" in
542 n
,refs
/tags
/*) is_hash
=y
; echo "${i#refs/tags/}" ;;
543 n
,*) is_hash
=y
; echo "$i" ;;
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
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
564 for i
in HEAD FETCH_HEAD ORIG_HEAD MERGE_HEAD
; do
565 if [ -e "$dir/$i" ]; then echo $i; fi
567 format
="refname:short"
568 refs
="refs/tags refs/heads refs/remotes"
571 git
--git-dir="$dir" for-each-ref
--format="%($format)" \
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
578 git
--git-dir="$dir" for-each-ref
--shell --format="ref=%(refname:short)" \
583 if [[ "$ref" == "$cur"* ]]; then
590 for i
in $
(git ls-remote
"$dir" 2>/dev
/null
); do
591 case "$is_hash,$i" in
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" ;;
602 # __git_refs2 requires 1 argument (to pass to __git_refs)
606 for i
in $
(__git_refs
"$1"); do
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
619 echo "$i:refs/remotes/$1/${i#refs/heads/}"
623 n
,refs
/tags
/*) is_hash
=y
;;
631 local i ngoff IFS
=$
'\n' d
="$(__gitdir)"
632 shopt -q nullglob || ngoff
=1
634 for i
in "$d/remotes"/*; do
635 echo ${i#$d/remotes/}
637 [ "$ngoff" ] && shopt -u nullglob
638 for i
in $
(git
--git-dir="$d" config
--get-regexp 'remote\..*\.url' 2>/dev
/null
); do
644 __git_list_merge_strategies
()
646 git merge
-s help 2>&1 |
647 sed -n -e '/[Aa]vailable strategies are: /,/^$/{
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
662 __git_compute_merge_strategies
()
664 : ${__git_merge_strategies:=$(__git_list_merge_strategies)}
667 __git_complete_revlist_file
()
670 _get_comp_words_by_ref
-n =: cur
690 case "$COMP_WORDBREAKS" in
692 *) pfx
="$ref:$pfx" ;;
696 COMPREPLY
=($
(compgen
-P "$pfx" \
697 -W "$(git --git-dir="$
(__gitdir
)" ls-tree "$ls" \
698 | sed '/^100... blob /{
716 __gitcomp
"$(__git_refs)" "$pfx" "$cur"
721 __gitcomp
"$(__git_refs)" "$pfx" "$cur"
724 __gitcomp
"$(__git_refs)"
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
749 --mirror) [ "$cmd" = "push" ] && no_complete_refspec
=1 ;;
752 push
) no_complete_refspec
=1 ;;
761 *) remote
="$i"; break ;;
765 if [ -z "$remote" ]; then
766 __gitcomp
"$(__git_remotes)"
769 if [ $no_complete_refspec = 1 ]; then
773 [ "$remote" = "." ] && remote
=
776 case "$COMP_WORDBREAKS" in
778 *) pfx
="${cur%%:*}:" ;;
790 if [ $lhs = 1 ]; then
791 __gitcomp
"$(__git_refs2 "$remote")" "$pfx" "$cur"
793 __gitcomp
"$(__git_refs)" "$pfx" "$cur"
797 if [ $lhs = 1 ]; then
798 __gitcomp
"$(__git_refs "$remote")" "$pfx" "$cur"
800 __gitcomp
"$(__git_refs)" "$pfx" "$cur"
804 if [ $lhs = 1 ]; then
805 __gitcomp
"$(__git_refs)" "$pfx" "$cur"
807 __gitcomp
"$(__git_refs "$remote")" "$pfx" "$cur"
813 __git_complete_strategy
()
816 _get_comp_words_by_ref
-n =: cur prev
817 __git_compute_merge_strategies
820 __gitcomp
"$__git_merge_strategies"
825 __gitcomp
"$__git_merge_strategies" "" "${cur##--strategy=}"
832 __git_list_all_commands
()
835 for i
in $
(git
help -a|
egrep '^ [a-zA-Z0-9]')
838 *--*) : helper pattern
;;
845 __git_compute_all_commands
()
847 : ${__git_all_commands:=$(__git_list_all_commands)}
850 __git_list_porcelain_commands
()
853 __git_compute_all_commands
854 for i
in "help" $__git_all_commands
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
;;
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
;;
894 pack-objects
) : plumbing
;;
895 pack-redundant
) : plumbing
;;
896 pack-refs
) : plumbing
;;
897 parse-remote
) : plumbing
;;
898 patch-id
) : plumbing
;;
899 peek-remote
) : plumbing
;;
901 prune-packed
) : plumbing
;;
902 quiltimport
) : import
;;
903 read-tree
) : plumbing
;;
904 receive-pack
) : plumbing
;;
905 remote-
*) : transport
;;
906 repo-config
) : deprecated
;;
908 rev-list
) : plumbing
;;
909 rev-parse
) : plumbing
;;
910 runstatus
) : plumbing
;;
911 sh-setup
) : internal
;;
913 show-ref
) : plumbing
;;
914 send-pack
) : plumbing
;;
915 show-index
) : plumbing
;;
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
;;
929 verify-pack
) : infrequent
;;
930 verify-tag
) : plumbing
;;
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
()
946 for i
in $
(git
--git-dir="$(__gitdir)" config
--get-regexp "pretty\..*" 2>/dev
/null
); do
959 for i
in $
(git
--git-dir="$(__gitdir)" config
--get-regexp "alias\..*" 2>/dev
/null
); do
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
980 \
!*) : shell
command alias ;;
982 *=*) : setting env
;;
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
998 for subcommand
in $1; do
999 if [ "$subcommand" = "$word" ]; then
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
1021 __git_whitespacelist
="nowarn warn error error-all fix"
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"
1033 __gitcomp
"$__git_whitespacelist" "" "${cur##--whitespace=}"
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
1051 _get_comp_words_by_ref
-n =: cur
1054 __gitcomp
"$__git_whitespacelist" "" "${cur##--whitespace=}"
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
1072 __git_has_doubledash
&& return
1075 _get_comp_words_by_ref
-n =: cur
1079 --interactive --refresh --patch --update --dry-run
1080 --ignore-errors --intent-to-add
1090 _get_comp_words_by_ref
-n =: cur
1093 __gitcomp
"$(git archive --list)" "" "${cur##--format=}"
1097 __gitcomp
"$(__git_remotes)" "" "${cur##--remote=}"
1102 --format= --list --verbose
1103 --prefix= --remote= --exec=
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"
1121 __gitcomp
"replay start"
1126 case "$subcommand" in
1127 bad|good|
reset|skip|start
)
1128 __gitcomp
"$(__git_refs)"
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
1144 -d|
-m) only_local_ref
="y" ;;
1153 --color --no-color --verbose --abbrev= --no-abbrev
1154 --track --no-track --contains --merged --no-merged
1159 if [ $only_local_ref = "y" -a $has_r = "n" ]; then
1160 __gitcomp
"$(__git_heads)"
1162 __gitcomp
"$(__git_refs)"
1171 _get_comp_words_by_ref
-n =: words cword
1172 local cmd
="${words[2]}"
1175 __gitcomp
"create list-heads verify unbundle"
1178 # looking for a file
1183 __git_complete_revlist
1192 __git_has_doubledash
&& return
1195 _get_comp_words_by_ref
-n =: cur
1198 __gitcomp
"diff3 merge" "" "${cur##--conflict=}"
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
1213 __gitcomp
"$(__git_refs '' $track)"
1220 __gitcomp
"$(__git_refs)"
1226 _get_comp_words_by_ref
-n =: cur
1229 __gitcomp
"--edit --no-commit"
1232 __gitcomp
"$(__git_refs)"
1239 __git_has_doubledash
&& return
1242 _get_comp_words_by_ref
-n =: cur
1245 __gitcomp
"--dry-run --quiet"
1255 _get_comp_words_by_ref
-n =: cur
1280 __git_has_doubledash
&& return
1283 _get_comp_words_by_ref
-n =: cur
1286 __gitcomp
"default strip verbatim whitespace
1287 " "" "${cur##--cleanup=}"
1290 --reuse-message=*|
--reedit-message=*|\
1291 --fixup=*|
--squash=*)
1292 __gitcomp
"$(__git_refs)" "" "${cur#*=}"
1295 --untracked-files=*)
1296 __gitcomp
"all no normal" "" "${cur##--untracked-files=}"
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=
1316 _get_comp_words_by_ref
-n =: cur
1320 --all --tags --contains --abbrev= --candidates=
1321 --exact-match --debug --long --match --always
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
1336 --no-prefix --src-prefix= --dst-prefix=
1337 --inter-hunk-context=
1340 --dirstat --dirstat= --dirstat-by-file
1341 --dirstat-by-file= --cumulative
1346 __git_has_doubledash
&& return
1349 _get_comp_words_by_ref
-n =: cur
1352 __gitcomp
"--cached --staged --pickaxe-all --pickaxe-regex
1353 --base --ours --theirs --no-index
1354 $__git_diff_common_options
1359 __git_complete_revlist_file
1362 __git_mergetools_common
="diffuse ecmerge emerge kdiff3 meld opendiff
1363 tkdiff vimdiff gvimdiff xxdiff araxis p4merge bc3
1368 __git_has_doubledash
&& return
1371 _get_comp_words_by_ref
-n =: cur
1374 __gitcomp
"$__git_mergetools_common kompare" "" "${cur##--tool=}"
1378 __gitcomp
"--cached --staged --pickaxe-all --pickaxe-regex
1379 --base --ours --theirs
1380 --no-renames --diff-filter= --find-copies-harder
1381 --relative --ignore-submodules
1389 __git_fetch_options
="
1390 --quiet --verbose --append --upload-pack --force --keep --depth=
1391 --tags --no-tags --all --prune --dry-run
1397 _get_comp_words_by_ref
-n =: cur
1400 __gitcomp
"$__git_fetch_options"
1404 __git_complete_remote_or_refspec
1407 _git_format_patch
()
1410 _get_comp_words_by_ref
-n =: cur
1415 " "" "${cur##--thread=}"
1420 --stdout --attach --no-attach --thread --thread=
1422 --numbered --start-number
1425 --signoff --signature --no-signature
1426 --in-reply-to= --cc=
1427 --full-index --binary
1430 --no-prefix --src-prefix= --dst-prefix=
1431 --inline --suffix= --ignore-if-in-upstream
1437 __git_complete_revlist
1443 _get_comp_words_by_ref
-n =: cur
1447 --tags --root --unreachable --cache --no-reflogs --full
1448 --strict --verbose --lost-found
1459 _get_comp_words_by_ref
-n =: cur
1462 __gitcomp
"--prune --aggressive"
1476 __git_has_doubledash
&& return
1479 _get_comp_words_by_ref
-n =: cur
1484 --text --ignore-case --word-regexp --invert-match
1486 --extended-regexp --basic-regexp --fixed-strings
1487 --files-with-matches --name-only
1488 --files-without-match
1491 --and --or --not --all-match
1497 __gitcomp
"$(__git_refs)"
1503 _get_comp_words_by_ref
-n =: cur
1506 __gitcomp
"--all --info --man --web"
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
1522 _get_comp_words_by_ref
-n =: cur
1526 false true umask group all world everybody
1527 " "" "${cur##--shared=}"
1531 __gitcomp
"--quiet --bare --template= --shared --shared="
1540 __git_has_doubledash
&& return
1543 _get_comp_words_by_ref
-n =: cur
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
1561 __gitcomp
"$(__git_remotes)"
1569 # Options that go well for log, shortlog and gitk
1570 __git_log_common_options
="
1572 --branches --tags --remotes
1573 --first-parent --merges --no-merges
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
1586 # Options that go well for log and shortlog (not gitk)
1587 __git_log_shortlog_options
="
1588 --author= --committer= --grep=
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"
1597 __git_has_doubledash
&& return
1599 local g
="$(git rev-parse --git-dir 2>/dev/null)"
1601 if [ -f "$g/MERGE_HEAD" ]; then
1605 _get_comp_words_by_ref
-n =: cur
1607 --pretty=*|
--format=*)
1608 __gitcomp
"$__git_log_pretty_formats $(__git_pretty_aliases)
1613 __gitcomp
"$__git_log_date_formats" "" "${cur##--date=}"
1617 __gitcomp
"long short" "" "${cur##--decorate=}"
1622 $__git_log_common_options
1623 $__git_log_shortlog_options
1624 $__git_log_gitk_options
1625 --root --topo-order --date-order --reverse
1626 --follow --full-diff
1627 --abbrev-commit --abbrev=
1628 --relative-date --date=
1629 --pretty= --format= --oneline
1632 --decorate --decorate=
1634 --parents --children
1636 $__git_diff_common_options
1637 --pickaxe-all --pickaxe-regex
1642 __git_complete_revlist
1645 __git_merge_options
="
1646 --no-commit --no-stat --log --no-log --squash --strategy
1647 --commit --stat --no-squash --ff --no-ff --ff-only
1652 __git_complete_strategy
&& return
1655 _get_comp_words_by_ref
-n =: cur
1658 __gitcomp
"$__git_merge_options"
1661 __gitcomp
"$(__git_refs)"
1667 _get_comp_words_by_ref
-n =: cur
1670 __gitcomp
"$__git_mergetools_common tortoisemerge" "" "${cur##--tool=}"
1683 __gitcomp
"$(__git_refs)"
1689 _get_comp_words_by_ref
-n =: cur
1692 __gitcomp
"--dry-run"
1701 __gitcomp
"--tags --all --stdin"
1706 local subcommands
='add append copy edit list prune remove show'
1707 local subcommand
="$(__git_find_on_cmdline "$subcommands")"
1708 local cur words cword
1709 _get_comp_words_by_ref
-n =: cur words cword
1711 case "$subcommand,$cur" in
1716 case "${words[cword-1]}" in
1718 __gitcomp
"$(__git_refs)"
1721 __gitcomp
"$subcommands --ref"
1725 add
,--reuse-message=*|append
,--reuse-message=*|\
1726 add
,--reedit-message=*|append
,--reedit-message=*)
1727 __gitcomp
"$(__git_refs)" "" "${cur#*=}"
1730 __gitcomp
'--file= --message= --reedit-message=
1737 __gitcomp
'--dry-run --verbose'
1742 case "${words[cword-1]}" in
1746 __gitcomp
"$(__git_refs)"
1755 __git_complete_strategy
&& return
1758 _get_comp_words_by_ref
-n =: cur
1762 --rebase --no-rebase
1763 $__git_merge_options
1764 $__git_fetch_options
1769 __git_complete_remote_or_refspec
1775 _get_comp_words_by_ref
-n =: cur prev
1778 __gitcomp
"$(__git_remotes)"
1783 __gitcomp
"$(__git_remotes)" "" "${cur##--repo=}"
1788 --all --mirror --tags --dry-run --force --verbose
1789 --receive-pack= --repo=
1794 __git_complete_remote_or_refspec
1799 local dir
="$(__gitdir)"
1801 _get_comp_words_by_ref
-n =: cur
1802 if [ -d "$dir"/rebase-apply
] ||
[ -d "$dir"/rebase-merge
]; then
1803 __gitcomp
"--continue --skip --abort"
1806 __git_complete_strategy
&& return
1809 __gitcomp
"$__git_whitespacelist" "" "${cur##--whitespace=}"
1814 --onto --merge --strategy --interactive
1815 --preserve-merges --stat --no-stat
1816 --committer-date-is-author-date --ignore-date
1817 --ignore-whitespace --whitespace=
1823 __gitcomp
"$(__git_refs)"
1828 local subcommands
="show delete expire"
1829 local subcommand
="$(__git_find_on_cmdline "$subcommands")"
1831 if [ -z "$subcommand" ]; then
1832 __gitcomp
"$subcommands"
1834 __gitcomp
"$(__git_refs)"
1838 __git_send_email_confirm_options
="always never auto cc compose"
1839 __git_send_email_suppresscc_options
="author self cc bodycc sob cccmd body all"
1844 _get_comp_words_by_ref
-n =: cur
1848 $__git_send_email_confirm_options
1849 " "" "${cur##--confirm=}"
1854 $__git_send_email_suppresscc_options
1855 " "" "${cur##--suppress-cc=}"
1859 --smtp-encryption=*)
1860 __gitcomp
"ssl tls" "" "${cur##--smtp-encryption=}"
1864 __gitcomp
"--annotate --bcc --cc --cc-cmd --chain-reply-to
1865 --compose --confirm= --dry-run --envelope-sender
1867 --in-reply-to --no-chain-reply-to --no-signed-off-by-cc
1868 --no-suppress-from --no-thread --quiet
1869 --signed-off-by-cc --smtp-pass --smtp-server
1870 --smtp-server-port --smtp-encryption= --smtp-user
1871 --subject --suppress-cc= --suppress-from --thread --to
1872 --validate --no-validate"
1884 __git_config_get_set_variables
()
1887 _get_comp_words_by_ref
-n =: words cword
1888 local prevword word config_file
= c
=$cword
1889 while [ $c -gt 1 ]; do
1892 --global|
--system|
--file=*)
1897 config_file
="$word $prevword"
1905 git
--git-dir="$(__gitdir)" config
$config_file --list 2>/dev
/null |
1919 _get_comp_words_by_ref
-n =: cur prev
1922 __gitcomp
"$(__git_remotes)"
1926 __gitcomp
"$(__git_refs)"
1930 local remote
="${prev#remote.}"
1931 remote
="${remote%.fetch}"
1932 __gitcomp
"$(__git_refs_remotes "$remote")"
1936 local remote
="${prev#remote.}"
1937 remote
="${remote%.push}"
1938 __gitcomp
"$(git --git-dir="$
(__gitdir
)" \
1939 for-each-ref --format='%(refname):%(refname)' \
1943 pull.twohead|pull.octopus
)
1944 __git_compute_merge_strategies
1945 __gitcomp
"$__git_merge_strategies"
1948 color.branch|color.
diff|color.interactive|\
1949 color.showbranch|color.status|color.ui
)
1950 __gitcomp
"always never auto"
1954 __gitcomp
"false true"
1959 normal black red green yellow blue magenta cyan white
1960 bold dim ul blink reverse
1965 __gitcomp
"man info web html"
1969 __gitcomp
"$__git_log_date_formats"
1972 sendemail.aliasesfiletype
)
1973 __gitcomp
"mutt mailrc pine elm gnus"
1977 __gitcomp
"$__git_send_email_confirm_options"
1980 sendemail.suppresscc
)
1981 __gitcomp
"$__git_send_email_suppresscc_options"
1984 --get|
--get-all|
--unset|
--unset-all)
1985 __gitcomp
"$(__git_config_get_set_variables)"
1996 --global --system --file=
1997 --list --replace-all
1998 --get --get-all --get-regexp
1999 --add --unset --unset-all
2000 --remove-section --rename-section
2005 local pfx
="${cur%.*}."
2007 __gitcomp
"remote merge mergeoptions rebase" "$pfx" "$cur"
2011 local pfx
="${cur%.*}."
2013 __gitcomp
"$(__git_heads)" "$pfx" "$cur" "."
2017 local pfx
="${cur%.*}."
2020 argprompt cmd confirm needsfile noconsole norescan
2021 prompt revprompt revunmerged title
2026 local pfx
="${cur%.*}."
2028 __gitcomp
"cmd path" "$pfx" "$cur"
2032 local pfx
="${cur%.*}."
2034 __gitcomp
"cmd path" "$pfx" "$cur"
2038 local pfx
="${cur%.*}."
2040 __gitcomp
"cmd path trustExitCode" "$pfx" "$cur"
2044 local pfx
="${cur%.*}."
2046 __git_compute_all_commands
2047 __gitcomp
"$__git_all_commands" "$pfx" "$cur"
2051 local pfx
="${cur%.*}."
2054 url proxy fetch push mirror skipDefaultUpdate
2055 receivepack uploadpack tagopt pushurl
2060 local pfx
="${cur%.*}."
2062 __gitcomp
"$(__git_remotes)" "$pfx" "$cur" "."
2066 local pfx
="${cur%.*}."
2068 __gitcomp
"insteadOf pushInsteadOf" "$pfx" "$cur"
2074 advice.commitBeforeMerge
2076 advice.implicitIdentity
2077 advice.pushNonFastForward
2078 advice.resolveConflict
2082 apply.ignorewhitespace
2084 branch.autosetupmerge
2085 branch.autosetuprebase
2089 color.branch.current
2094 color.decorate.branch
2095 color.decorate.remoteBranch
2096 color.decorate.stash
2106 color.diff.whitespace
2111 color.grep.linenumber
2114 color.grep.separator
2116 color.interactive.error
2117 color.interactive.header
2118 color.interactive.help
2119 color.interactive.prompt
2124 color.status.changed
2126 color.status.nobranch
2127 color.status.untracked
2128 color.status.updated
2137 core.bigFileThreshold
2140 core.deltaBaseCacheLimit
2145 core.fsyncobjectfiles
2147 core.ignoreCygwinFSTricks
2150 core.logAllRefUpdates
2151 core.loosecompression
2154 core.packedGitWindowSize
2156 core.preferSymlinkRefs
2159 core.repositoryFormatVersion
2161 core.sharedRepository
2165 core.warnAmbiguousRefs
2168 diff.autorefreshindex
2170 diff.ignoreSubmodules
2175 diff.suppressBlankEmpty
2180 fetch.recurseSubmodules
2189 format.subjectprefix
2200 gc.reflogexpireunreachable
2204 gitcvs.commitmsgannotation
2205 gitcvs.dbTableNamePrefix
2216 gui.copyblamethreshold
2220 gui.matchtrackingbranch
2221 gui.newbranchtemplate
2222 gui.pruneduringfetch
2223 gui.spellingdictionary
2238 http.sslCertPasswordProtected
2243 i18n.logOutputEncoding
2249 imap.preformattedHTML
2259 interactive.singlekey
2275 mergetool.keepBackup
2276 mergetool.keepTemporaries
2281 notes.rewrite.rebase
2285 pack.deltaCacheLimit
2301 receive.denyCurrentBranch
2302 receive.denyDeleteCurrent
2304 receive.denyNonFastForwards
2307 receive.updateserverinfo
2309 repack.usedeltabaseoffset
2313 sendemail.aliasesfile
2314 sendemail.aliasfiletype
2318 sendemail.chainreplyto
2320 sendemail.envelopesender
2324 sendemail.signedoffbycc
2325 sendemail.smtpdomain
2326 sendemail.smtpencryption
2328 sendemail.smtpserver
2329 sendemail.smtpserveroption
2330 sendemail.smtpserverport
2332 sendemail.suppresscc
2333 sendemail.suppressfrom
2338 status.relativePaths
2339 status.showUntrackedFiles
2340 status.submodulesummary
2343 transfer.unpackLimit
2355 local subcommands
="add rename rm show prune update set-head"
2356 local subcommand
="$(__git_find_on_cmdline "$subcommands")"
2357 if [ -z "$subcommand" ]; then
2358 __gitcomp
"$subcommands"
2362 case "$subcommand" in
2363 rename|
rm|show|prune
)
2364 __gitcomp
"$(__git_remotes)"
2367 local i c
='' IFS
=$
'\n'
2368 for i
in $
(git
--git-dir="$(__gitdir)" config
--get-regexp "remotes\..*" 2>/dev
/null
); do
2382 __gitcomp
"$(__git_refs)"
2387 __git_has_doubledash
&& return
2390 _get_comp_words_by_ref
-n =: cur
2393 __gitcomp
"--merge --mixed --hard --soft --patch"
2397 __gitcomp
"$(__git_refs)"
2403 _get_comp_words_by_ref
-n =: cur
2406 __gitcomp
"--edit --mainline --no-edit --no-commit --signoff"
2410 __gitcomp
"$(__git_refs)"
2415 __git_has_doubledash
&& return
2418 _get_comp_words_by_ref
-n =: cur
2421 __gitcomp
"--cached --dry-run --ignore-unmatch --quiet"
2430 __git_has_doubledash
&& return
2433 _get_comp_words_by_ref
-n =: cur
2437 $__git_log_common_options
2438 $__git_log_shortlog_options
2439 --numbered --summary
2444 __git_complete_revlist
2449 __git_has_doubledash
&& return
2452 _get_comp_words_by_ref
-n =: cur
2454 --pretty=*|
--format=*)
2455 __gitcomp
"$__git_log_pretty_formats $(__git_pretty_aliases)
2460 __gitcomp
"--pretty= --format= --abbrev-commit --oneline
2461 $__git_diff_common_options
2472 _get_comp_words_by_ref
-n =: cur
2476 --all --remotes --topo-order --current --more=
2477 --list --independent --merge-base --no-name
2479 --sha1-name --sparse --topics --reflog
2484 __git_complete_revlist
2490 _get_comp_words_by_ref
-n =: cur
2491 local save_opts
='--keep-index --no-keep-index --quiet --patch'
2492 local subcommands
='save list show apply clear drop pop create branch'
2493 local subcommand
="$(__git_find_on_cmdline "$subcommands")"
2494 if [ -z "$subcommand" ]; then
2497 __gitcomp
"$save_opts"
2500 if [ -z "$(__git_find_on_cmdline "$save_opts")" ]; then
2501 __gitcomp
"$subcommands"
2508 case "$subcommand,$cur" in
2510 __gitcomp
"$save_opts"
2513 __gitcomp
"--index --quiet"
2515 show
,--*|drop
,--*|branch
,--*)
2518 show
,*|apply
,*|drop
,*|pop
,*|branch
,*)
2519 __gitcomp
"$(git --git-dir="$
(__gitdir
)" stash list \
2520 | sed -n -e 's/:.*//p')"
2531 __git_has_doubledash
&& return
2533 local subcommands
="add status init update summary foreach sync"
2534 if [ -z "$(__git_find_on_cmdline "$subcommands")" ]; then
2536 _get_comp_words_by_ref
-n =: cur
2539 __gitcomp
"--quiet --cached"
2542 __gitcomp
"$subcommands"
2552 init fetch clone rebase dcommit log find-rev
2553 set-tree commit-diff info create-ignore propget
2554 proplist show-ignore show-externals branch tag blame
2555 migrate mkdirs reset gc
2557 local subcommand
="$(__git_find_on_cmdline "$subcommands")"
2558 if [ -z "$subcommand" ]; then
2559 __gitcomp
"$subcommands"
2561 local remote_opts
="--username= --config-dir= --no-auth-cache"
2563 --follow-parent --authors-file= --repack=
2564 --no-metadata --use-svm-props --use-svnsync-props
2565 --log-window-size= --no-checkout --quiet
2566 --repack-flags --use-log-author --localtime
2567 --ignore-paths= $remote_opts
2570 --template= --shared= --trunk= --tags=
2571 --branches= --stdlayout --minimize-url
2572 --no-metadata --use-svm-props --use-svnsync-props
2573 --rewrite-root= --prefix= --use-log-author
2574 --add-author-from $remote_opts
2577 --edit --rmdir --find-copies-harder --copy-similarity=
2581 _get_comp_words_by_ref
-n =: cur
2582 case "$subcommand,$cur" in
2584 __gitcomp
"--revision= --fetch-all $fc_opts"
2587 __gitcomp
"--revision= $fc_opts $init_opts"
2590 __gitcomp
"$init_opts"
2594 --merge --strategy= --verbose --dry-run
2595 --fetch-all --no-rebase --commit-url
2596 --revision $cmt_opts $fc_opts
2600 __gitcomp
"--stdin $cmt_opts $fc_opts"
2602 create-ignore
,--*|propget
,--*|proplist
,--*|show-ignore
,--*|\
2603 show-externals
,--*|mkdirs
,--*)
2604 __gitcomp
"--revision="
2608 --limit= --revision= --verbose --incremental
2609 --oneline --show-commit --non-recursive
2610 --authors-file= --color
2615 --merge --verbose --strategy= --local
2616 --fetch-all --dry-run $fc_opts
2620 __gitcomp
"--message= --file= --revision= $cmt_opts"
2626 __gitcomp
"--dry-run --message --tag"
2629 __gitcomp
"--dry-run --message"
2632 __gitcomp
"--git-format"
2636 --config-dir= --ignore-paths= --minimize
2637 --no-auth-cache --username=
2641 __gitcomp
"--revision= --parent"
2653 local words cword prev
2654 _get_comp_words_by_ref
-n =: words cword prev
2655 while [ $c -lt $cword ]; do
2659 __gitcomp
"$(__git_tags)"
2675 __gitcomp
"$(__git_tags)"
2681 __gitcomp
"$(__git_refs)"
2693 local i c
=1 command __git_dir
2695 if [[ -n ${ZSH_VERSION-} ]]; then
2700 local cur words cword
2701 _get_comp_words_by_ref
-n =: cur words cword
2702 while [ $c -lt $cword ]; do
2705 --git-dir=*) __git_dir
="${i#--git-dir=}" ;;
2706 --bare) __git_dir
="." ;;
2707 --version|
-p|
--paginate) ;;
2708 --help) command="help"; break ;;
2709 *) command="$i"; break ;;
2714 if [ -z "$command" ]; then
2728 *) __git_compute_porcelain_commands
2729 __gitcomp
"$__git_porcelain_commands $(__git_aliases)" ;;
2734 local completion_func
="_git_${command//-/_}"
2735 declare -f $completion_func >/dev
/null
&& $completion_func && return
2737 local expansion
=$
(__git_aliased_command
"$command")
2738 if [ -n "$expansion" ]; then
2739 completion_func
="_git_${expansion//-/_}"
2740 declare -f $completion_func >/dev
/null
&& $completion_func
2746 if [[ -n ${ZSH_VERSION-} ]]; then
2751 __git_has_doubledash
&& return
2754 local g
="$(__gitdir)"
2756 if [ -f "$g/MERGE_HEAD" ]; then
2759 _get_comp_words_by_ref
-n =: cur
2763 $__git_log_common_options
2764 $__git_log_gitk_options
2770 __git_complete_revlist
2773 complete
-o bashdefault
-o default
-o nospace
-F _git git
2>/dev
/null \
2774 || complete
-o default
-o nospace
-F _git git
2775 complete
-o bashdefault
-o default
-o nospace
-F _gitk gitk
2>/dev
/null \
2776 || complete
-o default
-o nospace
-F _gitk gitk
2778 # The following are necessary only for Cygwin, and only are needed
2779 # when the user has tab-completed the executable name and consequently
2780 # included the '.exe' suffix.
2782 if [ Cygwin
= "$(uname -o 2>/dev/null)" ]; then
2783 complete
-o bashdefault
-o default
-o nospace
-F _git git.exe
2>/dev
/null \
2784 || complete
-o default
-o nospace
-F _git git.exe
2787 if [[ -n ${ZSH_VERSION-} ]]; then
2790 if [ $# -ne 2 ]; then
2791 echo "USAGE: $0 (-q|-s|-u) <option>" >&2
2799 echo "$0: invalid option: $2" >&2
2803 -q) setopt |
grep -q "$option" ;;
2804 -u) unsetopt
"$option" ;;
2805 -s) setopt
"$option" ;;
2807 echo "$0: invalid flag: $1" >&2