test: remove httpd tests that ask for user
[git] / shared / git-completion.bash
1 # bash/zsh completion support for core Git.
2 #
3 # Copyright (C) 2006,2007 Shawn O. Pearce <spearce@spearce.org>
4 # Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/).
5 # Distributed under the GNU General Public License, version 2.0.
6 #
7 # The contained completion routines provide support for completing:
8 #
9 #    *) local and remote branch names
10 #    *) local and remote tag names
11 #    *) .git/remotes file names
12 #    *) git 'subcommands'
13 #    *) git email aliases for git-send-email
14 #    *) tree paths within 'ref:path/to/file' expressions
15 #    *) file paths within current working directory and index
16 #    *) common --long-options
17 #
18 # To use these routines:
19 #
20 #    1) Copy this file to somewhere (e.g. ~/.git-completion.sh).
21 #    2) Add the following line to your .bashrc/.zshrc:
22 #        source ~/.git-completion.sh
23 #    3) Consider changing your PS1 to also show the current branch,
24 #       see git-prompt.sh for details.
25 #
26 # If you use complex aliases of form '!f() { ... }; f', you can use the null
27 # command ':' as the first command in the function body to declare the desired
28 # completion style.  For example '!f() { : git commit ; ... }; f' will
29 # tell the completion to use commit completion.  This also works with aliases
30 # of form "!sh -c '...'".  For example, "!sh -c ': git commit ; ... '".
31
32 case "$COMP_WORDBREAKS" in
33 *:*) : great ;;
34 *)   COMP_WORDBREAKS="$COMP_WORDBREAKS:"
35 esac
36
37 # __gitdir accepts 0 or 1 arguments (i.e., location)
38 # returns location of .git repo
39 __gitdir ()
40 {
41         if [ -z "${1-}" ]; then
42                 if [ -n "${__git_dir-}" ]; then
43                         echo "$__git_dir"
44                 elif [ -n "${GIT_DIR-}" ]; then
45                         test -d "${GIT_DIR-}" || return 1
46                         echo "$GIT_DIR"
47                 elif [ -d .git ]; then
48                         echo .git
49                 else
50                         git rev-parse --git-dir 2>/dev/null
51                 fi
52         elif [ -d "$1/.git" ]; then
53                 echo "$1/.git"
54         else
55                 echo "$1"
56         fi
57 }
58
59 # The following function is based on code from:
60 #
61 #   bash_completion - programmable completion functions for bash 3.2+
62 #
63 #   Copyright © 2006-2008, Ian Macdonald <ian@caliban.org>
64 #             © 2009-2010, Bash Completion Maintainers
65 #                     <bash-completion-devel@lists.alioth.debian.org>
66 #
67 #   This program is free software; you can redistribute it and/or modify
68 #   it under the terms of the GNU General Public License as published by
69 #   the Free Software Foundation; either version 2, or (at your option)
70 #   any later version.
71 #
72 #   This program is distributed in the hope that it will be useful,
73 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
74 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
75 #   GNU General Public License for more details.
76 #
77 #   You should have received a copy of the GNU General Public License
78 #   along with this program; if not, write to the Free Software Foundation,
79 #   Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
80 #
81 #   The latest version of this software can be obtained here:
82 #
83 #   http://bash-completion.alioth.debian.org/
84 #
85 #   RELEASE: 2.x
86
87 # This function can be used to access a tokenized list of words
88 # on the command line:
89 #
90 #       __git_reassemble_comp_words_by_ref '=:'
91 #       if test "${words_[cword_-1]}" = -w
92 #       then
93 #               ...
94 #       fi
95 #
96 # The argument should be a collection of characters from the list of
97 # word completion separators (COMP_WORDBREAKS) to treat as ordinary
98 # characters.
99 #
100 # This is roughly equivalent to going back in time and setting
101 # COMP_WORDBREAKS to exclude those characters.  The intent is to
102 # make option types like --date=<type> and <rev>:<path> easy to
103 # recognize by treating each shell word as a single token.
104 #
105 # It is best not to set COMP_WORDBREAKS directly because the value is
106 # shared with other completion scripts.  By the time the completion
107 # function gets called, COMP_WORDS has already been populated so local
108 # changes to COMP_WORDBREAKS have no effect.
109 #
110 # Output: words_, cword_, cur_.
111
112 __git_reassemble_comp_words_by_ref()
113 {
114         local exclude i j first
115         # Which word separators to exclude?
116         exclude="${1//[^$COMP_WORDBREAKS]}"
117         cword_=$COMP_CWORD
118         if [ -z "$exclude" ]; then
119                 words_=("${COMP_WORDS[@]}")
120                 return
121         fi
122         # List of word completion separators has shrunk;
123         # re-assemble words to complete.
124         for ((i=0, j=0; i < ${#COMP_WORDS[@]}; i++, j++)); do
125                 # Append each nonempty word consisting of just
126                 # word separator characters to the current word.
127                 first=t
128                 while
129                         [ $i -gt 0 ] &&
130                         [ -n "${COMP_WORDS[$i]}" ] &&
131                         # word consists of excluded word separators
132                         [ "${COMP_WORDS[$i]//[^$exclude]}" = "${COMP_WORDS[$i]}" ]
133                 do
134                         # Attach to the previous token,
135                         # unless the previous token is the command name.
136                         if [ $j -ge 2 ] && [ -n "$first" ]; then
137                                 ((j--))
138                         fi
139                         first=
140                         words_[$j]=${words_[j]}${COMP_WORDS[i]}
141                         if [ $i = $COMP_CWORD ]; then
142                                 cword_=$j
143                         fi
144                         if (($i < ${#COMP_WORDS[@]} - 1)); then
145                                 ((i++))
146                         else
147                                 # Done.
148                                 return
149                         fi
150                 done
151                 words_[$j]=${words_[j]}${COMP_WORDS[i]}
152                 if [ $i = $COMP_CWORD ]; then
153                         cword_=$j
154                 fi
155         done
156 }
157
158 if ! type _get_comp_words_by_ref >/dev/null 2>&1; then
159 _get_comp_words_by_ref ()
160 {
161         local exclude cur_ words_ cword_
162         if [ "$1" = "-n" ]; then
163                 exclude=$2
164                 shift 2
165         fi
166         __git_reassemble_comp_words_by_ref "$exclude"
167         cur_=${words_[cword_]}
168         while [ $# -gt 0 ]; do
169                 case "$1" in
170                 cur)
171                         cur=$cur_
172                         ;;
173                 prev)
174                         prev=${words_[$cword_-1]}
175                         ;;
176                 words)
177                         words=("${words_[@]}")
178                         ;;
179                 cword)
180                         cword=$cword_
181                         ;;
182                 esac
183                 shift
184         done
185 }
186 fi
187
188 __gitcompappend ()
189 {
190         local x i=${#COMPREPLY[@]}
191         for x in $1; do
192                 if [[ "$x" == "$3"* ]]; then
193                         COMPREPLY[i++]="$2$x$4"
194                 fi
195         done
196 }
197
198 __gitcompadd ()
199 {
200         COMPREPLY=()
201         __gitcompappend "$@"
202 }
203
204 # Generates completion reply, appending a space to possible completion words,
205 # if necessary.
206 # It accepts 1 to 4 arguments:
207 # 1: List of possible completion words.
208 # 2: A prefix to be added to each possible completion word (optional).
209 # 3: Generate possible completion matches for this word (optional).
210 # 4: A suffix to be appended to each possible completion word (optional).
211 __gitcomp ()
212 {
213         local cur_="${3-$cur}"
214
215         case "$cur_" in
216         --*=)
217                 ;;
218         *)
219                 local c i=0 IFS=$' \t\n'
220                 for c in $1; do
221                         c="$c${4-}"
222                         if [[ $c == "$cur_"* ]]; then
223                                 case $c in
224                                 --*=*|*.) ;;
225                                 *) c="$c " ;;
226                                 esac
227                                 COMPREPLY[i++]="${2-}$c"
228                         fi
229                 done
230                 ;;
231         esac
232 }
233
234 # Variation of __gitcomp_nl () that appends to the existing list of
235 # completion candidates, COMPREPLY.
236 __gitcomp_nl_append ()
237 {
238         local IFS=$'\n'
239         __gitcompappend "$1" "${2-}" "${3-$cur}" "${4- }"
240 }
241
242 # Generates completion reply from newline-separated possible completion words
243 # by appending a space to all of them.
244 # It accepts 1 to 4 arguments:
245 # 1: List of possible completion words, separated by a single newline.
246 # 2: A prefix to be added to each possible completion word (optional).
247 # 3: Generate possible completion matches for this word (optional).
248 # 4: A suffix to be appended to each possible completion word instead of
249 #    the default space (optional).  If specified but empty, nothing is
250 #    appended.
251 __gitcomp_nl ()
252 {
253         COMPREPLY=()
254         __gitcomp_nl_append "$@"
255 }
256
257 # Generates completion reply with compgen from newline-separated possible
258 # completion filenames.
259 # It accepts 1 to 3 arguments:
260 # 1: List of possible completion filenames, separated by a single newline.
261 # 2: A directory prefix to be added to each possible completion filename
262 #    (optional).
263 # 3: Generate possible completion matches for this word (optional).
264 __gitcomp_file ()
265 {
266         local IFS=$'\n'
267
268         # XXX does not work when the directory prefix contains a tilde,
269         # since tilde expansion is not applied.
270         # This means that COMPREPLY will be empty and Bash default
271         # completion will be used.
272         __gitcompadd "$1" "${2-}" "${3-$cur}" ""
273
274         # use a hack to enable file mode in bash < 4
275         compopt -o filenames +o nospace 2>/dev/null ||
276         compgen -f /non-existing-dir/ > /dev/null
277 }
278
279 # Execute 'git ls-files', unless the --committable option is specified, in
280 # which case it runs 'git diff-index' to find out the files that can be
281 # committed.  It return paths relative to the directory specified in the first
282 # argument, and using the options specified in the second argument.
283 __git_ls_files_helper ()
284 {
285         if [ "$2" == "--committable" ]; then
286                 git -C "$1" diff-index --name-only --relative HEAD
287         else
288                 # NOTE: $2 is not quoted in order to support multiple options
289                 git -C "$1" ls-files --exclude-standard $2
290         fi 2>/dev/null
291 }
292
293
294 # __git_index_files accepts 1 or 2 arguments:
295 # 1: Options to pass to ls-files (required).
296 # 2: A directory path (optional).
297 #    If provided, only files within the specified directory are listed.
298 #    Sub directories are never recursed.  Path must have a trailing
299 #    slash.
300 __git_index_files ()
301 {
302         local dir="$(__gitdir)" root="${2-.}" file
303
304         if [ -d "$dir" ]; then
305                 __git_ls_files_helper "$root" "$1" |
306                 while read -r file; do
307                         case "$file" in
308                         ?*/*) echo "${file%%/*}" ;;
309                         *) echo "$file" ;;
310                         esac
311                 done | sort | uniq
312         fi
313 }
314
315 __git_heads ()
316 {
317         local dir="$(__gitdir)"
318         if [ -d "$dir" ]; then
319                 git --git-dir="$dir" for-each-ref --format='%(refname:short)' \
320                         refs/heads
321                 return
322         fi
323 }
324
325 __git_tags ()
326 {
327         local dir="$(__gitdir)"
328         if [ -d "$dir" ]; then
329                 git --git-dir="$dir" for-each-ref --format='%(refname:short)' \
330                         refs/tags
331                 return
332         fi
333 }
334
335 # __git_refs accepts 0, 1 (to pass to __gitdir), or 2 arguments
336 # presence of 2nd argument means use the guess heuristic employed
337 # by checkout for tracking branches
338 __git_refs ()
339 {
340         local i hash dir="$(__gitdir "${1-}")" track="${2-}"
341         local format refs
342         if [ -d "$dir" ]; then
343                 case "$cur" in
344                 refs|refs/*)
345                         format="refname"
346                         refs="${cur%/*}"
347                         track=""
348                         ;;
349                 *)
350                         for i in HEAD FETCH_HEAD ORIG_HEAD MERGE_HEAD; do
351                                 if [ -e "$dir/$i" ]; then echo $i; fi
352                         done
353                         format="refname:short"
354                         refs="refs/tags refs/heads refs/remotes"
355                         ;;
356                 esac
357                 git --git-dir="$dir" for-each-ref --format="%($format)" \
358                         $refs
359                 if [ -n "$track" ]; then
360                         # employ the heuristic used by git checkout
361                         # Try to find a remote branch that matches the completion word
362                         # but only output if the branch name is unique
363                         local ref entry
364                         git --git-dir="$dir" for-each-ref --shell --format="ref=%(refname:short)" \
365                                 "refs/remotes/" | \
366                         while read -r entry; do
367                                 eval "$entry"
368                                 ref="${ref#*/}"
369                                 if [[ "$ref" == "$cur"* ]]; then
370                                         echo "$ref"
371                                 fi
372                         done | sort | uniq -u
373                 fi
374                 return
375         fi
376         case "$cur" in
377         refs|refs/*)
378                 git ls-remote "$dir" "$cur*" 2>/dev/null | \
379                 while read -r hash i; do
380                         case "$i" in
381                         *^{}) ;;
382                         *) echo "$i" ;;
383                         esac
384                 done
385                 ;;
386         *)
387                 echo "HEAD"
388                 git for-each-ref --format="%(refname:short)" -- \
389                         "refs/remotes/$dir/" 2>/dev/null | sed -e "s#^$dir/##"
390                 ;;
391         esac
392 }
393
394 # __git_refs2 requires 1 argument (to pass to __git_refs)
395 __git_refs2 ()
396 {
397         local i
398         for i in $(__git_refs "$1"); do
399                 echo "$i:$i"
400         done
401 }
402
403 # __git_refs_remotes requires 1 argument (to pass to ls-remote)
404 __git_refs_remotes ()
405 {
406         local i hash
407         git ls-remote "$1" 'refs/heads/*' 2>/dev/null | \
408         while read -r hash i; do
409                 echo "$i:refs/remotes/$1/${i#refs/heads/}"
410         done
411 }
412
413 __git_remotes ()
414 {
415         local d="$(__gitdir)"
416         test -d "$d/remotes" && ls -1 "$d/remotes"
417         git --git-dir="$d" remote
418 }
419
420 __git_list_merge_strategies ()
421 {
422         git merge -s help 2>&1 |
423         sed -n -e '/[Aa]vailable strategies are: /,/^$/{
424                 s/\.$//
425                 s/.*://
426                 s/^[    ]*//
427                 s/[     ]*$//
428                 p
429         }'
430 }
431
432 __git_merge_strategies=
433 # 'git merge -s help' (and thus detection of the merge strategy
434 # list) fails, unfortunately, if run outside of any git working
435 # tree.  __git_merge_strategies is set to the empty string in
436 # that case, and the detection will be repeated the next time it
437 # is needed.
438 __git_compute_merge_strategies ()
439 {
440         test -n "$__git_merge_strategies" ||
441         __git_merge_strategies=$(__git_list_merge_strategies)
442 }
443
444 __git_complete_revlist_file ()
445 {
446         local pfx ls ref cur_="$cur"
447         case "$cur_" in
448         *..?*:*)
449                 return
450                 ;;
451         ?*:*)
452                 ref="${cur_%%:*}"
453                 cur_="${cur_#*:}"
454                 case "$cur_" in
455                 ?*/*)
456                         pfx="${cur_%/*}"
457                         cur_="${cur_##*/}"
458                         ls="$ref:$pfx"
459                         pfx="$pfx/"
460                         ;;
461                 *)
462                         ls="$ref"
463                         ;;
464                 esac
465
466                 case "$COMP_WORDBREAKS" in
467                 *:*) : great ;;
468                 *)   pfx="$ref:$pfx" ;;
469                 esac
470
471                 __gitcomp_nl "$(git --git-dir="$(__gitdir)" ls-tree "$ls" 2>/dev/null \
472                                 | sed '/^100... blob /{
473                                            s,^.*        ,,
474                                            s,$, ,
475                                        }
476                                        /^120000 blob /{
477                                            s,^.*        ,,
478                                            s,$, ,
479                                        }
480                                        /^040000 tree /{
481                                            s,^.*        ,,
482                                            s,$,/,
483                                        }
484                                        s/^.*    //')" \
485                         "$pfx" "$cur_" ""
486                 ;;
487         *...*)
488                 pfx="${cur_%...*}..."
489                 cur_="${cur_#*...}"
490                 __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_"
491                 ;;
492         *..*)
493                 pfx="${cur_%..*}.."
494                 cur_="${cur_#*..}"
495                 __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_"
496                 ;;
497         *)
498                 __gitcomp_nl "$(__git_refs)"
499                 ;;
500         esac
501 }
502
503
504 # __git_complete_index_file requires 1 argument:
505 # 1: the options to pass to ls-file
506 #
507 # The exception is --committable, which finds the files appropriate commit.
508 __git_complete_index_file ()
509 {
510         local pfx="" cur_="$cur"
511
512         case "$cur_" in
513         ?*/*)
514                 pfx="${cur_%/*}"
515                 cur_="${cur_##*/}"
516                 pfx="${pfx}/"
517                 ;;
518         esac
519
520         __gitcomp_file "$(__git_index_files "$1" ${pfx:+"$pfx"})" "$pfx" "$cur_"
521 }
522
523 __git_complete_file ()
524 {
525         __git_complete_revlist_file
526 }
527
528 __git_complete_revlist ()
529 {
530         __git_complete_revlist_file
531 }
532
533 __git_complete_remote_or_refspec ()
534 {
535         local cur_="$cur" cmd="${words[1]}"
536         local i c=2 remote="" pfx="" lhs=1 no_complete_refspec=0
537         if [ "$cmd" = "remote" ]; then
538                 ((c++))
539         fi
540         while [ $c -lt $cword ]; do
541                 i="${words[c]}"
542                 case "$i" in
543                 --mirror) [ "$cmd" = "push" ] && no_complete_refspec=1 ;;
544                 --all)
545                         case "$cmd" in
546                         push) no_complete_refspec=1 ;;
547                         fetch)
548                                 return
549                                 ;;
550                         *) ;;
551                         esac
552                         ;;
553                 -*) ;;
554                 *) remote="$i"; break ;;
555                 esac
556                 ((c++))
557         done
558         if [ -z "$remote" ]; then
559                 __gitcomp_nl "$(__git_remotes)"
560                 return
561         fi
562         if [ $no_complete_refspec = 1 ]; then
563                 return
564         fi
565         [ "$remote" = "." ] && remote=
566         case "$cur_" in
567         *:*)
568                 case "$COMP_WORDBREAKS" in
569                 *:*) : great ;;
570                 *)   pfx="${cur_%%:*}:" ;;
571                 esac
572                 cur_="${cur_#*:}"
573                 lhs=0
574                 ;;
575         +*)
576                 pfx="+"
577                 cur_="${cur_#+}"
578                 ;;
579         esac
580         case "$cmd" in
581         fetch)
582                 if [ $lhs = 1 ]; then
583                         __gitcomp_nl "$(__git_refs2 "$remote")" "$pfx" "$cur_"
584                 else
585                         __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_"
586                 fi
587                 ;;
588         pull|remote)
589                 if [ $lhs = 1 ]; then
590                         __gitcomp_nl "$(__git_refs "$remote")" "$pfx" "$cur_"
591                 else
592                         __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_"
593                 fi
594                 ;;
595         push)
596                 if [ $lhs = 1 ]; then
597                         __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_"
598                 else
599                         __gitcomp_nl "$(__git_refs "$remote")" "$pfx" "$cur_"
600                 fi
601                 ;;
602         esac
603 }
604
605 __git_complete_strategy ()
606 {
607         __git_compute_merge_strategies
608         case "$prev" in
609         -s|--strategy)
610                 __gitcomp "$__git_merge_strategies"
611                 return 0
612         esac
613         case "$cur" in
614         --strategy=*)
615                 __gitcomp "$__git_merge_strategies" "" "${cur##--strategy=}"
616                 return 0
617                 ;;
618         esac
619         return 1
620 }
621
622 __git_commands () {
623         if test -n "${GIT_TESTING_COMMAND_COMPLETION:-}"
624         then
625                 printf "%s" "${GIT_TESTING_COMMAND_COMPLETION}"
626         else
627                 git help -a|egrep '^  [a-zA-Z0-9]'
628         fi
629 }
630
631 __git_list_all_commands ()
632 {
633         local i IFS=" "$'\n'
634         for i in $(__git_commands)
635         do
636                 case $i in
637                 *--*)             : helper pattern;;
638                 *) echo $i;;
639                 esac
640         done
641 }
642
643 __git_all_commands=
644 __git_compute_all_commands ()
645 {
646         test -n "$__git_all_commands" ||
647         __git_all_commands=$(__git_list_all_commands)
648 }
649
650 __git_list_porcelain_commands ()
651 {
652         local i IFS=" "$'\n'
653         __git_compute_all_commands
654         for i in $__git_all_commands
655         do
656                 case $i in
657                 *--*)             : helper pattern;;
658                 applymbox)        : ask gittus;;
659                 applypatch)       : ask gittus;;
660                 archimport)       : import;;
661                 cat-file)         : plumbing;;
662                 check-attr)       : plumbing;;
663                 check-ignore)     : plumbing;;
664                 check-mailmap)    : plumbing;;
665                 check-ref-format) : plumbing;;
666                 checkout-index)   : plumbing;;
667                 column)           : internal helper;;
668                 commit-tree)      : plumbing;;
669                 count-objects)    : infrequent;;
670                 credential)       : credentials;;
671                 credential-*)     : credentials helper;;
672                 cvsexportcommit)  : export;;
673                 cvsimport)        : import;;
674                 cvsserver)        : daemon;;
675                 daemon)           : daemon;;
676                 diff-files)       : plumbing;;
677                 diff-index)       : plumbing;;
678                 diff-tree)        : plumbing;;
679                 fast-import)      : import;;
680                 fast-export)      : export;;
681                 fsck-objects)     : plumbing;;
682                 fetch-pack)       : plumbing;;
683                 fmt-merge-msg)    : plumbing;;
684                 for-each-ref)     : plumbing;;
685                 hash-object)      : plumbing;;
686                 http-*)           : transport;;
687                 index-pack)       : plumbing;;
688                 init-db)          : deprecated;;
689                 local-fetch)      : plumbing;;
690                 ls-files)         : plumbing;;
691                 ls-remote)        : plumbing;;
692                 ls-tree)          : plumbing;;
693                 mailinfo)         : plumbing;;
694                 mailsplit)        : plumbing;;
695                 merge-*)          : plumbing;;
696                 mktree)           : plumbing;;
697                 mktag)            : plumbing;;
698                 pack-objects)     : plumbing;;
699                 pack-redundant)   : plumbing;;
700                 pack-refs)        : plumbing;;
701                 parse-remote)     : plumbing;;
702                 patch-id)         : plumbing;;
703                 prune)            : plumbing;;
704                 prune-packed)     : plumbing;;
705                 quiltimport)      : import;;
706                 read-tree)        : plumbing;;
707                 receive-pack)     : plumbing;;
708                 remote-*)         : transport;;
709                 rerere)           : plumbing;;
710                 rev-list)         : plumbing;;
711                 rev-parse)        : plumbing;;
712                 runstatus)        : plumbing;;
713                 sh-setup)         : internal;;
714                 shell)            : daemon;;
715                 show-ref)         : plumbing;;
716                 send-pack)        : plumbing;;
717                 show-index)       : plumbing;;
718                 ssh-*)            : transport;;
719                 stripspace)       : plumbing;;
720                 symbolic-ref)     : plumbing;;
721                 unpack-file)      : plumbing;;
722                 unpack-objects)   : plumbing;;
723                 update-index)     : plumbing;;
724                 update-ref)       : plumbing;;
725                 update-server-info) : daemon;;
726                 upload-archive)   : plumbing;;
727                 upload-pack)      : plumbing;;
728                 write-tree)       : plumbing;;
729                 var)              : infrequent;;
730                 verify-pack)      : infrequent;;
731                 verify-tag)       : plumbing;;
732                 *) echo $i;;
733                 esac
734         done
735 }
736
737 __git_porcelain_commands=
738 __git_compute_porcelain_commands ()
739 {
740         test -n "$__git_porcelain_commands" ||
741         __git_porcelain_commands=$(__git_list_porcelain_commands)
742 }
743
744 # Lists all set config variables starting with the given section prefix,
745 # with the prefix removed.
746 __git_get_config_variables ()
747 {
748         local section="$1" i IFS=$'\n'
749         for i in $(git --git-dir="$(__gitdir)" config --name-only --get-regexp "^$section\..*" 2>/dev/null); do
750                 echo "${i#$section.}"
751         done
752 }
753
754 __git_pretty_aliases ()
755 {
756         __git_get_config_variables "pretty"
757 }
758
759 __git_aliases ()
760 {
761         __git_get_config_variables "alias"
762 }
763
764 # __git_aliased_command requires 1 argument
765 __git_aliased_command ()
766 {
767         local word cmdline=$(git --git-dir="$(__gitdir)" \
768                 config --get "alias.$1")
769         for word in $cmdline; do
770                 case "$word" in
771                 \!gitk|gitk)
772                         echo "gitk"
773                         return
774                         ;;
775                 \!*)    : shell command alias ;;
776                 -*)     : option ;;
777                 *=*)    : setting env ;;
778                 git)    : git itself ;;
779                 \(\))   : skip parens of shell function definition ;;
780                 {)      : skip start of shell helper function ;;
781                 :)      : skip null command ;;
782                 \'*)    : skip opening quote after sh -c ;;
783                 *)
784                         echo "$word"
785                         return
786                 esac
787         done
788 }
789
790 # __git_find_on_cmdline requires 1 argument
791 __git_find_on_cmdline ()
792 {
793         local word subcommand c=1
794         while [ $c -lt $cword ]; do
795                 word="${words[c]}"
796                 for subcommand in $1; do
797                         if [ "$subcommand" = "$word" ]; then
798                                 echo "$subcommand"
799                                 return
800                         fi
801                 done
802                 ((c++))
803         done
804 }
805
806 __git_has_doubledash ()
807 {
808         local c=1
809         while [ $c -lt $cword ]; do
810                 if [ "--" = "${words[c]}" ]; then
811                         return 0
812                 fi
813                 ((c++))
814         done
815         return 1
816 }
817
818 # Try to count non option arguments passed on the command line for the
819 # specified git command.
820 # When options are used, it is necessary to use the special -- option to
821 # tell the implementation were non option arguments begin.
822 # XXX this can not be improved, since options can appear everywhere, as
823 # an example:
824 #       git mv x -n y
825 #
826 # __git_count_arguments requires 1 argument: the git command executed.
827 __git_count_arguments ()
828 {
829         local word i c=0
830
831         # Skip "git" (first argument)
832         for ((i=1; i < ${#words[@]}; i++)); do
833                 word="${words[i]}"
834
835                 case "$word" in
836                         --)
837                                 # Good; we can assume that the following are only non
838                                 # option arguments.
839                                 ((c = 0))
840                                 ;;
841                         "$1")
842                                 # Skip the specified git command and discard git
843                                 # main options
844                                 ((c = 0))
845                                 ;;
846                         ?*)
847                                 ((c++))
848                                 ;;
849                 esac
850         done
851
852         printf "%d" $c
853 }
854
855 __git_whitespacelist="nowarn warn error error-all fix"
856
857 _git_am ()
858 {
859         local dir="$(__gitdir)"
860         if [ -d "$dir"/rebase-apply ]; then
861                 __gitcomp "--skip --continue --resolved --abort"
862                 return
863         fi
864         case "$cur" in
865         --whitespace=*)
866                 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
867                 return
868                 ;;
869         --*)
870                 __gitcomp "
871                         --3way --committer-date-is-author-date --ignore-date
872                         --ignore-whitespace --ignore-space-change
873                         --interactive --keep --no-utf8 --signoff --utf8
874                         --whitespace= --scissors
875                         "
876                 return
877         esac
878 }
879
880 _git_apply ()
881 {
882         case "$cur" in
883         --whitespace=*)
884                 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
885                 return
886                 ;;
887         --*)
888                 __gitcomp "
889                         --stat --numstat --summary --check --index
890                         --cached --index-info --reverse --reject --unidiff-zero
891                         --apply --no-add --exclude= --staged
892                         --ignore-whitespace --ignore-space-change
893                         --whitespace= --inaccurate-eof --verbose
894                         "
895                 return
896         esac
897 }
898
899 _git_add ()
900 {
901         case "$cur" in
902         --*)
903                 __gitcomp "
904                         --interactive --refresh --patch --update --dry-run
905                         --ignore-errors --intent-to-add
906                         "
907                 return
908         esac
909
910         # XXX should we check for --update and --all options ?
911         __git_complete_index_file "--others --modified --directory --no-empty-directory"
912 }
913
914 _git_archive ()
915 {
916         case "$cur" in
917         --format=*)
918                 __gitcomp "$(git archive --list)" "" "${cur##--format=}"
919                 return
920                 ;;
921         --remote=*)
922                 __gitcomp_nl "$(__git_remotes)" "" "${cur##--remote=}"
923                 return
924                 ;;
925         --*)
926                 __gitcomp "
927                         --format= --list --verbose
928                         --prefix= --remote= --exec=
929                         "
930                 return
931                 ;;
932         esac
933         __git_complete_file
934 }
935
936 _git_bisect ()
937 {
938         __git_has_doubledash && return
939
940         local subcommands="start bad good skip reset visualize replay log run"
941         local subcommand="$(__git_find_on_cmdline "$subcommands")"
942         if [ -z "$subcommand" ]; then
943                 if [ -f "$(__gitdir)"/BISECT_START ]; then
944                         __gitcomp "$subcommands"
945                 else
946                         __gitcomp "replay start"
947                 fi
948                 return
949         fi
950
951         case "$subcommand" in
952         bad|good|reset|skip|start)
953                 __gitcomp_nl "$(__git_refs)"
954                 ;;
955         *)
956                 ;;
957         esac
958 }
959
960 _git_branch ()
961 {
962         local i c=1 only_local_ref="n" has_r="n"
963
964         while [ $c -lt $cword ]; do
965                 i="${words[c]}"
966                 case "$i" in
967                 -d|-m)  only_local_ref="y" ;;
968                 -r)     has_r="y" ;;
969                 esac
970                 ((c++))
971         done
972
973         case "$cur" in
974         --set-upstream-to=*)
975                 __gitcomp_nl "$(__git_refs)" "" "${cur##--set-upstream-to=}"
976                 ;;
977         --*)
978                 __gitcomp "
979                         --color --no-color --verbose --abbrev= --no-abbrev
980                         --track --no-track --contains --merged --no-merged
981                         --set-upstream-to= --edit-description --list
982                         --unset-upstream
983                         "
984                 ;;
985         *)
986                 if [ $only_local_ref = "y" -a $has_r = "n" ]; then
987                         __gitcomp_nl "$(__git_heads)"
988                 else
989                         __gitcomp_nl "$(__git_refs)"
990                 fi
991                 ;;
992         esac
993 }
994
995 _git_bundle ()
996 {
997         local cmd="${words[2]}"
998         case "$cword" in
999         2)
1000                 __gitcomp "create list-heads verify unbundle"
1001                 ;;
1002         3)
1003                 # looking for a file
1004                 ;;
1005         *)
1006                 case "$cmd" in
1007                         create)
1008                                 __git_complete_revlist
1009                         ;;
1010                 esac
1011                 ;;
1012         esac
1013 }
1014
1015 _git_checkout ()
1016 {
1017         __git_has_doubledash && return
1018
1019         case "$cur" in
1020         --conflict=*)
1021                 __gitcomp "diff3 merge" "" "${cur##--conflict=}"
1022                 ;;
1023         --*)
1024                 __gitcomp "
1025                         --quiet --ours --theirs --track --no-track --merge
1026                         --conflict= --orphan --patch
1027                         "
1028                 ;;
1029         *)
1030                 # check if --track, --no-track, or --no-guess was specified
1031                 # if so, disable DWIM mode
1032                 local flags="--track --no-track --no-guess" track=1
1033                 if [ -n "$(__git_find_on_cmdline "$flags")" ]; then
1034                         track=''
1035                 fi
1036                 __gitcomp_nl "$(__git_refs '' $track)"
1037                 ;;
1038         esac
1039 }
1040
1041 _git_cherry ()
1042 {
1043         __gitcomp_nl "$(__git_refs)"
1044 }
1045
1046 _git_cherry_pick ()
1047 {
1048         local dir="$(__gitdir)"
1049         if [ -f "$dir"/CHERRY_PICK_HEAD ]; then
1050                 __gitcomp "--continue --quit --abort"
1051                 return
1052         fi
1053         case "$cur" in
1054         --*)
1055                 __gitcomp "--edit --no-commit --signoff --strategy= --mainline"
1056                 ;;
1057         *)
1058                 __gitcomp_nl "$(__git_refs)"
1059                 ;;
1060         esac
1061 }
1062
1063 _git_clean ()
1064 {
1065         case "$cur" in
1066         --*)
1067                 __gitcomp "--dry-run --quiet"
1068                 return
1069                 ;;
1070         esac
1071
1072         # XXX should we check for -x option ?
1073         __git_complete_index_file "--others --directory"
1074 }
1075
1076 _git_clone ()
1077 {
1078         case "$cur" in
1079         --*)
1080                 __gitcomp "
1081                         --local
1082                         --no-hardlinks
1083                         --shared
1084                         --reference
1085                         --quiet
1086                         --no-checkout
1087                         --bare
1088                         --mirror
1089                         --origin
1090                         --upload-pack
1091                         --template=
1092                         --depth
1093                         --single-branch
1094                         --branch
1095                         "
1096                 return
1097                 ;;
1098         esac
1099 }
1100
1101 _git_commit ()
1102 {
1103         case "$prev" in
1104         -c|-C)
1105                 __gitcomp_nl "$(__git_refs)" "" "${cur}"
1106                 return
1107                 ;;
1108         esac
1109
1110         case "$cur" in
1111         --cleanup=*)
1112                 __gitcomp "default scissors strip verbatim whitespace
1113                         " "" "${cur##--cleanup=}"
1114                 return
1115                 ;;
1116         --reuse-message=*|--reedit-message=*|\
1117         --fixup=*|--squash=*)
1118                 __gitcomp_nl "$(__git_refs)" "" "${cur#*=}"
1119                 return
1120                 ;;
1121         --untracked-files=*)
1122                 __gitcomp "all no normal" "" "${cur##--untracked-files=}"
1123                 return
1124                 ;;
1125         --*)
1126                 __gitcomp "
1127                         --all --author= --signoff --verify --no-verify
1128                         --edit --no-edit
1129                         --amend --include --only --interactive
1130                         --dry-run --reuse-message= --reedit-message=
1131                         --reset-author --file= --message= --template=
1132                         --cleanup= --untracked-files --untracked-files=
1133                         --verbose --quiet --fixup= --squash=
1134                         "
1135                 return
1136         esac
1137
1138         if git rev-parse --verify --quiet HEAD >/dev/null; then
1139                 __git_complete_index_file "--committable"
1140         else
1141                 # This is the first commit
1142                 __git_complete_index_file "--cached"
1143         fi
1144 }
1145
1146 _git_describe ()
1147 {
1148         case "$cur" in
1149         --*)
1150                 __gitcomp "
1151                         --all --tags --contains --abbrev= --candidates=
1152                         --exact-match --debug --long --match --always
1153                         "
1154                 return
1155         esac
1156         __gitcomp_nl "$(__git_refs)"
1157 }
1158
1159 __git_diff_algorithms="myers minimal patience histogram"
1160
1161 __git_diff_common_options="--stat --numstat --shortstat --summary
1162                         --patch-with-stat --name-only --name-status --color
1163                         --no-color --color-words --no-renames --check
1164                         --full-index --binary --abbrev --diff-filter=
1165                         --find-copies-harder
1166                         --text --ignore-space-at-eol --ignore-space-change
1167                         --ignore-all-space --ignore-blank-lines --exit-code
1168                         --quiet --ext-diff --no-ext-diff
1169                         --no-prefix --src-prefix= --dst-prefix=
1170                         --inter-hunk-context=
1171                         --patience --histogram --minimal
1172                         --raw --word-diff --word-diff-regex=
1173                         --dirstat --dirstat= --dirstat-by-file
1174                         --dirstat-by-file= --cumulative
1175                         --diff-algorithm=
1176 "
1177
1178 _git_diff ()
1179 {
1180         __git_has_doubledash && return
1181
1182         case "$cur" in
1183         --diff-algorithm=*)
1184                 __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}"
1185                 return
1186                 ;;
1187         --*)
1188                 __gitcomp "--cached --staged --pickaxe-all --pickaxe-regex
1189                         --base --ours --theirs --no-index
1190                         $__git_diff_common_options
1191                         "
1192                 return
1193                 ;;
1194         esac
1195         __git_complete_revlist_file
1196 }
1197
1198 __git_mergetools_common="diffuse diffmerge ecmerge emerge kdiff3 meld opendiff
1199                         tkdiff vimdiff gvimdiff xxdiff araxis p4merge bc codecompare
1200 "
1201
1202 _git_difftool ()
1203 {
1204         __git_has_doubledash && return
1205
1206         case "$cur" in
1207         --tool=*)
1208                 __gitcomp "$__git_mergetools_common kompare" "" "${cur##--tool=}"
1209                 return
1210                 ;;
1211         --*)
1212                 __gitcomp "--cached --staged --pickaxe-all --pickaxe-regex
1213                         --base --ours --theirs
1214                         --no-renames --diff-filter= --find-copies-harder
1215                         --relative --ignore-submodules
1216                         --tool="
1217                 return
1218                 ;;
1219         esac
1220         __git_complete_revlist_file
1221 }
1222
1223 __git_fetch_recurse_submodules="yes on-demand no"
1224
1225 __git_fetch_options="
1226         --quiet --verbose --append --upload-pack --force --keep --depth=
1227         --tags --no-tags --all --prune --dry-run --recurse-submodules=
1228         --no-recurse-submodules --unshallow --update-shallow --multiple
1229         --submodule-prefix= --update-head-ok --progress
1230 "
1231
1232 _git_fetch ()
1233 {
1234         case "$cur" in
1235         --recurse-submodules=*)
1236                 __gitcomp "$__git_fetch_recurse_submodules" "" "${cur##--recurse-submodules=}"
1237                 return
1238                 ;;
1239         --*)
1240                 __gitcomp "$__git_fetch_options"
1241                 return
1242                 ;;
1243         esac
1244         __git_complete_remote_or_refspec
1245 }
1246
1247 __git_format_patch_options="
1248         --stdout --attach --no-attach --thread --thread= --no-thread
1249         --numbered --start-number --numbered-files --keep-subject --signoff
1250         --signature --no-signature --in-reply-to= --cc= --full-index --binary
1251         --not --all --cover-letter --no-prefix --src-prefix= --dst-prefix=
1252         --inline --suffix= --ignore-if-in-upstream --subject-prefix=
1253         --output-directory --reroll-count --to= --quiet --notes
1254 "
1255
1256 _git_format_patch ()
1257 {
1258         case "$cur" in
1259         --thread=*)
1260                 __gitcomp "
1261                         deep shallow
1262                         " "" "${cur##--thread=}"
1263                 return
1264                 ;;
1265         --*)
1266                 __gitcomp "$__git_format_patch_options"
1267                 return
1268                 ;;
1269         esac
1270         __git_complete_revlist
1271 }
1272
1273 _git_fsck ()
1274 {
1275         case "$cur" in
1276         --*)
1277                 __gitcomp "
1278                         --tags --root --unreachable --cache --no-reflogs --full
1279                         --strict --verbose --lost-found
1280                         "
1281                 return
1282                 ;;
1283         esac
1284 }
1285
1286 _git_gc ()
1287 {
1288         case "$cur" in
1289         --*)
1290                 __gitcomp "--prune --aggressive"
1291                 return
1292                 ;;
1293         esac
1294 }
1295
1296 _git_gitk ()
1297 {
1298         _gitk
1299 }
1300
1301 __git_match_ctag() {
1302         awk "/^${1//\//\\/}/ { print \$1 }" "$2"
1303 }
1304
1305 _git_grep ()
1306 {
1307         __git_has_doubledash && return
1308
1309         case "$cur" in
1310         --*)
1311                 __gitcomp "
1312                         --cached --staged
1313                         --text --ignore-case --word-regexp --invert-match
1314                         --full-name --line-number
1315                         --extended-regexp --basic-regexp --fixed-strings
1316                         --perl-regexp
1317                         --threads
1318                         --files-with-matches --name-only
1319                         --files-without-match
1320                         --max-depth
1321                         --count
1322                         --and --or --not --all-match
1323                         "
1324                 return
1325                 ;;
1326         esac
1327
1328         case "$cword,$prev" in
1329         2,*|*,-*)
1330                 if test -r tags; then
1331                         __gitcomp_nl "$(__git_match_ctag "$cur" tags)"
1332                         return
1333                 fi
1334                 ;;
1335         esac
1336
1337         __gitcomp_nl "$(__git_refs)"
1338 }
1339
1340 _git_help ()
1341 {
1342         case "$cur" in
1343         --*)
1344                 __gitcomp "--all --info --man --web"
1345                 return
1346                 ;;
1347         esac
1348         __git_compute_all_commands
1349         __gitcomp "$__git_all_commands $(__git_aliases)
1350                 attributes cli core-tutorial cvs-migration
1351                 diffcore gitk glossary hooks ignore modules
1352                 namespaces repository-layout tutorial tutorial-2
1353                 workflows
1354                 "
1355 }
1356
1357 _git_init ()
1358 {
1359         case "$cur" in
1360         --shared=*)
1361                 __gitcomp "
1362                         false true umask group all world everybody
1363                         " "" "${cur##--shared=}"
1364                 return
1365                 ;;
1366         --*)
1367                 __gitcomp "--quiet --bare --template= --shared --shared="
1368                 return
1369                 ;;
1370         esac
1371 }
1372
1373 _git_ls_files ()
1374 {
1375         case "$cur" in
1376         --*)
1377                 __gitcomp "--cached --deleted --modified --others --ignored
1378                         --stage --directory --no-empty-directory --unmerged
1379                         --killed --exclude= --exclude-from=
1380                         --exclude-per-directory= --exclude-standard
1381                         --error-unmatch --with-tree= --full-name
1382                         --abbrev --ignored --exclude-per-directory
1383                         "
1384                 return
1385                 ;;
1386         esac
1387
1388         # XXX ignore options like --modified and always suggest all cached
1389         # files.
1390         __git_complete_index_file "--cached"
1391 }
1392
1393 _git_ls_remote ()
1394 {
1395         __gitcomp_nl "$(__git_remotes)"
1396 }
1397
1398 _git_ls_tree ()
1399 {
1400         __git_complete_file
1401 }
1402
1403 # Options that go well for log, shortlog and gitk
1404 __git_log_common_options="
1405         --not --all
1406         --branches --tags --remotes
1407         --first-parent --merges --no-merges
1408         --max-count=
1409         --max-age= --since= --after=
1410         --min-age= --until= --before=
1411         --min-parents= --max-parents=
1412         --no-min-parents --no-max-parents
1413 "
1414 # Options that go well for log and gitk (not shortlog)
1415 __git_log_gitk_options="
1416         --dense --sparse --full-history
1417         --simplify-merges --simplify-by-decoration
1418         --left-right --notes --no-notes
1419 "
1420 # Options that go well for log and shortlog (not gitk)
1421 __git_log_shortlog_options="
1422         --author= --committer= --grep=
1423         --all-match --invert-grep
1424 "
1425
1426 __git_log_pretty_formats="oneline short medium full fuller email raw format:"
1427 __git_log_date_formats="relative iso8601 rfc2822 short local default raw"
1428
1429 _git_log ()
1430 {
1431         __git_has_doubledash && return
1432
1433         local g="$(git rev-parse --git-dir 2>/dev/null)"
1434         local merge=""
1435         if [ -f "$g/MERGE_HEAD" ]; then
1436                 merge="--merge"
1437         fi
1438         case "$cur" in
1439         --pretty=*|--format=*)
1440                 __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
1441                         " "" "${cur#*=}"
1442                 return
1443                 ;;
1444         --date=*)
1445                 __gitcomp "$__git_log_date_formats" "" "${cur##--date=}"
1446                 return
1447                 ;;
1448         --decorate=*)
1449                 __gitcomp "full short no" "" "${cur##--decorate=}"
1450                 return
1451                 ;;
1452         --*)
1453                 __gitcomp "
1454                         $__git_log_common_options
1455                         $__git_log_shortlog_options
1456                         $__git_log_gitk_options
1457                         --root --topo-order --date-order --reverse
1458                         --follow --full-diff
1459                         --abbrev-commit --abbrev=
1460                         --relative-date --date=
1461                         --pretty= --format= --oneline
1462                         --show-signature
1463                         --cherry-pick
1464                         --graph
1465                         --decorate --decorate=
1466                         --walk-reflogs
1467                         --parents --children
1468                         $merge
1469                         $__git_diff_common_options
1470                         --pickaxe-all --pickaxe-regex
1471                         "
1472                 return
1473                 ;;
1474         esac
1475         __git_complete_revlist
1476 }
1477
1478 # Common merge options shared by git-merge(1) and git-pull(1).
1479 __git_merge_options="
1480         --no-commit --no-stat --log --no-log --squash --strategy
1481         --commit --stat --no-squash --ff --no-ff --ff-only --edit --no-edit
1482         --verify-signatures --no-verify-signatures --gpg-sign
1483         --quiet --verbose --progress --no-progress
1484 "
1485
1486 _git_merge ()
1487 {
1488         __git_complete_strategy && return
1489
1490         case "$cur" in
1491         --*)
1492                 __gitcomp "$__git_merge_options
1493                         --rerere-autoupdate --no-rerere-autoupdate --abort"
1494                 return
1495         esac
1496         __gitcomp_nl "$(__git_refs)"
1497 }
1498
1499 _git_mergetool ()
1500 {
1501         case "$cur" in
1502         --tool=*)
1503                 __gitcomp "$__git_mergetools_common tortoisemerge" "" "${cur##--tool=}"
1504                 return
1505                 ;;
1506         --*)
1507                 __gitcomp "--tool="
1508                 return
1509                 ;;
1510         esac
1511 }
1512
1513 _git_merge_base ()
1514 {
1515         case "$cur" in
1516         --*)
1517                 __gitcomp "--octopus --independent --is-ancestor --fork-point"
1518                 return
1519                 ;;
1520         esac
1521         __gitcomp_nl "$(__git_refs)"
1522 }
1523
1524 _git_mv ()
1525 {
1526         case "$cur" in
1527         --*)
1528                 __gitcomp "--dry-run"
1529                 return
1530                 ;;
1531         esac
1532
1533         if [ $(__git_count_arguments "mv") -gt 0 ]; then
1534                 # We need to show both cached and untracked files (including
1535                 # empty directories) since this may not be the last argument.
1536                 __git_complete_index_file "--cached --others --directory"
1537         else
1538                 __git_complete_index_file "--cached"
1539         fi
1540 }
1541
1542 _git_name_rev ()
1543 {
1544         __gitcomp "--tags --all --stdin"
1545 }
1546
1547 _git_notes ()
1548 {
1549         local subcommands='add append copy edit list prune remove show'
1550         local subcommand="$(__git_find_on_cmdline "$subcommands")"
1551
1552         case "$subcommand,$cur" in
1553         ,--*)
1554                 __gitcomp '--ref'
1555                 ;;
1556         ,*)
1557                 case "$prev" in
1558                 --ref)
1559                         __gitcomp_nl "$(__git_refs)"
1560                         ;;
1561                 *)
1562                         __gitcomp "$subcommands --ref"
1563                         ;;
1564                 esac
1565                 ;;
1566         add,--reuse-message=*|append,--reuse-message=*|\
1567         add,--reedit-message=*|append,--reedit-message=*)
1568                 __gitcomp_nl "$(__git_refs)" "" "${cur#*=}"
1569                 ;;
1570         add,--*|append,--*)
1571                 __gitcomp '--file= --message= --reedit-message=
1572                                 --reuse-message='
1573                 ;;
1574         copy,--*)
1575                 __gitcomp '--stdin'
1576                 ;;
1577         prune,--*)
1578                 __gitcomp '--dry-run --verbose'
1579                 ;;
1580         prune,*)
1581                 ;;
1582         *)
1583                 case "$prev" in
1584                 -m|-F)
1585                         ;;
1586                 *)
1587                         __gitcomp_nl "$(__git_refs)"
1588                         ;;
1589                 esac
1590                 ;;
1591         esac
1592 }
1593
1594 _git_pull ()
1595 {
1596         __git_complete_strategy && return
1597
1598         case "$cur" in
1599         --recurse-submodules=*)
1600                 __gitcomp "$__git_fetch_recurse_submodules" "" "${cur##--recurse-submodules=}"
1601                 return
1602                 ;;
1603         --*)
1604                 __gitcomp "
1605                         --rebase --no-rebase
1606                         $__git_merge_options
1607                         $__git_fetch_options
1608                 "
1609                 return
1610                 ;;
1611         esac
1612         __git_complete_remote_or_refspec
1613 }
1614
1615 __git_push_recurse_submodules="check on-demand"
1616
1617 __git_complete_force_with_lease ()
1618 {
1619         local cur_=$1
1620
1621         case "$cur_" in
1622         --*=)
1623                 ;;
1624         *:*)
1625                 __gitcomp_nl "$(__git_refs)" "" "${cur_#*:}"
1626                 ;;
1627         *)
1628                 __gitcomp_nl "$(__git_refs)" "" "$cur_"
1629                 ;;
1630         esac
1631 }
1632
1633 _git_push ()
1634 {
1635         case "$prev" in
1636         --repo)
1637                 __gitcomp_nl "$(__git_remotes)"
1638                 return
1639                 ;;
1640         --recurse-submodules)
1641                 __gitcomp "$__git_push_recurse_submodules"
1642                 return
1643                 ;;
1644         esac
1645         case "$cur" in
1646         --repo=*)
1647                 __gitcomp_nl "$(__git_remotes)" "" "${cur##--repo=}"
1648                 return
1649                 ;;
1650         --recurse-submodules=*)
1651                 __gitcomp "$__git_push_recurse_submodules" "" "${cur##--recurse-submodules=}"
1652                 return
1653                 ;;
1654         --force-with-lease=*)
1655                 __git_complete_force_with_lease "${cur##--force-with-lease=}"
1656                 return
1657                 ;;
1658         --*)
1659                 __gitcomp "
1660                         --all --mirror --tags --dry-run --force --verbose
1661                         --quiet --prune --delete --follow-tags
1662                         --receive-pack= --repo= --set-upstream
1663                         --force-with-lease --force-with-lease= --recurse-submodules=
1664                 "
1665                 return
1666                 ;;
1667         esac
1668         __git_complete_remote_or_refspec
1669 }
1670
1671 _git_rebase ()
1672 {
1673         local dir="$(__gitdir)"
1674         if [ -f "$dir"/rebase-merge/interactive ]; then
1675                 __gitcomp "--continue --skip --abort --edit-todo"
1676                 return
1677         elif [ -d "$dir"/rebase-apply ] || [ -d "$dir"/rebase-merge ]; then
1678                 __gitcomp "--continue --skip --abort"
1679                 return
1680         fi
1681         __git_complete_strategy && return
1682         case "$cur" in
1683         --whitespace=*)
1684                 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
1685                 return
1686                 ;;
1687         --*)
1688                 __gitcomp "
1689                         --onto --merge --strategy --interactive
1690                         --preserve-merges --stat --no-stat
1691                         --committer-date-is-author-date --ignore-date
1692                         --ignore-whitespace --whitespace=
1693                         --autosquash --no-autosquash
1694                         --fork-point --no-fork-point
1695                         --autostash --no-autostash
1696                         --verify --no-verify
1697                         --keep-empty --root --force-rebase --no-ff
1698                         --exec
1699                         "
1700
1701                 return
1702         esac
1703         __gitcomp_nl "$(__git_refs)"
1704 }
1705
1706 _git_reflog ()
1707 {
1708         local subcommands="show delete expire"
1709         local subcommand="$(__git_find_on_cmdline "$subcommands")"
1710
1711         if [ -z "$subcommand" ]; then
1712                 __gitcomp "$subcommands"
1713         else
1714                 __gitcomp_nl "$(__git_refs)"
1715         fi
1716 }
1717
1718 __git_send_email_confirm_options="always never auto cc compose"
1719 __git_send_email_suppresscc_options="author self cc bodycc sob cccmd body all"
1720
1721 _git_send_email ()
1722 {
1723         case "$prev" in
1724         --to|--cc|--bcc|--from)
1725                 __gitcomp "
1726                 $(git --git-dir="$(__gitdir)" send-email --dump-aliases 2>/dev/null)
1727                 "
1728                 return
1729                 ;;
1730         esac
1731
1732         case "$cur" in
1733         --confirm=*)
1734                 __gitcomp "
1735                         $__git_send_email_confirm_options
1736                         " "" "${cur##--confirm=}"
1737                 return
1738                 ;;
1739         --suppress-cc=*)
1740                 __gitcomp "
1741                         $__git_send_email_suppresscc_options
1742                         " "" "${cur##--suppress-cc=}"
1743
1744                 return
1745                 ;;
1746         --smtp-encryption=*)
1747                 __gitcomp "ssl tls" "" "${cur##--smtp-encryption=}"
1748                 return
1749                 ;;
1750         --thread=*)
1751                 __gitcomp "
1752                         deep shallow
1753                         " "" "${cur##--thread=}"
1754                 return
1755                 ;;
1756         --to=*|--cc=*|--bcc=*|--from=*)
1757                 __gitcomp "
1758                 $(git --git-dir="$(__gitdir)" send-email --dump-aliases 2>/dev/null)
1759                 " "" "${cur#--*=}"
1760                 return
1761                 ;;
1762         --*)
1763                 __gitcomp "--annotate --bcc --cc --cc-cmd --chain-reply-to
1764                         --compose --confirm= --dry-run --envelope-sender
1765                         --from --identity
1766                         --in-reply-to --no-chain-reply-to --no-signed-off-by-cc
1767                         --no-suppress-from --no-thread --quiet
1768                         --signed-off-by-cc --smtp-pass --smtp-server
1769                         --smtp-server-port --smtp-encryption= --smtp-user
1770                         --subject --suppress-cc= --suppress-from --thread --to
1771                         --validate --no-validate
1772                         $__git_format_patch_options"
1773                 return
1774                 ;;
1775         esac
1776         __git_complete_revlist
1777 }
1778
1779 _git_stage ()
1780 {
1781         __git_has_doubledash && return
1782
1783         local subcommands="add reset diff rm apply edit"
1784         local subcommand="$(__git_find_on_cmdline "$subcommands")"
1785         if [ -z "$subcommand" ]; then
1786                 __gitcomp "$subcommands"
1787                 return
1788         fi
1789
1790         case "$subcommand" in
1791         add)
1792                 _git_add;;
1793         reset)
1794                 _git_reset;;
1795         diff)
1796                 _git_diff;;
1797         rm)
1798                 _git_rm;;
1799         apply)
1800                 _git_apply;;
1801         edit)
1802                 ;;
1803         *)
1804                 _git_add;
1805         esac
1806 }
1807
1808 __git_config_get_set_variables ()
1809 {
1810         local prevword word config_file= c=$cword
1811         while [ $c -gt 1 ]; do
1812                 word="${words[c]}"
1813                 case "$word" in
1814                 --system|--global|--local|--file=*)
1815                         config_file="$word"
1816                         break
1817                         ;;
1818                 -f|--file)
1819                         config_file="$word $prevword"
1820                         break
1821                         ;;
1822                 esac
1823                 prevword=$word
1824                 c=$((--c))
1825         done
1826
1827         git --git-dir="$(__gitdir)" config $config_file --name-only --list 2>/dev/null
1828 }
1829
1830 _git_config ()
1831 {
1832         case "$prev" in
1833         branch.*.remote|branch.*.pushremote)
1834                 __gitcomp_nl "$(__git_remotes)"
1835                 return
1836                 ;;
1837         branch.*.merge)
1838                 __gitcomp_nl "$(__git_refs)"
1839                 return
1840                 ;;
1841         branch.*.rebase)
1842                 __gitcomp "false true preserve interactive"
1843                 return
1844                 ;;
1845         remote.pushdefault)
1846                 __gitcomp_nl "$(__git_remotes)"
1847                 return
1848                 ;;
1849         remote.*.fetch)
1850                 local remote="${prev#remote.}"
1851                 remote="${remote%.fetch}"
1852                 if [ -z "$cur" ]; then
1853                         __gitcomp_nl "refs/heads/" "" "" ""
1854                         return
1855                 fi
1856                 __gitcomp_nl "$(__git_refs_remotes "$remote")"
1857                 return
1858                 ;;
1859         remote.*.push)
1860                 local remote="${prev#remote.}"
1861                 remote="${remote%.push}"
1862                 __gitcomp_nl "$(git --git-dir="$(__gitdir)" \
1863                         for-each-ref --format='%(refname):%(refname)' \
1864                         refs/heads)"
1865                 return
1866                 ;;
1867         pull.twohead|pull.octopus)
1868                 __git_compute_merge_strategies
1869                 __gitcomp "$__git_merge_strategies"
1870                 return
1871                 ;;
1872         color.branch|color.diff|color.interactive|\
1873         color.showbranch|color.status|color.ui)
1874                 __gitcomp "always never auto"
1875                 return
1876                 ;;
1877         color.pager)
1878                 __gitcomp "false true"
1879                 return
1880                 ;;
1881         color.*.*)
1882                 __gitcomp "
1883                         normal black red green yellow blue magenta cyan white
1884                         bold dim ul blink reverse
1885                         "
1886                 return
1887                 ;;
1888         diff.submodule)
1889                 __gitcomp "log short"
1890                 return
1891                 ;;
1892         help.format)
1893                 __gitcomp "man info web html"
1894                 return
1895                 ;;
1896         log.date)
1897                 __gitcomp "$__git_log_date_formats"
1898                 return
1899                 ;;
1900         sendemail.aliasesfiletype)
1901                 __gitcomp "mutt mailrc pine elm gnus"
1902                 return
1903                 ;;
1904         sendemail.confirm)
1905                 __gitcomp "$__git_send_email_confirm_options"
1906                 return
1907                 ;;
1908         sendemail.suppresscc)
1909                 __gitcomp "$__git_send_email_suppresscc_options"
1910                 return
1911                 ;;
1912         sendemail.transferencoding)
1913                 __gitcomp "7bit 8bit quoted-printable base64"
1914                 return
1915                 ;;
1916         --get|--get-all|--unset|--unset-all)
1917                 __gitcomp_nl "$(__git_config_get_set_variables)"
1918                 return
1919                 ;;
1920         *.*)
1921                 return
1922                 ;;
1923         esac
1924         case "$cur" in
1925         --*)
1926                 __gitcomp "
1927                         --system --global --local --file=
1928                         --list --replace-all
1929                         --get --get-all --get-regexp
1930                         --add --unset --unset-all
1931                         --remove-section --rename-section
1932                         --name-only
1933                         "
1934                 return
1935                 ;;
1936         branch.*.*)
1937                 local pfx="${cur%.*}." cur_="${cur##*.}"
1938                 __gitcomp "remote pushremote merge mergeoptions rebase" "$pfx" "$cur_"
1939                 return
1940                 ;;
1941         branch.*)
1942                 local pfx="${cur%.*}." cur_="${cur#*.}"
1943                 __gitcomp_nl "$(__git_heads)" "$pfx" "$cur_" "."
1944                 __gitcomp_nl_append $'autosetupmerge\nautosetuprebase\n' "$pfx" "$cur_"
1945                 return
1946                 ;;
1947         guitool.*.*)
1948                 local pfx="${cur%.*}." cur_="${cur##*.}"
1949                 __gitcomp "
1950                         argprompt cmd confirm needsfile noconsole norescan
1951                         prompt revprompt revunmerged title
1952                         " "$pfx" "$cur_"
1953                 return
1954                 ;;
1955         difftool.*.*)
1956                 local pfx="${cur%.*}." cur_="${cur##*.}"
1957                 __gitcomp "cmd path" "$pfx" "$cur_"
1958                 return
1959                 ;;
1960         man.*.*)
1961                 local pfx="${cur%.*}." cur_="${cur##*.}"
1962                 __gitcomp "cmd path" "$pfx" "$cur_"
1963                 return
1964                 ;;
1965         mergetool.*.*)
1966                 local pfx="${cur%.*}." cur_="${cur##*.}"
1967                 __gitcomp "cmd path trustExitCode" "$pfx" "$cur_"
1968                 return
1969                 ;;
1970         pager.*)
1971                 local pfx="${cur%.*}." cur_="${cur#*.}"
1972                 __git_compute_all_commands
1973                 __gitcomp_nl "$__git_all_commands" "$pfx" "$cur_"
1974                 return
1975                 ;;
1976         remote.*.*)
1977                 local pfx="${cur%.*}." cur_="${cur##*.}"
1978                 __gitcomp "
1979                         url proxy fetch push mirror skipDefaultUpdate
1980                         receivepack uploadpack tagopt pushurl
1981                         " "$pfx" "$cur_"
1982                 return
1983                 ;;
1984         remote.*)
1985                 local pfx="${cur%.*}." cur_="${cur#*.}"
1986                 __gitcomp_nl "$(__git_remotes)" "$pfx" "$cur_" "."
1987                 __gitcomp_nl_append "pushdefault" "$pfx" "$cur_"
1988                 return
1989                 ;;
1990         url.*.*)
1991                 local pfx="${cur%.*}." cur_="${cur##*.}"
1992                 __gitcomp "insteadOf pushInsteadOf" "$pfx" "$cur_"
1993                 return
1994                 ;;
1995         esac
1996         __gitcomp "
1997                 add.ignoreErrors
1998                 advice.commitBeforeMerge
1999                 advice.detachedHead
2000                 advice.implicitIdentity
2001                 advice.pushNonFastForward
2002                 advice.resolveConflict
2003                 advice.statusHints
2004                 alias.
2005                 am.keepcr
2006                 apply.ignorewhitespace
2007                 apply.whitespace
2008                 branch.autosetupmerge
2009                 branch.autosetuprebase
2010                 browser.
2011                 clean.requireForce
2012                 color.branch
2013                 color.branch.current
2014                 color.branch.local
2015                 color.branch.plain
2016                 color.branch.remote
2017                 color.decorate.HEAD
2018                 color.decorate.branch
2019                 color.decorate.remoteBranch
2020                 color.decorate.stash
2021                 color.decorate.tag
2022                 color.diff
2023                 color.diff.commit
2024                 color.diff.frag
2025                 color.diff.func
2026                 color.diff.meta
2027                 color.diff.new
2028                 color.diff.old
2029                 color.diff.plain
2030                 color.diff.whitespace
2031                 color.grep
2032                 color.grep.context
2033                 color.grep.filename
2034                 color.grep.function
2035                 color.grep.linenumber
2036                 color.grep.match
2037                 color.grep.selected
2038                 color.grep.separator
2039                 color.interactive
2040                 color.interactive.error
2041                 color.interactive.header
2042                 color.interactive.help
2043                 color.interactive.prompt
2044                 color.pager
2045                 color.showbranch
2046                 color.status
2047                 color.status.added
2048                 color.status.changed
2049                 color.status.header
2050                 color.status.nobranch
2051                 color.status.unmerged
2052                 color.status.untracked
2053                 color.status.updated
2054                 color.ui
2055                 commit.status
2056                 commit.template
2057                 core.abbrev
2058                 core.askpass
2059                 core.attributesfile
2060                 core.autocrlf
2061                 core.bare
2062                 core.bigFileThreshold
2063                 core.compression
2064                 core.createObject
2065                 core.deltaBaseCacheLimit
2066                 core.editor
2067                 core.eol
2068                 core.excludesfile
2069                 core.fileMode
2070                 core.fsyncobjectfiles
2071                 core.gitProxy
2072                 core.ignoreStat
2073                 core.ignorecase
2074                 core.logAllRefUpdates
2075                 core.loosecompression
2076                 core.notesRef
2077                 core.packedGitLimit
2078                 core.packedGitWindowSize
2079                 core.pager
2080                 core.preferSymlinkRefs
2081                 core.preloadindex
2082                 core.quotepath
2083                 core.repositoryFormatVersion
2084                 core.safecrlf
2085                 core.sharedRepository
2086                 core.sparseCheckout
2087                 core.symlinks
2088                 core.trustctime
2089                 core.untrackedCache
2090                 core.warnAmbiguousRefs
2091                 core.whitespace
2092                 core.worktree
2093                 diff.autorefreshindex
2094                 diff.external
2095                 diff.ignoreSubmodules
2096                 diff.mnemonicprefix
2097                 diff.noprefix
2098                 diff.renameLimit
2099                 diff.renames
2100                 diff.statGraphWidth
2101                 diff.submodule
2102                 diff.suppressBlankEmpty
2103                 diff.tool
2104                 diff.wordRegex
2105                 diff.algorithm
2106                 difftool.
2107                 difftool.prompt
2108                 fetch.recurseSubmodules
2109                 fetch.unpackLimit
2110                 format.attach
2111                 format.cc
2112                 format.coverLetter
2113                 format.headers
2114                 format.numbered
2115                 format.pretty
2116                 format.signature
2117                 format.signoff
2118                 format.subjectprefix
2119                 format.suffix
2120                 format.thread
2121                 format.to
2122                 gc.
2123                 gc.aggressiveWindow
2124                 gc.auto
2125                 gc.autopacklimit
2126                 gc.packrefs
2127                 gc.pruneexpire
2128                 gc.reflogexpire
2129                 gc.reflogexpireunreachable
2130                 gc.rerereresolved
2131                 gc.rerereunresolved
2132                 gitcvs.allbinary
2133                 gitcvs.commitmsgannotation
2134                 gitcvs.dbTableNamePrefix
2135                 gitcvs.dbdriver
2136                 gitcvs.dbname
2137                 gitcvs.dbpass
2138                 gitcvs.dbuser
2139                 gitcvs.enabled
2140                 gitcvs.logfile
2141                 gitcvs.usecrlfattr
2142                 guitool.
2143                 gui.blamehistoryctx
2144                 gui.commitmsgwidth
2145                 gui.copyblamethreshold
2146                 gui.diffcontext
2147                 gui.encoding
2148                 gui.fastcopyblame
2149                 gui.matchtrackingbranch
2150                 gui.newbranchtemplate
2151                 gui.pruneduringfetch
2152                 gui.spellingdictionary
2153                 gui.trustmtime
2154                 help.autocorrect
2155                 help.browser
2156                 help.format
2157                 http.lowSpeedLimit
2158                 http.lowSpeedTime
2159                 http.maxRequests
2160                 http.minSessions
2161                 http.noEPSV
2162                 http.postBuffer
2163                 http.proxy
2164                 http.sslCipherList
2165                 http.sslVersion
2166                 http.sslCAInfo
2167                 http.sslCAPath
2168                 http.sslCert
2169                 http.sslCertPasswordProtected
2170                 http.sslKey
2171                 http.sslVerify
2172                 http.useragent
2173                 i18n.commitEncoding
2174                 i18n.logOutputEncoding
2175                 imap.authMethod
2176                 imap.folder
2177                 imap.host
2178                 imap.pass
2179                 imap.port
2180                 imap.preformattedHTML
2181                 imap.sslverify
2182                 imap.tunnel
2183                 imap.user
2184                 init.templatedir
2185                 instaweb.browser
2186                 instaweb.httpd
2187                 instaweb.local
2188                 instaweb.modulepath
2189                 instaweb.port
2190                 interactive.singlekey
2191                 log.date
2192                 log.decorate
2193                 log.showroot
2194                 mailmap.file
2195                 man.
2196                 man.viewer
2197                 merge.
2198                 merge.conflictstyle
2199                 merge.log
2200                 merge.renameLimit
2201                 merge.renormalize
2202                 merge.stat
2203                 merge.tool
2204                 merge.verbosity
2205                 mergetool.
2206                 mergetool.keepBackup
2207                 mergetool.keepTemporaries
2208                 mergetool.prompt
2209                 notes.displayRef
2210                 notes.rewrite.
2211                 notes.rewrite.amend
2212                 notes.rewrite.rebase
2213                 notes.rewriteMode
2214                 notes.rewriteRef
2215                 pack.compression
2216                 pack.deltaCacheLimit
2217                 pack.deltaCacheSize
2218                 pack.depth
2219                 pack.indexVersion
2220                 pack.packSizeLimit
2221                 pack.threads
2222                 pack.window
2223                 pack.windowMemory
2224                 pager.
2225                 pretty.
2226                 pull.octopus
2227                 pull.twohead
2228                 push.default
2229                 push.followTags
2230                 rebase.autosquash
2231                 rebase.stat
2232                 receive.autogc
2233                 receive.denyCurrentBranch
2234                 receive.denyDeleteCurrent
2235                 receive.denyDeletes
2236                 receive.denyNonFastForwards
2237                 receive.fsckObjects
2238                 receive.unpackLimit
2239                 receive.updateserverinfo
2240                 remote.pushdefault
2241                 remotes.
2242                 repack.usedeltabaseoffset
2243                 rerere.autoupdate
2244                 rerere.enabled
2245                 sendemail.
2246                 sendemail.aliasesfile
2247                 sendemail.aliasfiletype
2248                 sendemail.bcc
2249                 sendemail.cc
2250                 sendemail.cccmd
2251                 sendemail.chainreplyto
2252                 sendemail.confirm
2253                 sendemail.envelopesender
2254                 sendemail.from
2255                 sendemail.identity
2256                 sendemail.multiedit
2257                 sendemail.signedoffbycc
2258                 sendemail.smtpdomain
2259                 sendemail.smtpencryption
2260                 sendemail.smtppass
2261                 sendemail.smtpserver
2262                 sendemail.smtpserveroption
2263                 sendemail.smtpserverport
2264                 sendemail.smtpuser
2265                 sendemail.suppresscc
2266                 sendemail.suppressfrom
2267                 sendemail.thread
2268                 sendemail.to
2269                 sendemail.validate
2270                 showbranch.default
2271                 status.relativePaths
2272                 status.showUntrackedFiles
2273                 status.submodulesummary
2274                 submodule.
2275                 tar.umask
2276                 transfer.unpackLimit
2277                 url.
2278                 user.email
2279                 user.name
2280                 user.signingkey
2281                 web.browser
2282                 branch. remote.
2283         "
2284 }
2285
2286 _git_remote ()
2287 {
2288         local subcommands="add rename remove set-head set-branches set-url show prune update"
2289         local subcommand="$(__git_find_on_cmdline "$subcommands")"
2290         if [ -z "$subcommand" ]; then
2291                 __gitcomp "$subcommands"
2292                 return
2293         fi
2294
2295         case "$subcommand" in
2296         rename|remove|set-url|show|prune)
2297                 __gitcomp_nl "$(__git_remotes)"
2298                 ;;
2299         set-head|set-branches)
2300                 __git_complete_remote_or_refspec
2301                 ;;
2302         update)
2303                 __gitcomp "$(__git_get_config_variables "remotes")"
2304                 ;;
2305         *)
2306                 ;;
2307         esac
2308 }
2309
2310 _git_replace ()
2311 {
2312         __gitcomp_nl "$(__git_refs)"
2313 }
2314
2315 _git_reset ()
2316 {
2317         __git_has_doubledash && return
2318
2319         case "$cur" in
2320         --*)
2321                 __gitcomp "--merge --mixed --hard --soft --patch --keep --merge
2322                         --stage --no-stage --work --no-work"
2323                 return
2324                 ;;
2325         esac
2326         __gitcomp_nl "$(__git_refs)"
2327 }
2328
2329 _git_revert ()
2330 {
2331         local dir="$(__gitdir)"
2332         if [ -f "$dir"/REVERT_HEAD ]; then
2333                 __gitcomp "--continue --quit --abort"
2334                 return
2335         fi
2336         case "$cur" in
2337         --*)
2338                 __gitcomp "--edit --mainline --no-edit --no-commit --signoff"
2339                 return
2340                 ;;
2341         esac
2342         __gitcomp_nl "$(__git_refs)"
2343 }
2344
2345 _git_rm ()
2346 {
2347         case "$cur" in
2348         --*)
2349                 __gitcomp "--cached --staged --dry-run --ignore-unmatch --quiet"
2350                 return
2351                 ;;
2352         esac
2353
2354         __git_complete_index_file "--cached"
2355 }
2356
2357 _git_shortlog ()
2358 {
2359         __git_has_doubledash && return
2360
2361         case "$cur" in
2362         --*)
2363                 __gitcomp "
2364                         $__git_log_common_options
2365                         $__git_log_shortlog_options
2366                         --numbered --summary
2367                         "
2368                 return
2369                 ;;
2370         esac
2371         __git_complete_revlist
2372 }
2373
2374 _git_show ()
2375 {
2376         __git_has_doubledash && return
2377
2378         case "$cur" in
2379         --pretty=*|--format=*)
2380                 __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
2381                         " "" "${cur#*=}"
2382                 return
2383                 ;;
2384         --diff-algorithm=*)
2385                 __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}"
2386                 return
2387                 ;;
2388         --*)
2389                 __gitcomp "--pretty= --format= --abbrev-commit --oneline
2390                         --show-signature
2391                         $__git_diff_common_options
2392                         "
2393                 return
2394                 ;;
2395         esac
2396         __git_complete_revlist_file
2397 }
2398
2399 _git_show_branch ()
2400 {
2401         case "$cur" in
2402         --*)
2403                 __gitcomp "
2404                         --all --remotes --topo-order --date-order --current --more=
2405                         --list --independent --merge-base --no-name
2406                         --color --no-color
2407                         --sha1-name --sparse --topics --reflog
2408                         "
2409                 return
2410                 ;;
2411         esac
2412         __git_complete_revlist
2413 }
2414
2415 _git_stash ()
2416 {
2417         local save_opts='--all --keep-index --no-keep-index --stage --no-stage --quiet --patch --include-untracked'
2418         local subcommands='save list show apply clear drop pop create branch'
2419         local subcommand="$(__git_find_on_cmdline "$subcommands")"
2420         if [ -z "$subcommand" ]; then
2421                 case "$cur" in
2422                 --*)
2423                         __gitcomp "$save_opts"
2424                         ;;
2425                 *)
2426                         if [ -z "$(__git_find_on_cmdline "$save_opts")" ]; then
2427                                 __gitcomp "$subcommands"
2428                         fi
2429                         ;;
2430                 esac
2431         else
2432                 case "$subcommand,$cur" in
2433                 save,--*)
2434                         __gitcomp "$save_opts"
2435                         ;;
2436                 apply,--*|pop,--*)
2437                         __gitcomp "--index --stage --quiet"
2438                         ;;
2439                 drop,--*)
2440                         __gitcomp "--quiet"
2441                         ;;
2442                 show,--*|branch,--*)
2443                         ;;
2444                 branch,*)
2445                         if [ $cword -eq 3 ]; then
2446                                 __gitcomp_nl "$(__git_refs)";
2447                         else
2448                                 __gitcomp_nl "$(git --git-dir="$(__gitdir)" stash list \
2449                                                 | sed -n -e 's/:.*//p')"
2450                         fi
2451                         ;;
2452                 show,*|apply,*|drop,*|pop,*)
2453                         __gitcomp_nl "$(git --git-dir="$(__gitdir)" stash list \
2454                                         | sed -n -e 's/:.*//p')"
2455                         ;;
2456                 *)
2457                         ;;
2458                 esac
2459         fi
2460 }
2461
2462 _git_submodule ()
2463 {
2464         __git_has_doubledash && return
2465
2466         local subcommands="add status init deinit update summary foreach sync"
2467         if [ -z "$(__git_find_on_cmdline "$subcommands")" ]; then
2468                 case "$cur" in
2469                 --*)
2470                         __gitcomp "--quiet --cached"
2471                         ;;
2472                 *)
2473                         __gitcomp "$subcommands"
2474                         ;;
2475                 esac
2476                 return
2477         fi
2478 }
2479
2480 _git_svn ()
2481 {
2482         local subcommands="
2483                 init fetch clone rebase dcommit log find-rev
2484                 set-tree commit-diff info create-ignore propget
2485                 proplist show-ignore show-externals branch tag blame
2486                 migrate mkdirs reset gc
2487                 "
2488         local subcommand="$(__git_find_on_cmdline "$subcommands")"
2489         if [ -z "$subcommand" ]; then
2490                 __gitcomp "$subcommands"
2491         else
2492                 local remote_opts="--username= --config-dir= --no-auth-cache"
2493                 local fc_opts="
2494                         --follow-parent --authors-file= --repack=
2495                         --no-metadata --use-svm-props --use-svnsync-props
2496                         --log-window-size= --no-checkout --quiet
2497                         --repack-flags --use-log-author --localtime
2498                         --ignore-paths= --include-paths= $remote_opts
2499                         "
2500                 local init_opts="
2501                         --template= --shared= --trunk= --tags=
2502                         --branches= --stdlayout --minimize-url
2503                         --no-metadata --use-svm-props --use-svnsync-props
2504                         --rewrite-root= --prefix= --use-log-author
2505                         --add-author-from $remote_opts
2506                         "
2507                 local cmt_opts="
2508                         --edit --rmdir --find-copies-harder --copy-similarity=
2509                         "
2510
2511                 case "$subcommand,$cur" in
2512                 fetch,--*)
2513                         __gitcomp "--revision= --fetch-all $fc_opts"
2514                         ;;
2515                 clone,--*)
2516                         __gitcomp "--revision= $fc_opts $init_opts"
2517                         ;;
2518                 init,--*)
2519                         __gitcomp "$init_opts"
2520                         ;;
2521                 dcommit,--*)
2522                         __gitcomp "
2523                                 --merge --strategy= --verbose --dry-run
2524                                 --fetch-all --no-rebase --commit-url
2525                                 --revision --interactive $cmt_opts $fc_opts
2526                                 "
2527                         ;;
2528                 set-tree,--*)
2529                         __gitcomp "--stdin $cmt_opts $fc_opts"
2530                         ;;
2531                 create-ignore,--*|propget,--*|proplist,--*|show-ignore,--*|\
2532                 show-externals,--*|mkdirs,--*)
2533                         __gitcomp "--revision="
2534                         ;;
2535                 log,--*)
2536                         __gitcomp "
2537                                 --limit= --revision= --verbose --incremental
2538                                 --oneline --show-commit --non-recursive
2539                                 --authors-file= --color
2540                                 "
2541                         ;;
2542                 rebase,--*)
2543                         __gitcomp "
2544                                 --merge --verbose --strategy= --local
2545                                 --fetch-all --dry-run $fc_opts
2546                                 "
2547                         ;;
2548                 commit-diff,--*)
2549                         __gitcomp "--message= --file= --revision= $cmt_opts"
2550                         ;;
2551                 info,--*)
2552                         __gitcomp "--url"
2553                         ;;
2554                 branch,--*)
2555                         __gitcomp "--dry-run --message --tag"
2556                         ;;
2557                 tag,--*)
2558                         __gitcomp "--dry-run --message"
2559                         ;;
2560                 blame,--*)
2561                         __gitcomp "--git-format"
2562                         ;;
2563                 migrate,--*)
2564                         __gitcomp "
2565                                 --config-dir= --ignore-paths= --minimize
2566                                 --no-auth-cache --username=
2567                                 "
2568                         ;;
2569                 reset,--*)
2570                         __gitcomp "--revision= --parent"
2571                         ;;
2572                 *)
2573                         ;;
2574                 esac
2575         fi
2576 }
2577
2578 _git_tag ()
2579 {
2580         local i c=1 f=0
2581         while [ $c -lt $cword ]; do
2582                 i="${words[c]}"
2583                 case "$i" in
2584                 -d|-v)
2585                         __gitcomp_nl "$(__git_tags)"
2586                         return
2587                         ;;
2588                 -f)
2589                         f=1
2590                         ;;
2591                 esac
2592                 ((c++))
2593         done
2594
2595         case "$prev" in
2596         -m|-F)
2597                 ;;
2598         -*|tag)
2599                 if [ $f = 1 ]; then
2600                         __gitcomp_nl "$(__git_tags)"
2601                 fi
2602                 ;;
2603         *)
2604                 __gitcomp_nl "$(__git_refs)"
2605                 ;;
2606         esac
2607
2608         case "$cur" in
2609         --*)
2610                 __gitcomp "
2611                         --list --delete --verify --annotate --message --file
2612                         --sign --cleanup --local-user --force --column --sort
2613                         --contains --points-at
2614                         "
2615                 ;;
2616         esac
2617 }
2618
2619 _git_whatchanged ()
2620 {
2621         _git_log
2622 }
2623
2624 __git_main ()
2625 {
2626         local i c=1 command __git_dir
2627
2628         while [ $c -lt $cword ]; do
2629                 i="${words[c]}"
2630                 case "$i" in
2631                 --git-dir=*) __git_dir="${i#--git-dir=}" ;;
2632                 --git-dir)   ((c++)) ; __git_dir="${words[c]}" ;;
2633                 --bare)      __git_dir="." ;;
2634                 --help) command="help"; break ;;
2635                 -c|--work-tree|--namespace) ((c++)) ;;
2636                 -*) ;;
2637                 *) command="$i"; break ;;
2638                 esac
2639                 ((c++))
2640         done
2641
2642         if [ -z "$command" ]; then
2643                 case "$cur" in
2644                 --*)   __gitcomp "
2645                         --paginate
2646                         --no-pager
2647                         --git-dir=
2648                         --bare
2649                         --version
2650                         --exec-path
2651                         --exec-path=
2652                         --html-path
2653                         --man-path
2654                         --info-path
2655                         --work-tree=
2656                         --namespace=
2657                         --no-replace-objects
2658                         --help
2659                         "
2660                         ;;
2661                 *)     __git_compute_porcelain_commands
2662                        __gitcomp "$__git_porcelain_commands $(__git_aliases)" ;;
2663                 esac
2664                 return
2665         fi
2666
2667         local completion_func="_git_${command//-/_}"
2668         declare -f $completion_func >/dev/null && $completion_func && return
2669
2670         local expansion=$(__git_aliased_command "$command")
2671         if [ -n "$expansion" ]; then
2672                 words[1]=$expansion
2673                 completion_func="_git_${expansion//-/_}"
2674                 declare -f $completion_func >/dev/null && $completion_func
2675         fi
2676 }
2677
2678 __gitk_main ()
2679 {
2680         __git_has_doubledash && return
2681
2682         local g="$(__gitdir)"
2683         local merge=""
2684         if [ -f "$g/MERGE_HEAD" ]; then
2685                 merge="--merge"
2686         fi
2687         case "$cur" in
2688         --*)
2689                 __gitcomp "
2690                         $__git_log_common_options
2691                         $__git_log_gitk_options
2692                         $merge
2693                         "
2694                 return
2695                 ;;
2696         esac
2697         __git_complete_revlist
2698 }
2699
2700 __git_func_wrap ()
2701 {
2702         local cur words cword prev
2703         _get_comp_words_by_ref -n =: cur words cword prev
2704         $1
2705 }
2706
2707 # Setup completion for certain functions defined above by setting common
2708 # variables and workarounds.
2709 # This is NOT a public function; use at your own risk.
2710 __git_complete ()
2711 {
2712         test -n "$ZSH_VERSION" && return
2713         local wrapper="__git_wrap${2}"
2714         eval "$wrapper () { __git_func_wrap $2 ; }"
2715         complete -o bashdefault -o default -o nospace -F $wrapper $1 2>/dev/null \
2716                 || complete -o default -o nospace -F $wrapper $1
2717 }
2718
2719 __git_complete git __git_main
2720 __git_complete gitk __gitk_main
2721
2722 # The following are necessary only for Cygwin, and only are needed
2723 # when the user has tab-completed the executable name and consequently
2724 # included the '.exe' suffix.
2725 #
2726 test "$(uname -o 2>/dev/null)" = "Cygwin" &&
2727 __git_complete git.exe __git_main