3 # bash/zsh completion support for core Git.
5 # Copyright (C) 2006,2007 Shawn O. Pearce <spearce@spearce.org>
6 # Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/).
7 # Distributed under the GNU General Public License, version 2.0.
9 # The contained completion routines provide support for completing:
11 # *) local and remote branch names
12 # *) local and remote tag names
13 # *) .git/remotes file names
14 # *) git 'subcommands'
15 # *) tree paths within 'ref:path/to/file' expressions
16 # *) common --long-options
18 # To use these routines:
20 # 1) Copy this file to somewhere (e.g. ~/.git-completion.sh).
21 # 2) Add the following line to your .bashrc/.zshrc:
22 # source ~/.git-completion.sh
24 # 3) Consider changing your PS1 to also show the current branch:
25 # Bash: PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ '
26 # ZSH: PS1='[%n@%m %c$(__git_ps1 " (%s)")]\$ '
28 # The argument to __git_ps1 will be displayed only if you
29 # are currently in a git repository. The %s token will be
30 # the name of the current branch.
32 # In addition, if you set GIT_PS1_SHOWDIRTYSTATE to a nonempty
33 # value, unstaged (*) and staged (+) changes will be shown next
34 # to the branch name. You can configure this per-repository
35 # with the bash.showDirtyState variable, which defaults to true
36 # once GIT_PS1_SHOWDIRTYSTATE is enabled.
38 # You can also see if currently something is stashed, by setting
39 # GIT_PS1_SHOWSTASHSTATE to a nonempty value. If something is stashed,
40 # then a '$' will be shown next to the branch name.
42 # If you would like to see if there're untracked files, then you can
43 # set GIT_PS1_SHOWUNTRACKEDFILES to a nonempty value. If there're
44 # untracked files, then a '%' will be shown next to the branch name.
46 # If you would like to see the difference between HEAD and its
47 # upstream, set GIT_PS1_SHOWUPSTREAM="auto". A "<" indicates
48 # you are behind, ">" indicates you are ahead, and "<>"
49 # indicates you have diverged. You can further control
50 # behaviour by setting GIT_PS1_SHOWUPSTREAM to a space-separated
52 # verbose show number of commits ahead/behind (+/-) upstream
53 # legacy don't use the '--count' option available in recent
54 # versions of git-rev-list
55 # git always compare HEAD to @{upstream}
56 # svn always compare HEAD to your SVN upstream
57 # By default, __git_ps1 will compare HEAD to your SVN upstream
58 # if it can find one, or @{upstream} otherwise. Once you have
59 # set GIT_PS1_SHOWUPSTREAM, you can override it on a
60 # per-repository basis by setting the bash.showUpstream config
66 # *) Read Documentation/SubmittingPatches
67 # *) Send all patches to the current maintainer:
69 # "Shawn O. Pearce" <spearce@spearce.org>
71 # *) Always CC the Git mailing list:
76 if [[ -n ${ZSH_VERSION-} ]]; then
77 autoload -U +X bashcompinit && bashcompinit
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 # Generates completion reply with compgen, appending a space to possible
489 # completion words, if necessary.
490 # It accepts 1 to 4 arguments:
491 # 1: List of possible completion words.
492 # 2: A prefix to be added to each possible completion word (optional).
493 # 3: Generate possible completion matches for this word (optional).
494 # 4: A suffix to be appended to each possible completion word (optional).
499 if [ $# -gt 2 ]; then
508 COMPREPLY=($(compgen -P "${2-}" \
509 -W "$(__gitcomp_1 "${1-}" "${4-}")" \
515 # Generates completion reply with compgen from newline-separated possible
516 # completion words by appending a space to all of them.
517 # It accepts 1 to 4 arguments:
518 # 1: List of possible completion words, separated by a single newline.
519 # 2: A prefix to be added to each possible completion word (optional).
520 # 3: Generate possible completion matches for this word (optional).
521 # 4: A suffix to be appended to each possible completion word instead of
522 # the default space (optional). If specified but empty, nothing is
526 local s=$'\n' IFS=' '$'\t'$'\n'
527 local cur_="$cur" suffix=" "
529 if [ $# -gt 2 ]; then
531 if [ $# -gt 3 ]; then
537 COMPREPLY=($(compgen -P "${2-}" -S "$suffix" -W "$1" -- "$cur_"))
540 # __git_heads accepts 0 or 1 arguments (to pass to __gitdir)
543 local cmd i is_hash=y dir="$(__gitdir "${1-}")"
544 if [ -d "$dir" ]; then
545 git --git-dir="$dir" for-each-ref --format='%(refname:short)' \
549 for i in $(git ls-remote "${1-}" 2>/dev/null); do
550 case "$is_hash,$i" in
553 n,refs/heads/*) is_hash=y; echo "${i#refs/heads/}" ;;
554 n,*) is_hash=y; echo "$i" ;;
559 # __git_tags accepts 0 or 1 arguments (to pass to __gitdir)
562 local cmd i is_hash=y dir="$(__gitdir "${1-}")"
563 if [ -d "$dir" ]; then
564 git --git-dir="$dir" for-each-ref --format='%(refname:short)' \
568 for i in $(git ls-remote "${1-}" 2>/dev/null); do
569 case "$is_hash,$i" in
572 n,refs/tags/*) is_hash=y; echo "${i#refs/tags/}" ;;
573 n,*) is_hash=y; echo "$i" ;;
578 # __git_refs accepts 0, 1 (to pass to __gitdir), or 2 arguments
579 # presence of 2nd argument means use the guess heuristic employed
580 # by checkout for tracking branches
583 local i hash dir="$(__gitdir "${1-}")" track="${2-}"
585 if [ -d "$dir" ]; then
593 for i in HEAD FETCH_HEAD ORIG_HEAD MERGE_HEAD; do
594 if [ -e "$dir/$i" ]; then echo $i; fi
596 format="refname:short"
597 refs="refs/tags refs/heads refs/remotes"
600 git --git-dir="$dir" for-each-ref --format="%($format)" \
602 if [ -n "$track" ]; then
603 # employ the heuristic used by git checkout
604 # Try to find a remote branch that matches the completion word
605 # but only output if the branch name is unique
607 git --git-dir="$dir" for-each-ref --shell --format="ref=%(refname:short)" \
612 if [[ "$ref" == "$cur"* ]]; then
621 git ls-remote "$dir" "$cur*" 2>/dev/null | \
622 while read hash i; do
630 git ls-remote "$dir" HEAD ORIG_HEAD 'refs/tags/*' 'refs/heads/*' 'refs/remotes/*' 2>/dev/null | \
631 while read hash i; do
634 refs/*) echo "${i#refs/*/}" ;;
642 # __git_refs2 requires 1 argument (to pass to __git_refs)
646 for i in $(__git_refs "$1"); do
651 # __git_refs_remotes requires 1 argument (to pass to ls-remote)
652 __git_refs_remotes ()
655 git ls-remote "$1" 'refs/heads/*' 2>/dev/null | \
656 while read hash i; do
657 echo "$i:refs/remotes/$1/${i#refs/heads/}"
663 local i ngoff IFS=$'\n' d="$(__gitdir)"
664 __git_shopt -q nullglob || ngoff=1
665 __git_shopt -s nullglob
666 for i in "$d/remotes"/*; do
667 echo ${i#$d/remotes/}
669 [ "$ngoff" ] && __git_shopt -u nullglob
670 for i in $(git --git-dir="$d" config --get-regexp 'remote\..*\.url' 2>/dev/null); do
676 __git_list_merge_strategies ()
678 git merge -s help 2>&1 |
679 sed -n -e '/[Aa]vailable strategies are: /,/^$/{
688 __git_merge_strategies=
689 # 'git merge -s help' (and thus detection of the merge strategy
690 # list) fails, unfortunately, if run outside of any git working
691 # tree. __git_merge_strategies is set to the empty string in
692 # that case, and the detection will be repeated the next time it
694 __git_compute_merge_strategies ()
696 : ${__git_merge_strategies:=$(__git_list_merge_strategies)}
699 __git_complete_revlist_file ()
701 local pfx ls ref cur_="$cur"
721 case "$COMP_WORDBREAKS" in
723 *) pfx="$ref:$pfx" ;;
727 COMPREPLY=($(compgen -P "$pfx" \
728 -W "$(git --git-dir="$(__gitdir)" ls-tree "$ls" \
729 | sed '/^100... blob /{
745 pfx="${cur_%...*}..."
747 __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_"
752 __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_"
755 __gitcomp_nl "$(__git_refs)"
761 __git_complete_file ()
763 __git_complete_revlist_file
766 __git_complete_revlist ()
768 __git_complete_revlist_file
771 __git_complete_remote_or_refspec ()
773 local cur_="$cur" cmd="${words[1]}"
774 local i c=2 remote="" pfx="" lhs=1 no_complete_refspec=0
775 while [ $c -lt $cword ]; do
778 --mirror) [ "$cmd" = "push" ] && no_complete_refspec=1 ;;
781 push) no_complete_refspec=1 ;;
790 *) remote="$i"; break ;;
794 if [ -z "$remote" ]; then
795 __gitcomp_nl "$(__git_remotes)"
798 if [ $no_complete_refspec = 1 ]; then
802 [ "$remote" = "." ] && remote=
805 case "$COMP_WORDBREAKS" in
807 *) pfx="${cur_%%:*}:" ;;
819 if [ $lhs = 1 ]; then
820 __gitcomp_nl "$(__git_refs2 "$remote")" "$pfx" "$cur_"
822 __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_"
826 if [ $lhs = 1 ]; then
827 __gitcomp_nl "$(__git_refs "$remote")" "$pfx" "$cur_"
829 __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_"
833 if [ $lhs = 1 ]; then
834 __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_"
836 __gitcomp_nl "$(__git_refs "$remote")" "$pfx" "$cur_"
842 __git_complete_strategy ()
844 __git_compute_merge_strategies
847 __gitcomp "$__git_merge_strategies"
852 __gitcomp "$__git_merge_strategies" "" "${cur##--strategy=}"
859 __git_list_all_commands ()
862 for i in $(git help -a|egrep '^ [a-zA-Z0-9]')
865 *--*) : helper pattern;;
872 __git_compute_all_commands ()
874 : ${__git_all_commands:=$(__git_list_all_commands)}
877 __git_list_porcelain_commands ()
880 __git_compute_all_commands
881 for i in "help" $__git_all_commands
884 *--*) : helper pattern;;
885 applymbox) : ask gittus;;
886 applypatch) : ask gittus;;
887 archimport) : import;;
888 cat-file) : plumbing;;
889 check-attr) : plumbing;;
890 check-ref-format) : plumbing;;
891 checkout-index) : plumbing;;
892 commit-tree) : plumbing;;
893 count-objects) : infrequent;;
894 cvsexportcommit) : export;;
895 cvsimport) : import;;
896 cvsserver) : daemon;;
898 diff-files) : plumbing;;
899 diff-index) : plumbing;;
900 diff-tree) : plumbing;;
901 fast-import) : import;;
902 fast-export) : export;;
903 fsck-objects) : plumbing;;
904 fetch-pack) : plumbing;;
905 fmt-merge-msg) : plumbing;;
906 for-each-ref) : plumbing;;
907 hash-object) : plumbing;;
908 http-*) : transport;;
909 index-pack) : plumbing;;
910 init-db) : deprecated;;
911 local-fetch) : plumbing;;
912 lost-found) : infrequent;;
913 ls-files) : plumbing;;
914 ls-remote) : plumbing;;
915 ls-tree) : plumbing;;
916 mailinfo) : plumbing;;
917 mailsplit) : plumbing;;
918 merge-*) : plumbing;;
921 pack-objects) : plumbing;;
922 pack-redundant) : plumbing;;
923 pack-refs) : plumbing;;
924 parse-remote) : plumbing;;
925 patch-id) : plumbing;;
926 peek-remote) : plumbing;;
928 prune-packed) : plumbing;;
929 quiltimport) : import;;
930 read-tree) : plumbing;;
931 receive-pack) : plumbing;;
932 remote-*) : transport;;
933 repo-config) : deprecated;;
935 rev-list) : plumbing;;
936 rev-parse) : plumbing;;
937 runstatus) : plumbing;;
938 sh-setup) : internal;;
940 show-ref) : plumbing;;
941 send-pack) : plumbing;;
942 show-index) : plumbing;;
944 stripspace) : plumbing;;
945 symbolic-ref) : plumbing;;
946 tar-tree) : deprecated;;
947 unpack-file) : plumbing;;
948 unpack-objects) : plumbing;;
949 update-index) : plumbing;;
950 update-ref) : plumbing;;
951 update-server-info) : daemon;;
952 upload-archive) : plumbing;;
953 upload-pack) : plumbing;;
954 write-tree) : plumbing;;
956 verify-pack) : infrequent;;
957 verify-tag) : plumbing;;
963 __git_porcelain_commands=
964 __git_compute_porcelain_commands ()
966 __git_compute_all_commands
967 : ${__git_porcelain_commands:=$(__git_list_porcelain_commands)}
970 __git_pretty_aliases ()
973 for i in $(git --git-dir="$(__gitdir)" config --get-regexp "pretty\..*" 2>/dev/null); do
986 for i in $(git --git-dir="$(__gitdir)" config --get-regexp "alias\..*" 2>/dev/null); do
996 # __git_aliased_command requires 1 argument
997 __git_aliased_command ()
999 local word cmdline=$(git --git-dir="$(__gitdir)" \
1000 config --get "alias.$1")
1001 for word in $cmdline; do
1007 \!*) : shell command alias ;;
1009 *=*) : setting env ;;
1010 git) : git itself ;;
1018 # __git_find_on_cmdline requires 1 argument
1019 __git_find_on_cmdline ()
1021 local word subcommand c=1
1022 while [ $c -lt $cword ]; do
1024 for subcommand in $1; do
1025 if [ "$subcommand" = "$word" ]; then
1034 __git_has_doubledash ()
1037 while [ $c -lt $cword ]; do
1038 if [ "--" = "${words[c]}" ]; then
1046 __git_whitespacelist="nowarn warn error error-all fix"
1050 local dir="$(__gitdir)"
1051 if [ -d "$dir"/rebase-apply ]; then
1052 __gitcomp "--skip --continue --resolved --abort"
1057 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
1062 --3way --committer-date-is-author-date --ignore-date
1063 --ignore-whitespace --ignore-space-change
1064 --interactive --keep --no-utf8 --signoff --utf8
1065 --whitespace= --scissors
1076 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
1081 --stat --numstat --summary --check --index
1082 --cached --index-info --reverse --reject --unidiff-zero
1083 --apply --no-add --exclude=
1084 --ignore-whitespace --ignore-space-change
1085 --whitespace= --inaccurate-eof --verbose
1094 __git_has_doubledash && return
1099 --interactive --refresh --patch --update --dry-run
1100 --ignore-errors --intent-to-add
1111 __gitcomp "$(git archive --list)" "" "${cur##--format=}"
1115 __gitcomp_nl "$(__git_remotes)" "" "${cur##--remote=}"
1120 --format= --list --verbose
1121 --prefix= --remote= --exec=
1131 __git_has_doubledash && return
1133 local subcommands="start bad good skip reset visualize replay log run"
1134 local subcommand="$(__git_find_on_cmdline "$subcommands")"
1135 if [ -z "$subcommand" ]; then
1136 if [ -f "$(__gitdir)"/BISECT_START ]; then
1137 __gitcomp "$subcommands"
1139 __gitcomp "replay start"
1144 case "$subcommand" in
1145 bad|good|reset|skip|start)
1146 __gitcomp_nl "$(__git_refs)"
1156 local i c=1 only_local_ref="n" has_r="n"
1158 while [ $c -lt $cword ]; do
1161 -d|-m) only_local_ref="y" ;;
1170 --color --no-color --verbose --abbrev= --no-abbrev
1171 --track --no-track --contains --merged --no-merged
1176 if [ $only_local_ref = "y" -a $has_r = "n" ]; then
1177 __gitcomp_nl "$(__git_heads)"
1179 __gitcomp_nl "$(__git_refs)"
1187 local cmd="${words[2]}"
1190 __gitcomp "create list-heads verify unbundle"
1193 # looking for a file
1198 __git_complete_revlist
1207 __git_has_doubledash && return
1211 __gitcomp "diff3 merge" "" "${cur##--conflict=}"
1215 --quiet --ours --theirs --track --no-track --merge
1216 --conflict= --orphan --patch
1220 # check if --track, --no-track, or --no-guess was specified
1221 # if so, disable DWIM mode
1222 local flags="--track --no-track --no-guess" track=1
1223 if [ -n "$(__git_find_on_cmdline "$flags")" ]; then
1226 __gitcomp_nl "$(__git_refs '' $track)"
1233 __gitcomp "$(__git_refs)"
1240 __gitcomp "--edit --no-commit"
1243 __gitcomp_nl "$(__git_refs)"
1250 __git_has_doubledash && return
1254 __gitcomp "--dry-run --quiet"
1287 __git_has_doubledash && return
1291 __gitcomp "default strip verbatim whitespace
1292 " "" "${cur##--cleanup=}"
1295 --reuse-message=*|--reedit-message=*|\
1296 --fixup=*|--squash=*)
1297 __gitcomp_nl "$(__git_refs)" "" "${cur#*=}"
1300 --untracked-files=*)
1301 __gitcomp "all no normal" "" "${cur##--untracked-files=}"
1306 --all --author= --signoff --verify --no-verify
1307 --edit --amend --include --only --interactive
1308 --dry-run --reuse-message= --reedit-message=
1309 --reset-author --file= --message= --template=
1310 --cleanup= --untracked-files --untracked-files=
1311 --verbose --quiet --fixup= --squash=
1323 --all --tags --contains --abbrev= --candidates=
1324 --exact-match --debug --long --match --always
1328 __gitcomp_nl "$(__git_refs)"
1331 __git_diff_common_options="--stat --numstat --shortstat --summary
1332 --patch-with-stat --name-only --name-status --color
1333 --no-color --color-words --no-renames --check
1334 --full-index --binary --abbrev --diff-filter=
1335 --find-copies-harder
1336 --text --ignore-space-at-eol --ignore-space-change
1337 --ignore-all-space --exit-code --quiet --ext-diff
1339 --no-prefix --src-prefix= --dst-prefix=
1340 --inter-hunk-context=
1343 --dirstat --dirstat= --dirstat-by-file
1344 --dirstat-by-file= --cumulative
1349 __git_has_doubledash && return
1353 __gitcomp "--cached --staged --pickaxe-all --pickaxe-regex
1354 --base --ours --theirs --no-index
1355 $__git_diff_common_options
1360 __git_complete_revlist_file
1363 __git_mergetools_common="diffuse ecmerge emerge kdiff3 meld opendiff
1364 tkdiff vimdiff gvimdiff xxdiff araxis p4merge bc3
1369 __git_has_doubledash && return
1373 __gitcomp "$__git_mergetools_common kompare" "" "${cur##--tool=}"
1377 __gitcomp "--cached --staged --pickaxe-all --pickaxe-regex
1378 --base --ours --theirs
1379 --no-renames --diff-filter= --find-copies-harder
1380 --relative --ignore-submodules
1388 __git_fetch_options="
1389 --quiet --verbose --append --upload-pack --force --keep --depth=
1390 --tags --no-tags --all --prune --dry-run
1397 __gitcomp "$__git_fetch_options"
1401 __git_complete_remote_or_refspec
1404 _git_format_patch ()
1410 " "" "${cur##--thread=}"
1415 --stdout --attach --no-attach --thread --thread=
1417 --numbered --start-number
1420 --signoff --signature --no-signature
1421 --in-reply-to= --cc=
1422 --full-index --binary
1425 --no-prefix --src-prefix= --dst-prefix=
1426 --inline --suffix= --ignore-if-in-upstream
1432 __git_complete_revlist
1440 --tags --root --unreachable --cache --no-reflogs --full
1441 --strict --verbose --lost-found
1453 __gitcomp "--prune --aggressive"
1467 __git_has_doubledash && return
1473 --text --ignore-case --word-regexp --invert-match
1474 --full-name --line-number
1475 --extended-regexp --basic-regexp --fixed-strings
1477 --files-with-matches --name-only
1478 --files-without-match
1481 --and --or --not --all-match
1487 __gitcomp_nl "$(__git_refs)"
1494 __gitcomp "--all --info --man --web"
1498 __git_compute_all_commands
1499 __gitcomp "$__git_all_commands $(__git_aliases)
1500 attributes cli core-tutorial cvs-migration
1501 diffcore gitk glossary hooks ignore modules
1502 namespaces repository-layout tutorial tutorial-2
1512 false true umask group all world everybody
1513 " "" "${cur##--shared=}"
1517 __gitcomp "--quiet --bare --template= --shared --shared="
1526 __git_has_doubledash && return
1530 __gitcomp "--cached --deleted --modified --others --ignored
1531 --stage --directory --no-empty-directory --unmerged
1532 --killed --exclude= --exclude-from=
1533 --exclude-per-directory= --exclude-standard
1534 --error-unmatch --with-tree= --full-name
1535 --abbrev --ignored --exclude-per-directory
1545 __gitcomp_nl "$(__git_remotes)"
1553 # Options that go well for log, shortlog and gitk
1554 __git_log_common_options="
1556 --branches --tags --remotes
1557 --first-parent --merges --no-merges
1559 --max-age= --since= --after=
1560 --min-age= --until= --before=
1561 --min-parents= --max-parents=
1562 --no-min-parents --no-max-parents
1564 # Options that go well for log and gitk (not shortlog)
1565 __git_log_gitk_options="
1566 --dense --sparse --full-history
1567 --simplify-merges --simplify-by-decoration
1568 --left-right --notes --no-notes
1570 # Options that go well for log and shortlog (not gitk)
1571 __git_log_shortlog_options="
1572 --author= --committer= --grep=
1576 __git_log_pretty_formats="oneline short medium full fuller email raw format:"
1577 __git_log_date_formats="relative iso8601 rfc2822 short local default raw"
1581 __git_has_doubledash && return
1583 local g="$(git rev-parse --git-dir 2>/dev/null)"
1585 if [ -f "$g/MERGE_HEAD" ]; then
1589 --pretty=*|--format=*)
1590 __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
1595 __gitcomp "$__git_log_date_formats" "" "${cur##--date=}"
1599 __gitcomp "long short" "" "${cur##--decorate=}"
1604 $__git_log_common_options
1605 $__git_log_shortlog_options
1606 $__git_log_gitk_options
1607 --root --topo-order --date-order --reverse
1608 --follow --full-diff
1609 --abbrev-commit --abbrev=
1610 --relative-date --date=
1611 --pretty= --format= --oneline
1614 --decorate --decorate=
1616 --parents --children
1618 $__git_diff_common_options
1619 --pickaxe-all --pickaxe-regex
1624 __git_complete_revlist
1627 __git_merge_options="
1628 --no-commit --no-stat --log --no-log --squash --strategy
1629 --commit --stat --no-squash --ff --no-ff --ff-only
1634 __git_complete_strategy && return
1638 __gitcomp "$__git_merge_options"
1641 __gitcomp_nl "$(__git_refs)"
1648 __gitcomp "$__git_mergetools_common tortoisemerge" "" "${cur##--tool=}"
1661 __gitcomp_nl "$(__git_refs)"
1668 __gitcomp "--dry-run"
1677 __gitcomp "--tags --all --stdin"
1682 local subcommands='add append copy edit list prune remove show'
1683 local subcommand="$(__git_find_on_cmdline "$subcommands")"
1685 case "$subcommand,$cur" in
1690 case "${words[cword-1]}" in
1692 __gitcomp_nl "$(__git_refs)"
1695 __gitcomp "$subcommands --ref"
1699 add,--reuse-message=*|append,--reuse-message=*|\
1700 add,--reedit-message=*|append,--reedit-message=*)
1701 __gitcomp_nl "$(__git_refs)" "" "${cur#*=}"
1704 __gitcomp '--file= --message= --reedit-message=
1711 __gitcomp '--dry-run --verbose'
1716 case "${words[cword-1]}" in
1720 __gitcomp_nl "$(__git_refs)"
1729 __git_complete_strategy && return
1734 --rebase --no-rebase
1735 $__git_merge_options
1736 $__git_fetch_options
1741 __git_complete_remote_or_refspec
1748 __gitcomp_nl "$(__git_remotes)"
1753 __gitcomp_nl "$(__git_remotes)" "" "${cur##--repo=}"
1758 --all --mirror --tags --dry-run --force --verbose
1759 --receive-pack= --repo= --set-upstream
1764 __git_complete_remote_or_refspec
1769 local dir="$(__gitdir)"
1770 if [ -d "$dir"/rebase-apply ] || [ -d "$dir"/rebase-merge ]; then
1771 __gitcomp "--continue --skip --abort"
1774 __git_complete_strategy && return
1777 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
1782 --onto --merge --strategy --interactive
1783 --preserve-merges --stat --no-stat
1784 --committer-date-is-author-date --ignore-date
1785 --ignore-whitespace --whitespace=
1791 __gitcomp_nl "$(__git_refs)"
1796 local subcommands="show delete expire"
1797 local subcommand="$(__git_find_on_cmdline "$subcommands")"
1799 if [ -z "$subcommand" ]; then
1800 __gitcomp "$subcommands"
1802 __gitcomp_nl "$(__git_refs)"
1806 __git_send_email_confirm_options="always never auto cc compose"
1807 __git_send_email_suppresscc_options="author self cc bodycc sob cccmd body all"
1814 $__git_send_email_confirm_options
1815 " "" "${cur##--confirm=}"
1820 $__git_send_email_suppresscc_options
1821 " "" "${cur##--suppress-cc=}"
1825 --smtp-encryption=*)
1826 __gitcomp "ssl tls" "" "${cur##--smtp-encryption=}"
1830 __gitcomp "--annotate --bcc --cc --cc-cmd --chain-reply-to
1831 --compose --confirm= --dry-run --envelope-sender
1833 --in-reply-to --no-chain-reply-to --no-signed-off-by-cc
1834 --no-suppress-from --no-thread --quiet
1835 --signed-off-by-cc --smtp-pass --smtp-server
1836 --smtp-server-port --smtp-encryption= --smtp-user
1837 --subject --suppress-cc= --suppress-from --thread --to
1838 --validate --no-validate"
1850 __git_config_get_set_variables ()
1852 local prevword word config_file= c=$cword
1853 while [ $c -gt 1 ]; do
1856 --global|--system|--file=*)
1861 config_file="$word $prevword"
1869 git --git-dir="$(__gitdir)" config $config_file --list 2>/dev/null |
1884 __gitcomp_nl "$(__git_remotes)"
1888 __gitcomp_nl "$(__git_refs)"
1892 local remote="${prev#remote.}"
1893 remote="${remote%.fetch}"
1894 __gitcomp_nl "$(__git_refs_remotes "$remote")"
1898 local remote="${prev#remote.}"
1899 remote="${remote%.push}"
1900 __gitcomp_nl "$(git --git-dir="$(__gitdir)" \
1901 for-each-ref --format='%(refname):%(refname)' \
1905 pull.twohead|pull.octopus)
1906 __git_compute_merge_strategies
1907 __gitcomp "$__git_merge_strategies"
1910 color.branch|color.diff|color.interactive|\
1911 color.showbranch|color.status|color.ui)
1912 __gitcomp "always never auto"
1916 __gitcomp "false true"
1921 normal black red green yellow blue magenta cyan white
1922 bold dim ul blink reverse
1927 __gitcomp "man info web html"
1931 __gitcomp "$__git_log_date_formats"
1934 sendemail.aliasesfiletype)
1935 __gitcomp "mutt mailrc pine elm gnus"
1939 __gitcomp "$__git_send_email_confirm_options"
1942 sendemail.suppresscc)
1943 __gitcomp "$__git_send_email_suppresscc_options"
1946 --get|--get-all|--unset|--unset-all)
1947 __gitcomp_nl "$(__git_config_get_set_variables)"
1958 --global --system --file=
1959 --list --replace-all
1960 --get --get-all --get-regexp
1961 --add --unset --unset-all
1962 --remove-section --rename-section
1967 local pfx="${cur%.*}." cur_="${cur##*.}"
1968 __gitcomp "remote merge mergeoptions rebase" "$pfx" "$cur_"
1972 local pfx="${cur%.*}." cur_="${cur#*.}"
1973 __gitcomp_nl "$(__git_heads)" "$pfx" "$cur_" "."
1977 local pfx="${cur%.*}." cur_="${cur##*.}"
1979 argprompt cmd confirm needsfile noconsole norescan
1980 prompt revprompt revunmerged title
1985 local pfx="${cur%.*}." cur_="${cur##*.}"
1986 __gitcomp "cmd path" "$pfx" "$cur_"
1990 local pfx="${cur%.*}." cur_="${cur##*.}"
1991 __gitcomp "cmd path" "$pfx" "$cur_"
1995 local pfx="${cur%.*}." cur_="${cur##*.}"
1996 __gitcomp "cmd path trustExitCode" "$pfx" "$cur_"
2000 local pfx="${cur%.*}." cur_="${cur#*.}"
2001 __git_compute_all_commands
2002 __gitcomp_nl "$__git_all_commands" "$pfx" "$cur_"
2006 local pfx="${cur%.*}." cur_="${cur##*.}"
2008 url proxy fetch push mirror skipDefaultUpdate
2009 receivepack uploadpack tagopt pushurl
2014 local pfx="${cur%.*}." cur_="${cur#*.}"
2015 __gitcomp_nl "$(__git_remotes)" "$pfx" "$cur_" "."
2019 local pfx="${cur%.*}." cur_="${cur##*.}"
2020 __gitcomp "insteadOf pushInsteadOf" "$pfx" "$cur_"
2026 advice.commitBeforeMerge
2028 advice.implicitIdentity
2029 advice.pushNonFastForward
2030 advice.resolveConflict
2034 apply.ignorewhitespace
2036 branch.autosetupmerge
2037 branch.autosetuprebase
2041 color.branch.current
2046 color.decorate.branch
2047 color.decorate.remoteBranch
2048 color.decorate.stash
2058 color.diff.whitespace
2063 color.grep.linenumber
2066 color.grep.separator
2068 color.interactive.error
2069 color.interactive.header
2070 color.interactive.help
2071 color.interactive.prompt
2076 color.status.changed
2078 color.status.nobranch
2079 color.status.untracked
2080 color.status.updated
2089 core.bigFileThreshold
2092 core.deltaBaseCacheLimit
2097 core.fsyncobjectfiles
2099 core.ignoreCygwinFSTricks
2102 core.logAllRefUpdates
2103 core.loosecompression
2106 core.packedGitWindowSize
2108 core.preferSymlinkRefs
2111 core.repositoryFormatVersion
2113 core.sharedRepository
2117 core.warnAmbiguousRefs
2120 diff.autorefreshindex
2122 diff.ignoreSubmodules
2127 diff.suppressBlankEmpty
2132 fetch.recurseSubmodules
2141 format.subjectprefix
2152 gc.reflogexpireunreachable
2156 gitcvs.commitmsgannotation
2157 gitcvs.dbTableNamePrefix
2168 gui.copyblamethreshold
2172 gui.matchtrackingbranch
2173 gui.newbranchtemplate
2174 gui.pruneduringfetch
2175 gui.spellingdictionary
2190 http.sslCertPasswordProtected
2195 i18n.logOutputEncoding
2201 imap.preformattedHTML
2211 interactive.singlekey
2227 mergetool.keepBackup
2228 mergetool.keepTemporaries
2233 notes.rewrite.rebase
2237 pack.deltaCacheLimit
2253 receive.denyCurrentBranch
2254 receive.denyDeleteCurrent
2256 receive.denyNonFastForwards
2259 receive.updateserverinfo
2261 repack.usedeltabaseoffset
2265 sendemail.aliasesfile
2266 sendemail.aliasfiletype
2270 sendemail.chainreplyto
2272 sendemail.envelopesender
2276 sendemail.signedoffbycc
2277 sendemail.smtpdomain
2278 sendemail.smtpencryption
2280 sendemail.smtpserver
2281 sendemail.smtpserveroption
2282 sendemail.smtpserverport
2284 sendemail.suppresscc
2285 sendemail.suppressfrom
2290 status.relativePaths
2291 status.showUntrackedFiles
2292 status.submodulesummary
2295 transfer.unpackLimit
2307 local subcommands="add rename rm show prune update set-head"
2308 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2309 if [ -z "$subcommand" ]; then
2310 __gitcomp "$subcommands"
2314 case "$subcommand" in
2315 rename|rm|show|prune)
2316 __gitcomp_nl "$(__git_remotes)"
2319 local i c='' IFS=$'\n'
2320 for i in $(git --git-dir="$(__gitdir)" config --get-regexp "remotes\..*" 2>/dev/null); do
2334 __gitcomp_nl "$(__git_refs)"
2339 __git_has_doubledash && return
2343 __gitcomp "--merge --mixed --hard --soft --patch"
2347 __gitcomp_nl "$(__git_refs)"
2354 __gitcomp "--edit --mainline --no-edit --no-commit --signoff"
2358 __gitcomp_nl "$(__git_refs)"
2363 __git_has_doubledash && return
2367 __gitcomp "--cached --dry-run --ignore-unmatch --quiet"
2376 __git_has_doubledash && return
2381 $__git_log_common_options
2382 $__git_log_shortlog_options
2383 --numbered --summary
2388 __git_complete_revlist
2393 __git_has_doubledash && return
2396 --pretty=*|--format=*)
2397 __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
2402 __gitcomp "--pretty= --format= --abbrev-commit --oneline
2403 $__git_diff_common_options
2416 --all --remotes --topo-order --current --more=
2417 --list --independent --merge-base --no-name
2419 --sha1-name --sparse --topics --reflog
2424 __git_complete_revlist
2429 local save_opts='--keep-index --no-keep-index --quiet --patch'
2430 local subcommands='save list show apply clear drop pop create branch'
2431 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2432 if [ -z "$subcommand" ]; then
2435 __gitcomp "$save_opts"
2438 if [ -z "$(__git_find_on_cmdline "$save_opts")" ]; then
2439 __gitcomp "$subcommands"
2446 case "$subcommand,$cur" in
2448 __gitcomp "$save_opts"
2451 __gitcomp "--index --quiet"
2453 show,--*|drop,--*|branch,--*)
2456 show,*|apply,*|drop,*|pop,*|branch,*)
2457 __gitcomp_nl "$(git --git-dir="$(__gitdir)" stash list \
2458 | sed -n -e 's/:.*//p')"
2469 __git_has_doubledash && return
2471 local subcommands="add status init update summary foreach sync"
2472 if [ -z "$(__git_find_on_cmdline "$subcommands")" ]; then
2475 __gitcomp "--quiet --cached"
2478 __gitcomp "$subcommands"
2488 init fetch clone rebase dcommit log find-rev
2489 set-tree commit-diff info create-ignore propget
2490 proplist show-ignore show-externals branch tag blame
2491 migrate mkdirs reset gc
2493 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2494 if [ -z "$subcommand" ]; then
2495 __gitcomp "$subcommands"
2497 local remote_opts="--username= --config-dir= --no-auth-cache"
2499 --follow-parent --authors-file= --repack=
2500 --no-metadata --use-svm-props --use-svnsync-props
2501 --log-window-size= --no-checkout --quiet
2502 --repack-flags --use-log-author --localtime
2503 --ignore-paths= $remote_opts
2506 --template= --shared= --trunk= --tags=
2507 --branches= --stdlayout --minimize-url
2508 --no-metadata --use-svm-props --use-svnsync-props
2509 --rewrite-root= --prefix= --use-log-author
2510 --add-author-from $remote_opts
2513 --edit --rmdir --find-copies-harder --copy-similarity=
2516 case "$subcommand,$cur" in
2518 __gitcomp "--revision= --fetch-all $fc_opts"
2521 __gitcomp "--revision= $fc_opts $init_opts"
2524 __gitcomp "$init_opts"
2528 --merge --strategy= --verbose --dry-run
2529 --fetch-all --no-rebase --commit-url
2530 --revision $cmt_opts $fc_opts
2534 __gitcomp "--stdin $cmt_opts $fc_opts"
2536 create-ignore,--*|propget,--*|proplist,--*|show-ignore,--*|\
2537 show-externals,--*|mkdirs,--*)
2538 __gitcomp "--revision="
2542 --limit= --revision= --verbose --incremental
2543 --oneline --show-commit --non-recursive
2544 --authors-file= --color
2549 --merge --verbose --strategy= --local
2550 --fetch-all --dry-run $fc_opts
2554 __gitcomp "--message= --file= --revision= $cmt_opts"
2560 __gitcomp "--dry-run --message --tag"
2563 __gitcomp "--dry-run --message"
2566 __gitcomp "--git-format"
2570 --config-dir= --ignore-paths= --minimize
2571 --no-auth-cache --username=
2575 __gitcomp "--revision= --parent"
2587 while [ $c -lt $cword ]; do
2591 __gitcomp_nl "$(__git_tags)"
2607 __gitcomp_nl "$(__git_tags)"
2613 __gitcomp_nl "$(__git_refs)"
2625 local i c=1 command __git_dir
2627 if [[ -n ${ZSH_VERSION-} ]]; then
2631 # workaround zsh's bug that leaves 'words' as a special
2632 # variable in versions < 4.3.12
2636 local cur words cword prev
2637 _get_comp_words_by_ref -n =: cur words cword prev
2638 while [ $c -lt $cword ]; do
2641 --git-dir=*) __git_dir="${i#--git-dir=}" ;;
2642 --bare) __git_dir="." ;;
2643 --version|-p|--paginate) ;;
2644 --help) command="help"; break ;;
2645 *) command="$i"; break ;;
2650 if [ -z "$command" ]; then
2665 *) __git_compute_porcelain_commands
2666 __gitcomp "$__git_porcelain_commands $(__git_aliases)" ;;
2671 local completion_func="_git_${command//-/_}"
2672 declare -f $completion_func >/dev/null && $completion_func && return
2674 local expansion=$(__git_aliased_command "$command")
2675 if [ -n "$expansion" ]; then
2676 completion_func="_git_${expansion//-/_}"
2677 declare -f $completion_func >/dev/null && $completion_func
2683 if [[ -n ${ZSH_VERSION-} ]]; then
2687 # workaround zsh's bug that leaves 'words' as a special
2688 # variable in versions < 4.3.12
2692 local cur words cword prev
2693 _get_comp_words_by_ref -n =: cur words cword prev
2695 __git_has_doubledash && return
2697 local g="$(__gitdir)"
2699 if [ -f "$g/MERGE_HEAD" ]; then
2705 $__git_log_common_options
2706 $__git_log_gitk_options
2712 __git_complete_revlist
2715 complete -o bashdefault -o default -o nospace -F _git git 2>/dev/null \
2716 || complete -o default -o nospace -F _git git
2717 complete -o bashdefault -o default -o nospace -F _gitk gitk 2>/dev/null \
2718 || complete -o default -o nospace -F _gitk gitk
2720 # The following are necessary only for Cygwin, and only are needed
2721 # when the user has tab-completed the executable name and consequently
2722 # included the '.exe' suffix.
2724 if [ Cygwin = "$(uname -o 2>/dev/null)" ]; then
2725 complete -o bashdefault -o default -o nospace -F _git git.exe 2>/dev/null \
2726 || complete -o default -o nospace -F _git git.exe
2729 if [[ -n ${ZSH_VERSION-} ]]; then
2732 if [ $# -ne 2 ]; then
2733 echo "USAGE: $0 (-q|-s|-u) <option>" >&2
2741 echo "$0: invalid option: $2" >&2
2745 -q) setopt | grep -q "$option" ;;
2746 -u) unsetopt "$option" ;;
2747 -s) setopt "$option" ;;
2749 echo "$0: invalid flag: $1" >&2