]> git.ipfire.org Git - thirdparty/git.git/blob - contrib/completion/git-completion.bash
Merge branch 'jk/complete-branch-force-delete'
[thirdparty/git.git] / contrib / completion / 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.bash).
21 # 2) Add the following line to your .bashrc/.zshrc:
22 # source ~/.git-completion.bash
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 # If you have a command that is not part of git, but you would still
33 # like completion, you can use __git_complete:
34 #
35 # __git_complete gl git_log
36 #
37 # Or if it's a main command (i.e. git or gitk):
38 #
39 # __git_complete gk gitk
40 #
41 # Compatible with bash 3.2.57.
42 #
43 # You can set the following environment variables to influence the behavior of
44 # the completion routines:
45 #
46 # GIT_COMPLETION_CHECKOUT_NO_GUESS
47 #
48 # When set to "1", do not include "DWIM" suggestions in git-checkout
49 # and git-switch completion (e.g., completing "foo" when "origin/foo"
50 # exists).
51 #
52 # GIT_COMPLETION_SHOW_ALL
53 #
54 # When set to "1" suggest all options, including options which are
55 # typically hidden (e.g. '--allow-empty' for 'git commit').
56
57 case "$COMP_WORDBREAKS" in
58 *:*) : great ;;
59 *) COMP_WORDBREAKS="$COMP_WORDBREAKS:"
60 esac
61
62 # Discovers the path to the git repository taking any '--git-dir=<path>' and
63 # '-C <path>' options into account and stores it in the $__git_repo_path
64 # variable.
65 __git_find_repo_path ()
66 {
67 if [ -n "${__git_repo_path-}" ]; then
68 # we already know where it is
69 return
70 fi
71
72 if [ -n "${__git_C_args-}" ]; then
73 __git_repo_path="$(git "${__git_C_args[@]}" \
74 ${__git_dir:+--git-dir="$__git_dir"} \
75 rev-parse --absolute-git-dir 2>/dev/null)"
76 elif [ -n "${__git_dir-}" ]; then
77 test -d "$__git_dir" &&
78 __git_repo_path="$__git_dir"
79 elif [ -n "${GIT_DIR-}" ]; then
80 test -d "${GIT_DIR-}" &&
81 __git_repo_path="$GIT_DIR"
82 elif [ -d .git ]; then
83 __git_repo_path=.git
84 else
85 __git_repo_path="$(git rev-parse --git-dir 2>/dev/null)"
86 fi
87 }
88
89 # Deprecated: use __git_find_repo_path() and $__git_repo_path instead
90 # __gitdir accepts 0 or 1 arguments (i.e., location)
91 # returns location of .git repo
92 __gitdir ()
93 {
94 if [ -z "${1-}" ]; then
95 __git_find_repo_path || return 1
96 echo "$__git_repo_path"
97 elif [ -d "$1/.git" ]; then
98 echo "$1/.git"
99 else
100 echo "$1"
101 fi
102 }
103
104 # Runs git with all the options given as argument, respecting any
105 # '--git-dir=<path>' and '-C <path>' options present on the command line
106 __git ()
107 {
108 git ${__git_C_args:+"${__git_C_args[@]}"} \
109 ${__git_dir:+--git-dir="$__git_dir"} "$@" 2>/dev/null
110 }
111
112 # Removes backslash escaping, single quotes and double quotes from a word,
113 # stores the result in the variable $dequoted_word.
114 # 1: The word to dequote.
115 __git_dequote ()
116 {
117 local rest="$1" len ch
118
119 dequoted_word=""
120
121 while test -n "$rest"; do
122 len=${#dequoted_word}
123 dequoted_word="$dequoted_word${rest%%[\\\'\"]*}"
124 rest="${rest:$((${#dequoted_word}-$len))}"
125
126 case "${rest:0:1}" in
127 \\)
128 ch="${rest:1:1}"
129 case "$ch" in
130 $'\n')
131 ;;
132 *)
133 dequoted_word="$dequoted_word$ch"
134 ;;
135 esac
136 rest="${rest:2}"
137 ;;
138 \')
139 rest="${rest:1}"
140 len=${#dequoted_word}
141 dequoted_word="$dequoted_word${rest%%\'*}"
142 rest="${rest:$((${#dequoted_word}-$len+1))}"
143 ;;
144 \")
145 rest="${rest:1}"
146 while test -n "$rest" ; do
147 len=${#dequoted_word}
148 dequoted_word="$dequoted_word${rest%%[\\\"]*}"
149 rest="${rest:$((${#dequoted_word}-$len))}"
150 case "${rest:0:1}" in
151 \\)
152 ch="${rest:1:1}"
153 case "$ch" in
154 \"|\\|\$|\`)
155 dequoted_word="$dequoted_word$ch"
156 ;;
157 $'\n')
158 ;;
159 *)
160 dequoted_word="$dequoted_word\\$ch"
161 ;;
162 esac
163 rest="${rest:2}"
164 ;;
165 \")
166 rest="${rest:1}"
167 break
168 ;;
169 esac
170 done
171 ;;
172 esac
173 done
174 }
175
176 # The following function is based on code from:
177 #
178 # bash_completion - programmable completion functions for bash 3.2+
179 #
180 # Copyright © 2006-2008, Ian Macdonald <ian@caliban.org>
181 # © 2009-2010, Bash Completion Maintainers
182 # <bash-completion-devel@lists.alioth.debian.org>
183 #
184 # This program is free software; you can redistribute it and/or modify
185 # it under the terms of the GNU General Public License as published by
186 # the Free Software Foundation; either version 2, or (at your option)
187 # any later version.
188 #
189 # This program is distributed in the hope that it will be useful,
190 # but WITHOUT ANY WARRANTY; without even the implied warranty of
191 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
192 # GNU General Public License for more details.
193 #
194 # You should have received a copy of the GNU General Public License
195 # along with this program; if not, see <http://www.gnu.org/licenses/>.
196 #
197 # The latest version of this software can be obtained here:
198 #
199 # http://bash-completion.alioth.debian.org/
200 #
201 # RELEASE: 2.x
202
203 # This function can be used to access a tokenized list of words
204 # on the command line:
205 #
206 # __git_reassemble_comp_words_by_ref '=:'
207 # if test "${words_[cword_-1]}" = -w
208 # then
209 # ...
210 # fi
211 #
212 # The argument should be a collection of characters from the list of
213 # word completion separators (COMP_WORDBREAKS) to treat as ordinary
214 # characters.
215 #
216 # This is roughly equivalent to going back in time and setting
217 # COMP_WORDBREAKS to exclude those characters. The intent is to
218 # make option types like --date=<type> and <rev>:<path> easy to
219 # recognize by treating each shell word as a single token.
220 #
221 # It is best not to set COMP_WORDBREAKS directly because the value is
222 # shared with other completion scripts. By the time the completion
223 # function gets called, COMP_WORDS has already been populated so local
224 # changes to COMP_WORDBREAKS have no effect.
225 #
226 # Output: words_, cword_, cur_.
227
228 __git_reassemble_comp_words_by_ref()
229 {
230 local exclude i j first
231 # Which word separators to exclude?
232 exclude="${1//[^$COMP_WORDBREAKS]}"
233 cword_=$COMP_CWORD
234 if [ -z "$exclude" ]; then
235 words_=("${COMP_WORDS[@]}")
236 return
237 fi
238 # List of word completion separators has shrunk;
239 # re-assemble words to complete.
240 for ((i=0, j=0; i < ${#COMP_WORDS[@]}; i++, j++)); do
241 # Append each nonempty word consisting of just
242 # word separator characters to the current word.
243 first=t
244 while
245 [ $i -gt 0 ] &&
246 [ -n "${COMP_WORDS[$i]}" ] &&
247 # word consists of excluded word separators
248 [ "${COMP_WORDS[$i]//[^$exclude]}" = "${COMP_WORDS[$i]}" ]
249 do
250 # Attach to the previous token,
251 # unless the previous token is the command name.
252 if [ $j -ge 2 ] && [ -n "$first" ]; then
253 ((j--))
254 fi
255 first=
256 words_[$j]=${words_[j]}${COMP_WORDS[i]}
257 if [ $i = $COMP_CWORD ]; then
258 cword_=$j
259 fi
260 if (($i < ${#COMP_WORDS[@]} - 1)); then
261 ((i++))
262 else
263 # Done.
264 return
265 fi
266 done
267 words_[$j]=${words_[j]}${COMP_WORDS[i]}
268 if [ $i = $COMP_CWORD ]; then
269 cword_=$j
270 fi
271 done
272 }
273
274 if ! type _get_comp_words_by_ref >/dev/null 2>&1; then
275 _get_comp_words_by_ref ()
276 {
277 local exclude cur_ words_ cword_
278 if [ "$1" = "-n" ]; then
279 exclude=$2
280 shift 2
281 fi
282 __git_reassemble_comp_words_by_ref "$exclude"
283 cur_=${words_[cword_]}
284 while [ $# -gt 0 ]; do
285 case "$1" in
286 cur)
287 cur=$cur_
288 ;;
289 prev)
290 prev=${words_[$cword_-1]}
291 ;;
292 words)
293 words=("${words_[@]}")
294 ;;
295 cword)
296 cword=$cword_
297 ;;
298 esac
299 shift
300 done
301 }
302 fi
303
304 # Fills the COMPREPLY array with prefiltered words without any additional
305 # processing.
306 # Callers must take care of providing only words that match the current word
307 # to be completed and adding any prefix and/or suffix (trailing space!), if
308 # necessary.
309 # 1: List of newline-separated matching completion words, complete with
310 # prefix and suffix.
311 __gitcomp_direct ()
312 {
313 local IFS=$'\n'
314
315 COMPREPLY=($1)
316 }
317
318 # Similar to __gitcomp_direct, but appends to COMPREPLY instead.
319 # Callers must take care of providing only words that match the current word
320 # to be completed and adding any prefix and/or suffix (trailing space!), if
321 # necessary.
322 # 1: List of newline-separated matching completion words, complete with
323 # prefix and suffix.
324 __gitcomp_direct_append ()
325 {
326 local IFS=$'\n'
327
328 COMPREPLY+=($1)
329 }
330
331 __gitcompappend ()
332 {
333 local x i=${#COMPREPLY[@]}
334 for x in $1; do
335 if [[ "$x" == "$3"* ]]; then
336 COMPREPLY[i++]="$2$x$4"
337 fi
338 done
339 }
340
341 __gitcompadd ()
342 {
343 COMPREPLY=()
344 __gitcompappend "$@"
345 }
346
347 # Generates completion reply, appending a space to possible completion words,
348 # if necessary.
349 # It accepts 1 to 4 arguments:
350 # 1: List of possible completion words.
351 # 2: A prefix to be added to each possible completion word (optional).
352 # 3: Generate possible completion matches for this word (optional).
353 # 4: A suffix to be appended to each possible completion word (optional).
354 __gitcomp ()
355 {
356 local cur_="${3-$cur}"
357
358 case "$cur_" in
359 --*=)
360 ;;
361 --no-*)
362 local c i=0 IFS=$' \t\n'
363 for c in $1; do
364 if [[ $c == "--" ]]; then
365 continue
366 fi
367 c="$c${4-}"
368 if [[ $c == "$cur_"* ]]; then
369 case $c in
370 --*=|*.) ;;
371 *) c="$c " ;;
372 esac
373 COMPREPLY[i++]="${2-}$c"
374 fi
375 done
376 ;;
377 *)
378 local c i=0 IFS=$' \t\n'
379 for c in $1; do
380 if [[ $c == "--" ]]; then
381 c="--no-...${4-}"
382 if [[ $c == "$cur_"* ]]; then
383 COMPREPLY[i++]="${2-}$c "
384 fi
385 break
386 fi
387 c="$c${4-}"
388 if [[ $c == "$cur_"* ]]; then
389 case $c in
390 *=|*.) ;;
391 *) c="$c " ;;
392 esac
393 COMPREPLY[i++]="${2-}$c"
394 fi
395 done
396 ;;
397 esac
398 }
399
400 # Clear the variables caching builtins' options when (re-)sourcing
401 # the completion script.
402 if [[ -n ${ZSH_VERSION-} ]]; then
403 unset ${(M)${(k)parameters[@]}:#__gitcomp_builtin_*} 2>/dev/null
404 else
405 unset $(compgen -v __gitcomp_builtin_)
406 fi
407
408 # This function is equivalent to
409 #
410 # __gitcomp "$(git xxx --git-completion-helper) ..."
411 #
412 # except that the output is cached. Accept 1-3 arguments:
413 # 1: the git command to execute, this is also the cache key
414 # 2: extra options to be added on top (e.g. negative forms)
415 # 3: options to be excluded
416 __gitcomp_builtin ()
417 {
418 # spaces must be replaced with underscore for multi-word
419 # commands, e.g. "git remote add" becomes remote_add.
420 local cmd="$1"
421 local incl="${2-}"
422 local excl="${3-}"
423
424 local var=__gitcomp_builtin_"${cmd/-/_}"
425 local options
426 eval "options=\${$var-}"
427
428 if [ -z "$options" ]; then
429 local completion_helper
430 if [ "$GIT_COMPLETION_SHOW_ALL" = "1" ]; then
431 completion_helper="--git-completion-helper-all"
432 else
433 completion_helper="--git-completion-helper"
434 fi
435 # leading and trailing spaces are significant to make
436 # option removal work correctly.
437 options=" $incl $(__git ${cmd/_/ } $completion_helper) " || return
438
439 for i in $excl; do
440 options="${options/ $i / }"
441 done
442 eval "$var=\"$options\""
443 fi
444
445 __gitcomp "$options"
446 }
447
448 # Variation of __gitcomp_nl () that appends to the existing list of
449 # completion candidates, COMPREPLY.
450 __gitcomp_nl_append ()
451 {
452 local IFS=$'\n'
453 __gitcompappend "$1" "${2-}" "${3-$cur}" "${4- }"
454 }
455
456 # Generates completion reply from newline-separated possible completion words
457 # by appending a space to all of them.
458 # It accepts 1 to 4 arguments:
459 # 1: List of possible completion words, separated by a single newline.
460 # 2: A prefix to be added to each possible completion word (optional).
461 # 3: Generate possible completion matches for this word (optional).
462 # 4: A suffix to be appended to each possible completion word instead of
463 # the default space (optional). If specified but empty, nothing is
464 # appended.
465 __gitcomp_nl ()
466 {
467 COMPREPLY=()
468 __gitcomp_nl_append "$@"
469 }
470
471 # Fills the COMPREPLY array with prefiltered paths without any additional
472 # processing.
473 # Callers must take care of providing only paths that match the current path
474 # to be completed and adding any prefix path components, if necessary.
475 # 1: List of newline-separated matching paths, complete with all prefix
476 # path components.
477 __gitcomp_file_direct ()
478 {
479 local IFS=$'\n'
480
481 COMPREPLY=($1)
482
483 # use a hack to enable file mode in bash < 4
484 compopt -o filenames +o nospace 2>/dev/null ||
485 compgen -f /non-existing-dir/ >/dev/null ||
486 true
487 }
488
489 # Generates completion reply with compgen from newline-separated possible
490 # completion filenames.
491 # It accepts 1 to 3 arguments:
492 # 1: List of possible completion filenames, separated by a single newline.
493 # 2: A directory prefix to be added to each possible completion filename
494 # (optional).
495 # 3: Generate possible completion matches for this word (optional).
496 __gitcomp_file ()
497 {
498 local IFS=$'\n'
499
500 # XXX does not work when the directory prefix contains a tilde,
501 # since tilde expansion is not applied.
502 # This means that COMPREPLY will be empty and Bash default
503 # completion will be used.
504 __gitcompadd "$1" "${2-}" "${3-$cur}" ""
505
506 # use a hack to enable file mode in bash < 4
507 compopt -o filenames +o nospace 2>/dev/null ||
508 compgen -f /non-existing-dir/ >/dev/null ||
509 true
510 }
511
512 # Execute 'git ls-files', unless the --committable option is specified, in
513 # which case it runs 'git diff-index' to find out the files that can be
514 # committed. It return paths relative to the directory specified in the first
515 # argument, and using the options specified in the second argument.
516 __git_ls_files_helper ()
517 {
518 if [ "$2" == "--committable" ]; then
519 __git -C "$1" -c core.quotePath=false diff-index \
520 --name-only --relative HEAD -- "${3//\\/\\\\}*"
521 else
522 # NOTE: $2 is not quoted in order to support multiple options
523 __git -C "$1" -c core.quotePath=false ls-files \
524 --exclude-standard $2 -- "${3//\\/\\\\}*"
525 fi
526 }
527
528
529 # __git_index_files accepts 1 or 2 arguments:
530 # 1: Options to pass to ls-files (required).
531 # 2: A directory path (optional).
532 # If provided, only files within the specified directory are listed.
533 # Sub directories are never recursed. Path must have a trailing
534 # slash.
535 # 3: List only paths matching this path component (optional).
536 __git_index_files ()
537 {
538 local root="$2" match="$3"
539
540 __git_ls_files_helper "$root" "$1" "${match:-?}" |
541 awk -F / -v pfx="${2//\\/\\\\}" '{
542 paths[$1] = 1
543 }
544 END {
545 for (p in paths) {
546 if (substr(p, 1, 1) != "\"") {
547 # No special characters, easy!
548 print pfx p
549 continue
550 }
551
552 # The path is quoted.
553 p = dequote(p)
554 if (p == "")
555 continue
556
557 # Even when a directory name itself does not contain
558 # any special characters, it will still be quoted if
559 # any of its (stripped) trailing path components do.
560 # Because of this we may have seen the same directory
561 # both quoted and unquoted.
562 if (p in paths)
563 # We have seen the same directory unquoted,
564 # skip it.
565 continue
566 else
567 print pfx p
568 }
569 }
570 function dequote(p, bs_idx, out, esc, esc_idx, dec) {
571 # Skip opening double quote.
572 p = substr(p, 2)
573
574 # Interpret backslash escape sequences.
575 while ((bs_idx = index(p, "\\")) != 0) {
576 out = out substr(p, 1, bs_idx - 1)
577 esc = substr(p, bs_idx + 1, 1)
578 p = substr(p, bs_idx + 2)
579
580 if ((esc_idx = index("abtvfr\"\\", esc)) != 0) {
581 # C-style one-character escape sequence.
582 out = out substr("\a\b\t\v\f\r\"\\",
583 esc_idx, 1)
584 } else if (esc == "n") {
585 # Uh-oh, a newline character.
586 # We cannot reliably put a pathname
587 # containing a newline into COMPREPLY,
588 # and the newline would create a mess.
589 # Skip this path.
590 return ""
591 } else {
592 # Must be a \nnn octal value, then.
593 dec = esc * 64 + \
594 substr(p, 1, 1) * 8 + \
595 substr(p, 2, 1)
596 out = out sprintf("%c", dec)
597 p = substr(p, 3)
598 }
599 }
600 # Drop closing double quote, if there is one.
601 # (There is not any if this is a directory, as it was
602 # already stripped with the trailing path components.)
603 if (substr(p, length(p), 1) == "\"")
604 out = out substr(p, 1, length(p) - 1)
605 else
606 out = out p
607
608 return out
609 }'
610 }
611
612 # __git_complete_index_file requires 1 argument:
613 # 1: the options to pass to ls-file
614 #
615 # The exception is --committable, which finds the files appropriate commit.
616 __git_complete_index_file ()
617 {
618 local dequoted_word pfx="" cur_
619
620 __git_dequote "$cur"
621
622 case "$dequoted_word" in
623 ?*/*)
624 pfx="${dequoted_word%/*}/"
625 cur_="${dequoted_word##*/}"
626 ;;
627 *)
628 cur_="$dequoted_word"
629 esac
630
631 __gitcomp_file_direct "$(__git_index_files "$1" "$pfx" "$cur_")"
632 }
633
634 # Lists branches from the local repository.
635 # 1: A prefix to be added to each listed branch (optional).
636 # 2: List only branches matching this word (optional; list all branches if
637 # unset or empty).
638 # 3: A suffix to be appended to each listed branch (optional).
639 __git_heads ()
640 {
641 local pfx="${1-}" cur_="${2-}" sfx="${3-}"
642
643 __git for-each-ref --format="${pfx//\%/%%}%(refname:strip=2)$sfx" \
644 "refs/heads/$cur_*" "refs/heads/$cur_*/**"
645 }
646
647 # Lists branches from remote repositories.
648 # 1: A prefix to be added to each listed branch (optional).
649 # 2: List only branches matching this word (optional; list all branches if
650 # unset or empty).
651 # 3: A suffix to be appended to each listed branch (optional).
652 __git_remote_heads ()
653 {
654 local pfx="${1-}" cur_="${2-}" sfx="${3-}"
655
656 __git for-each-ref --format="${pfx//\%/%%}%(refname:strip=2)$sfx" \
657 "refs/remotes/$cur_*" "refs/remotes/$cur_*/**"
658 }
659
660 # Lists tags from the local repository.
661 # Accepts the same positional parameters as __git_heads() above.
662 __git_tags ()
663 {
664 local pfx="${1-}" cur_="${2-}" sfx="${3-}"
665
666 __git for-each-ref --format="${pfx//\%/%%}%(refname:strip=2)$sfx" \
667 "refs/tags/$cur_*" "refs/tags/$cur_*/**"
668 }
669
670 # List unique branches from refs/remotes used for 'git checkout' and 'git
671 # switch' tracking DWIMery.
672 # 1: A prefix to be added to each listed branch (optional)
673 # 2: List only branches matching this word (optional; list all branches if
674 # unset or empty).
675 # 3: A suffix to be appended to each listed branch (optional).
676 __git_dwim_remote_heads ()
677 {
678 local pfx="${1-}" cur_="${2-}" sfx="${3-}"
679 local fer_pfx="${pfx//\%/%%}" # "escape" for-each-ref format specifiers
680
681 # employ the heuristic used by git checkout and git switch
682 # Try to find a remote branch that cur_es the completion word
683 # but only output if the branch name is unique
684 __git for-each-ref --format="$fer_pfx%(refname:strip=3)$sfx" \
685 --sort="refname:strip=3" \
686 "refs/remotes/*/$cur_*" "refs/remotes/*/$cur_*/**" | \
687 uniq -u
688 }
689
690 # Lists refs from the local (by default) or from a remote repository.
691 # It accepts 0, 1 or 2 arguments:
692 # 1: The remote to list refs from (optional; ignored, if set but empty).
693 # Can be the name of a configured remote, a path, or a URL.
694 # 2: In addition to local refs, list unique branches from refs/remotes/ for
695 # 'git checkout's tracking DWIMery (optional; ignored, if set but empty).
696 # 3: A prefix to be added to each listed ref (optional).
697 # 4: List only refs matching this word (optional; list all refs if unset or
698 # empty).
699 # 5: A suffix to be appended to each listed ref (optional; ignored, if set
700 # but empty).
701 #
702 # Use __git_complete_refs() instead.
703 __git_refs ()
704 {
705 local i hash dir track="${2-}"
706 local list_refs_from=path remote="${1-}"
707 local format refs
708 local pfx="${3-}" cur_="${4-$cur}" sfx="${5-}"
709 local match="${4-}"
710 local fer_pfx="${pfx//\%/%%}" # "escape" for-each-ref format specifiers
711
712 __git_find_repo_path
713 dir="$__git_repo_path"
714
715 if [ -z "$remote" ]; then
716 if [ -z "$dir" ]; then
717 return
718 fi
719 else
720 if __git_is_configured_remote "$remote"; then
721 # configured remote takes precedence over a
722 # local directory with the same name
723 list_refs_from=remote
724 elif [ -d "$remote/.git" ]; then
725 dir="$remote/.git"
726 elif [ -d "$remote" ]; then
727 dir="$remote"
728 else
729 list_refs_from=url
730 fi
731 fi
732
733 if [ "$list_refs_from" = path ]; then
734 if [[ "$cur_" == ^* ]]; then
735 pfx="$pfx^"
736 fer_pfx="$fer_pfx^"
737 cur_=${cur_#^}
738 match=${match#^}
739 fi
740 case "$cur_" in
741 refs|refs/*)
742 format="refname"
743 refs=("$match*" "$match*/**")
744 track=""
745 ;;
746 *)
747 for i in HEAD FETCH_HEAD ORIG_HEAD MERGE_HEAD REBASE_HEAD; do
748 case "$i" in
749 $match*)
750 if [ -e "$dir/$i" ]; then
751 echo "$pfx$i$sfx"
752 fi
753 ;;
754 esac
755 done
756 format="refname:strip=2"
757 refs=("refs/tags/$match*" "refs/tags/$match*/**"
758 "refs/heads/$match*" "refs/heads/$match*/**"
759 "refs/remotes/$match*" "refs/remotes/$match*/**")
760 ;;
761 esac
762 __git_dir="$dir" __git for-each-ref --format="$fer_pfx%($format)$sfx" \
763 "${refs[@]}"
764 if [ -n "$track" ]; then
765 __git_dwim_remote_heads "$pfx" "$match" "$sfx"
766 fi
767 return
768 fi
769 case "$cur_" in
770 refs|refs/*)
771 __git ls-remote "$remote" "$match*" | \
772 while read -r hash i; do
773 case "$i" in
774 *^{}) ;;
775 *) echo "$pfx$i$sfx" ;;
776 esac
777 done
778 ;;
779 *)
780 if [ "$list_refs_from" = remote ]; then
781 case "HEAD" in
782 $match*) echo "${pfx}HEAD$sfx" ;;
783 esac
784 __git for-each-ref --format="$fer_pfx%(refname:strip=3)$sfx" \
785 "refs/remotes/$remote/$match*" \
786 "refs/remotes/$remote/$match*/**"
787 else
788 local query_symref
789 case "HEAD" in
790 $match*) query_symref="HEAD" ;;
791 esac
792 __git ls-remote "$remote" $query_symref \
793 "refs/tags/$match*" "refs/heads/$match*" \
794 "refs/remotes/$match*" |
795 while read -r hash i; do
796 case "$i" in
797 *^{}) ;;
798 refs/*) echo "$pfx${i#refs/*/}$sfx" ;;
799 *) echo "$pfx$i$sfx" ;; # symbolic refs
800 esac
801 done
802 fi
803 ;;
804 esac
805 }
806
807 # Completes refs, short and long, local and remote, symbolic and pseudo.
808 #
809 # Usage: __git_complete_refs [<option>]...
810 # --remote=<remote>: The remote to list refs from, can be the name of a
811 # configured remote, a path, or a URL.
812 # --dwim: List unique remote branches for 'git switch's tracking DWIMery.
813 # --pfx=<prefix>: A prefix to be added to each ref.
814 # --cur=<word>: The current ref to be completed. Defaults to the current
815 # word to be completed.
816 # --sfx=<suffix>: A suffix to be appended to each ref instead of the default
817 # space.
818 # --mode=<mode>: What set of refs to complete, one of 'refs' (the default) to
819 # complete all refs, 'heads' to complete only branches, or
820 # 'remote-heads' to complete only remote branches. Note that
821 # --remote is only compatible with --mode=refs.
822 __git_complete_refs ()
823 {
824 local remote= dwim= pfx= cur_="$cur" sfx=" " mode="refs"
825
826 while test $# != 0; do
827 case "$1" in
828 --remote=*) remote="${1##--remote=}" ;;
829 --dwim) dwim="yes" ;;
830 # --track is an old spelling of --dwim
831 --track) dwim="yes" ;;
832 --pfx=*) pfx="${1##--pfx=}" ;;
833 --cur=*) cur_="${1##--cur=}" ;;
834 --sfx=*) sfx="${1##--sfx=}" ;;
835 --mode=*) mode="${1##--mode=}" ;;
836 *) return 1 ;;
837 esac
838 shift
839 done
840
841 # complete references based on the specified mode
842 case "$mode" in
843 refs)
844 __gitcomp_direct "$(__git_refs "$remote" "" "$pfx" "$cur_" "$sfx")" ;;
845 heads)
846 __gitcomp_direct "$(__git_heads "$pfx" "$cur_" "$sfx")" ;;
847 remote-heads)
848 __gitcomp_direct "$(__git_remote_heads "$pfx" "$cur_" "$sfx")" ;;
849 *)
850 return 1 ;;
851 esac
852
853 # Append DWIM remote branch names if requested
854 if [ "$dwim" = "yes" ]; then
855 __gitcomp_direct_append "$(__git_dwim_remote_heads "$pfx" "$cur_" "$sfx")"
856 fi
857 }
858
859 # __git_refs2 requires 1 argument (to pass to __git_refs)
860 # Deprecated: use __git_complete_fetch_refspecs() instead.
861 __git_refs2 ()
862 {
863 local i
864 for i in $(__git_refs "$1"); do
865 echo "$i:$i"
866 done
867 }
868
869 # Completes refspecs for fetching from a remote repository.
870 # 1: The remote repository.
871 # 2: A prefix to be added to each listed refspec (optional).
872 # 3: The ref to be completed as a refspec instead of the current word to be
873 # completed (optional)
874 # 4: A suffix to be appended to each listed refspec instead of the default
875 # space (optional).
876 __git_complete_fetch_refspecs ()
877 {
878 local i remote="$1" pfx="${2-}" cur_="${3-$cur}" sfx="${4- }"
879
880 __gitcomp_direct "$(
881 for i in $(__git_refs "$remote" "" "" "$cur_") ; do
882 echo "$pfx$i:$i$sfx"
883 done
884 )"
885 }
886
887 # __git_refs_remotes requires 1 argument (to pass to ls-remote)
888 __git_refs_remotes ()
889 {
890 local i hash
891 __git ls-remote "$1" 'refs/heads/*' | \
892 while read -r hash i; do
893 echo "$i:refs/remotes/$1/${i#refs/heads/}"
894 done
895 }
896
897 __git_remotes ()
898 {
899 __git_find_repo_path
900 test -d "$__git_repo_path/remotes" && ls -1 "$__git_repo_path/remotes"
901 __git remote
902 }
903
904 # Returns true if $1 matches the name of a configured remote, false otherwise.
905 __git_is_configured_remote ()
906 {
907 local remote
908 for remote in $(__git_remotes); do
909 if [ "$remote" = "$1" ]; then
910 return 0
911 fi
912 done
913 return 1
914 }
915
916 __git_list_merge_strategies ()
917 {
918 LANG=C LC_ALL=C git merge -s help 2>&1 |
919 sed -n -e '/[Aa]vailable strategies are: /,/^$/{
920 s/\.$//
921 s/.*://
922 s/^[ ]*//
923 s/[ ]*$//
924 p
925 }'
926 }
927
928 __git_merge_strategies=
929 # 'git merge -s help' (and thus detection of the merge strategy
930 # list) fails, unfortunately, if run outside of any git working
931 # tree. __git_merge_strategies is set to the empty string in
932 # that case, and the detection will be repeated the next time it
933 # is needed.
934 __git_compute_merge_strategies ()
935 {
936 test -n "$__git_merge_strategies" ||
937 __git_merge_strategies=$(__git_list_merge_strategies)
938 }
939
940 __git_merge_strategy_options="ours theirs subtree subtree= patience
941 histogram diff-algorithm= ignore-space-change ignore-all-space
942 ignore-space-at-eol renormalize no-renormalize no-renames
943 find-renames find-renames= rename-threshold="
944
945 __git_complete_revlist_file ()
946 {
947 local dequoted_word pfx ls ref cur_="$cur"
948 case "$cur_" in
949 *..?*:*)
950 return
951 ;;
952 ?*:*)
953 ref="${cur_%%:*}"
954 cur_="${cur_#*:}"
955
956 __git_dequote "$cur_"
957
958 case "$dequoted_word" in
959 ?*/*)
960 pfx="${dequoted_word%/*}"
961 cur_="${dequoted_word##*/}"
962 ls="$ref:$pfx"
963 pfx="$pfx/"
964 ;;
965 *)
966 cur_="$dequoted_word"
967 ls="$ref"
968 ;;
969 esac
970
971 case "$COMP_WORDBREAKS" in
972 *:*) : great ;;
973 *) pfx="$ref:$pfx" ;;
974 esac
975
976 __gitcomp_file "$(__git ls-tree "$ls" \
977 | sed 's/^.* //
978 s/$//')" \
979 "$pfx" "$cur_"
980 ;;
981 *...*)
982 pfx="${cur_%...*}..."
983 cur_="${cur_#*...}"
984 __git_complete_refs --pfx="$pfx" --cur="$cur_"
985 ;;
986 *..*)
987 pfx="${cur_%..*}.."
988 cur_="${cur_#*..}"
989 __git_complete_refs --pfx="$pfx" --cur="$cur_"
990 ;;
991 *)
992 __git_complete_refs
993 ;;
994 esac
995 }
996
997 __git_complete_file ()
998 {
999 __git_complete_revlist_file
1000 }
1001
1002 __git_complete_revlist ()
1003 {
1004 __git_complete_revlist_file
1005 }
1006
1007 __git_complete_remote_or_refspec ()
1008 {
1009 local cur_="$cur" cmd="${words[1]}"
1010 local i c=2 remote="" pfx="" lhs=1 no_complete_refspec=0
1011 if [ "$cmd" = "remote" ]; then
1012 ((c++))
1013 fi
1014 while [ $c -lt $cword ]; do
1015 i="${words[c]}"
1016 case "$i" in
1017 --mirror) [ "$cmd" = "push" ] && no_complete_refspec=1 ;;
1018 -d|--delete) [ "$cmd" = "push" ] && lhs=0 ;;
1019 --all)
1020 case "$cmd" in
1021 push) no_complete_refspec=1 ;;
1022 fetch)
1023 return
1024 ;;
1025 *) ;;
1026 esac
1027 ;;
1028 --multiple) no_complete_refspec=1; break ;;
1029 -*) ;;
1030 *) remote="$i"; break ;;
1031 esac
1032 ((c++))
1033 done
1034 if [ -z "$remote" ]; then
1035 __gitcomp_nl "$(__git_remotes)"
1036 return
1037 fi
1038 if [ $no_complete_refspec = 1 ]; then
1039 return
1040 fi
1041 [ "$remote" = "." ] && remote=
1042 case "$cur_" in
1043 *:*)
1044 case "$COMP_WORDBREAKS" in
1045 *:*) : great ;;
1046 *) pfx="${cur_%%:*}:" ;;
1047 esac
1048 cur_="${cur_#*:}"
1049 lhs=0
1050 ;;
1051 +*)
1052 pfx="+"
1053 cur_="${cur_#+}"
1054 ;;
1055 esac
1056 case "$cmd" in
1057 fetch)
1058 if [ $lhs = 1 ]; then
1059 __git_complete_fetch_refspecs "$remote" "$pfx" "$cur_"
1060 else
1061 __git_complete_refs --pfx="$pfx" --cur="$cur_"
1062 fi
1063 ;;
1064 pull|remote)
1065 if [ $lhs = 1 ]; then
1066 __git_complete_refs --remote="$remote" --pfx="$pfx" --cur="$cur_"
1067 else
1068 __git_complete_refs --pfx="$pfx" --cur="$cur_"
1069 fi
1070 ;;
1071 push)
1072 if [ $lhs = 1 ]; then
1073 __git_complete_refs --pfx="$pfx" --cur="$cur_"
1074 else
1075 __git_complete_refs --remote="$remote" --pfx="$pfx" --cur="$cur_"
1076 fi
1077 ;;
1078 esac
1079 }
1080
1081 __git_complete_strategy ()
1082 {
1083 __git_compute_merge_strategies
1084 case "$prev" in
1085 -s|--strategy)
1086 __gitcomp "$__git_merge_strategies"
1087 return 0
1088 ;;
1089 -X)
1090 __gitcomp "$__git_merge_strategy_options"
1091 return 0
1092 ;;
1093 esac
1094 case "$cur" in
1095 --strategy=*)
1096 __gitcomp "$__git_merge_strategies" "" "${cur##--strategy=}"
1097 return 0
1098 ;;
1099 --strategy-option=*)
1100 __gitcomp "$__git_merge_strategy_options" "" "${cur##--strategy-option=}"
1101 return 0
1102 ;;
1103 esac
1104 return 1
1105 }
1106
1107 __git_all_commands=
1108 __git_compute_all_commands ()
1109 {
1110 test -n "$__git_all_commands" ||
1111 __git_all_commands=$(__git --list-cmds=main,others,alias,nohelpers)
1112 }
1113
1114 # Lists all set config variables starting with the given section prefix,
1115 # with the prefix removed.
1116 __git_get_config_variables ()
1117 {
1118 local section="$1" i IFS=$'\n'
1119 for i in $(__git config --name-only --get-regexp "^$section\..*"); do
1120 echo "${i#$section.}"
1121 done
1122 }
1123
1124 __git_pretty_aliases ()
1125 {
1126 __git_get_config_variables "pretty"
1127 }
1128
1129 # __git_aliased_command requires 1 argument
1130 __git_aliased_command ()
1131 {
1132 local cur=$1 last list word cmdline
1133
1134 while [[ -n "$cur" ]]; do
1135 if [[ "$list" == *" $cur "* ]]; then
1136 # loop detected
1137 return
1138 fi
1139
1140 cmdline=$(__git config --get "alias.$cur")
1141 list=" $cur $list"
1142 last=$cur
1143 cur=
1144
1145 for word in $cmdline; do
1146 case "$word" in
1147 \!gitk|gitk)
1148 cur="gitk"
1149 break
1150 ;;
1151 \!*) : shell command alias ;;
1152 -*) : option ;;
1153 *=*) : setting env ;;
1154 git) : git itself ;;
1155 \(\)) : skip parens of shell function definition ;;
1156 {) : skip start of shell helper function ;;
1157 :) : skip null command ;;
1158 \'*) : skip opening quote after sh -c ;;
1159 *)
1160 cur="$word"
1161 break
1162 esac
1163 done
1164 done
1165
1166 cur=$last
1167 if [[ "$cur" != "$1" ]]; then
1168 echo "$cur"
1169 fi
1170 }
1171
1172 # Check whether one of the given words is present on the command line,
1173 # and print the first word found.
1174 #
1175 # Usage: __git_find_on_cmdline [<option>]... "<wordlist>"
1176 # --show-idx: Optionally show the index of the found word in the $words array.
1177 __git_find_on_cmdline ()
1178 {
1179 local word c=1 show_idx
1180
1181 while test $# -gt 1; do
1182 case "$1" in
1183 --show-idx) show_idx=y ;;
1184 *) return 1 ;;
1185 esac
1186 shift
1187 done
1188 local wordlist="$1"
1189
1190 while [ $c -lt $cword ]; do
1191 for word in $wordlist; do
1192 if [ "$word" = "${words[c]}" ]; then
1193 if [ -n "${show_idx-}" ]; then
1194 echo "$c $word"
1195 else
1196 echo "$word"
1197 fi
1198 return
1199 fi
1200 done
1201 ((c++))
1202 done
1203 }
1204
1205 # Similar to __git_find_on_cmdline, except that it loops backwards and thus
1206 # prints the *last* word found. Useful for finding which of two options that
1207 # supersede each other came last, such as "--guess" and "--no-guess".
1208 #
1209 # Usage: __git_find_last_on_cmdline [<option>]... "<wordlist>"
1210 # --show-idx: Optionally show the index of the found word in the $words array.
1211 __git_find_last_on_cmdline ()
1212 {
1213 local word c=$cword show_idx
1214
1215 while test $# -gt 1; do
1216 case "$1" in
1217 --show-idx) show_idx=y ;;
1218 *) return 1 ;;
1219 esac
1220 shift
1221 done
1222 local wordlist="$1"
1223
1224 while [ $c -gt 1 ]; do
1225 ((c--))
1226 for word in $wordlist; do
1227 if [ "$word" = "${words[c]}" ]; then
1228 if [ -n "$show_idx" ]; then
1229 echo "$c $word"
1230 else
1231 echo "$word"
1232 fi
1233 return
1234 fi
1235 done
1236 done
1237 }
1238
1239 # Echo the value of an option set on the command line or config
1240 #
1241 # $1: short option name
1242 # $2: long option name including =
1243 # $3: list of possible values
1244 # $4: config string (optional)
1245 #
1246 # example:
1247 # result="$(__git_get_option_value "-d" "--do-something=" \
1248 # "yes no" "core.doSomething")"
1249 #
1250 # result is then either empty (no option set) or "yes" or "no"
1251 #
1252 # __git_get_option_value requires 3 arguments
1253 __git_get_option_value ()
1254 {
1255 local c short_opt long_opt val
1256 local result= values config_key word
1257
1258 short_opt="$1"
1259 long_opt="$2"
1260 values="$3"
1261 config_key="$4"
1262
1263 ((c = $cword - 1))
1264 while [ $c -ge 0 ]; do
1265 word="${words[c]}"
1266 for val in $values; do
1267 if [ "$short_opt$val" = "$word" ] ||
1268 [ "$long_opt$val" = "$word" ]; then
1269 result="$val"
1270 break 2
1271 fi
1272 done
1273 ((c--))
1274 done
1275
1276 if [ -n "$config_key" ] && [ -z "$result" ]; then
1277 result="$(__git config "$config_key")"
1278 fi
1279
1280 echo "$result"
1281 }
1282
1283 __git_has_doubledash ()
1284 {
1285 local c=1
1286 while [ $c -lt $cword ]; do
1287 if [ "--" = "${words[c]}" ]; then
1288 return 0
1289 fi
1290 ((c++))
1291 done
1292 return 1
1293 }
1294
1295 # Try to count non option arguments passed on the command line for the
1296 # specified git command.
1297 # When options are used, it is necessary to use the special -- option to
1298 # tell the implementation were non option arguments begin.
1299 # XXX this can not be improved, since options can appear everywhere, as
1300 # an example:
1301 # git mv x -n y
1302 #
1303 # __git_count_arguments requires 1 argument: the git command executed.
1304 __git_count_arguments ()
1305 {
1306 local word i c=0
1307
1308 # Skip "git" (first argument)
1309 for ((i=1; i < ${#words[@]}; i++)); do
1310 word="${words[i]}"
1311
1312 case "$word" in
1313 --)
1314 # Good; we can assume that the following are only non
1315 # option arguments.
1316 ((c = 0))
1317 ;;
1318 "$1")
1319 # Skip the specified git command and discard git
1320 # main options
1321 ((c = 0))
1322 ;;
1323 ?*)
1324 ((c++))
1325 ;;
1326 esac
1327 done
1328
1329 printf "%d" $c
1330 }
1331
1332 __git_whitespacelist="nowarn warn error error-all fix"
1333 __git_patchformat="mbox stgit stgit-series hg mboxrd"
1334 __git_showcurrentpatch="diff raw"
1335 __git_am_inprogress_options="--skip --continue --resolved --abort --quit --show-current-patch"
1336
1337 _git_am ()
1338 {
1339 __git_find_repo_path
1340 if [ -d "$__git_repo_path"/rebase-apply ]; then
1341 __gitcomp "$__git_am_inprogress_options"
1342 return
1343 fi
1344 case "$cur" in
1345 --whitespace=*)
1346 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
1347 return
1348 ;;
1349 --patch-format=*)
1350 __gitcomp "$__git_patchformat" "" "${cur##--patch-format=}"
1351 return
1352 ;;
1353 --show-current-patch=*)
1354 __gitcomp "$__git_showcurrentpatch" "" "${cur##--show-current-patch=}"
1355 return
1356 ;;
1357 --*)
1358 __gitcomp_builtin am "" \
1359 "$__git_am_inprogress_options"
1360 return
1361 esac
1362 }
1363
1364 _git_apply ()
1365 {
1366 case "$cur" in
1367 --whitespace=*)
1368 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
1369 return
1370 ;;
1371 --*)
1372 __gitcomp_builtin apply
1373 return
1374 esac
1375 }
1376
1377 _git_add ()
1378 {
1379 case "$cur" in
1380 --chmod=*)
1381 __gitcomp "+x -x" "" "${cur##--chmod=}"
1382 return
1383 ;;
1384 --*)
1385 __gitcomp_builtin add
1386 return
1387 esac
1388
1389 local complete_opt="--others --modified --directory --no-empty-directory"
1390 if test -n "$(__git_find_on_cmdline "-u --update")"
1391 then
1392 complete_opt="--modified"
1393 fi
1394 __git_complete_index_file "$complete_opt"
1395 }
1396
1397 _git_archive ()
1398 {
1399 case "$cur" in
1400 --format=*)
1401 __gitcomp "$(git archive --list)" "" "${cur##--format=}"
1402 return
1403 ;;
1404 --remote=*)
1405 __gitcomp_nl "$(__git_remotes)" "" "${cur##--remote=}"
1406 return
1407 ;;
1408 --*)
1409 __gitcomp_builtin archive "--format= --list --verbose --prefix= --worktree-attributes"
1410 return
1411 ;;
1412 esac
1413 __git_complete_file
1414 }
1415
1416 _git_bisect ()
1417 {
1418 __git_has_doubledash && return
1419
1420 local subcommands="start bad good skip reset visualize replay log run"
1421 local subcommand="$(__git_find_on_cmdline "$subcommands")"
1422 if [ -z "$subcommand" ]; then
1423 __git_find_repo_path
1424 if [ -f "$__git_repo_path"/BISECT_START ]; then
1425 __gitcomp "$subcommands"
1426 else
1427 __gitcomp "replay start"
1428 fi
1429 return
1430 fi
1431
1432 case "$subcommand" in
1433 bad|good|reset|skip|start)
1434 __git_complete_refs
1435 ;;
1436 *)
1437 ;;
1438 esac
1439 }
1440
1441 __git_ref_fieldlist="refname objecttype objectsize objectname upstream push HEAD symref"
1442
1443 _git_branch ()
1444 {
1445 local i c=1 only_local_ref="n" has_r="n"
1446
1447 while [ $c -lt $cword ]; do
1448 i="${words[c]}"
1449 case "$i" in
1450 -d|-D|--delete|-m|-M|--move|-c|-C|--copy)
1451 only_local_ref="y" ;;
1452 -r|--remotes)
1453 has_r="y" ;;
1454 esac
1455 ((c++))
1456 done
1457
1458 case "$cur" in
1459 --set-upstream-to=*)
1460 __git_complete_refs --cur="${cur##--set-upstream-to=}"
1461 ;;
1462 --*)
1463 __gitcomp_builtin branch
1464 ;;
1465 *)
1466 if [ $only_local_ref = "y" -a $has_r = "n" ]; then
1467 __gitcomp_direct "$(__git_heads "" "$cur" " ")"
1468 else
1469 __git_complete_refs
1470 fi
1471 ;;
1472 esac
1473 }
1474
1475 _git_bundle ()
1476 {
1477 local cmd="${words[2]}"
1478 case "$cword" in
1479 2)
1480 __gitcomp "create list-heads verify unbundle"
1481 ;;
1482 3)
1483 # looking for a file
1484 ;;
1485 *)
1486 case "$cmd" in
1487 create)
1488 __git_complete_revlist
1489 ;;
1490 esac
1491 ;;
1492 esac
1493 }
1494
1495 # Helper function to decide whether or not we should enable DWIM logic for
1496 # git-switch and git-checkout.
1497 #
1498 # To decide between the following rules in decreasing priority order:
1499 # - the last provided of "--guess" or "--no-guess" explicitly enable or
1500 # disable completion of DWIM logic respectively.
1501 # - If checkout.guess is false, disable completion of DWIM logic.
1502 # - If the --no-track option is provided, take this as a hint to disable the
1503 # DWIM completion logic
1504 # - If GIT_COMPLETION_CHECKOUT_NO_GUESS is set, disable the DWIM completion
1505 # logic, as requested by the user.
1506 # - Enable DWIM logic otherwise.
1507 #
1508 __git_checkout_default_dwim_mode ()
1509 {
1510 local last_option dwim_opt="--dwim"
1511
1512 if [ "${GIT_COMPLETION_CHECKOUT_NO_GUESS-}" = "1" ]; then
1513 dwim_opt=""
1514 fi
1515
1516 # --no-track disables DWIM, but with lower priority than
1517 # --guess/--no-guess/checkout.guess
1518 if [ -n "$(__git_find_on_cmdline "--no-track")" ]; then
1519 dwim_opt=""
1520 fi
1521
1522 # checkout.guess = false disables DWIM, but with lower priority than
1523 # --guess/--no-guess
1524 if [ "$(__git config --type=bool checkout.guess)" = "false" ]; then
1525 dwim_opt=""
1526 fi
1527
1528 # Find the last provided --guess or --no-guess
1529 last_option="$(__git_find_last_on_cmdline "--guess --no-guess")"
1530 case "$last_option" in
1531 --guess)
1532 dwim_opt="--dwim"
1533 ;;
1534 --no-guess)
1535 dwim_opt=""
1536 ;;
1537 esac
1538
1539 echo "$dwim_opt"
1540 }
1541
1542 _git_checkout ()
1543 {
1544 __git_has_doubledash && return
1545
1546 local dwim_opt="$(__git_checkout_default_dwim_mode)"
1547
1548 case "$prev" in
1549 -b|-B|--orphan)
1550 # Complete local branches (and DWIM branch
1551 # remote branch names) for an option argument
1552 # specifying a new branch name. This is for
1553 # convenience, assuming new branches are
1554 # possibly based on pre-existing branch names.
1555 __git_complete_refs $dwim_opt --mode="heads"
1556 return
1557 ;;
1558 *)
1559 ;;
1560 esac
1561
1562 case "$cur" in
1563 --conflict=*)
1564 __gitcomp "diff3 merge" "" "${cur##--conflict=}"
1565 ;;
1566 --*)
1567 __gitcomp_builtin checkout
1568 ;;
1569 *)
1570 # At this point, we've already handled special completion for
1571 # the arguments to -b/-B, and --orphan. There are 3 main
1572 # things left we can possibly complete:
1573 # 1) a start-point for -b/-B, -d/--detach, or --orphan
1574 # 2) a remote head, for --track
1575 # 3) an arbitrary reference, possibly including DWIM names
1576 #
1577
1578 if [ -n "$(__git_find_on_cmdline "-b -B -d --detach --orphan")" ]; then
1579 __git_complete_refs --mode="refs"
1580 elif [ -n "$(__git_find_on_cmdline "--track")" ]; then
1581 __git_complete_refs --mode="remote-heads"
1582 else
1583 __git_complete_refs $dwim_opt --mode="refs"
1584 fi
1585 ;;
1586 esac
1587 }
1588
1589 __git_sequencer_inprogress_options="--continue --quit --abort --skip"
1590
1591 __git_cherry_pick_inprogress_options=$__git_sequencer_inprogress_options
1592
1593 _git_cherry_pick ()
1594 {
1595 __git_find_repo_path
1596 if [ -f "$__git_repo_path"/CHERRY_PICK_HEAD ]; then
1597 __gitcomp "$__git_cherry_pick_inprogress_options"
1598 return
1599 fi
1600
1601 __git_complete_strategy && return
1602
1603 case "$cur" in
1604 --*)
1605 __gitcomp_builtin cherry-pick "" \
1606 "$__git_cherry_pick_inprogress_options"
1607 ;;
1608 *)
1609 __git_complete_refs
1610 ;;
1611 esac
1612 }
1613
1614 _git_clean ()
1615 {
1616 case "$cur" in
1617 --*)
1618 __gitcomp_builtin clean
1619 return
1620 ;;
1621 esac
1622
1623 # XXX should we check for -x option ?
1624 __git_complete_index_file "--others --directory"
1625 }
1626
1627 _git_clone ()
1628 {
1629 case "$prev" in
1630 -c|--config)
1631 __git_complete_config_variable_name_and_value
1632 return
1633 ;;
1634 esac
1635 case "$cur" in
1636 --config=*)
1637 __git_complete_config_variable_name_and_value \
1638 --cur="${cur##--config=}"
1639 return
1640 ;;
1641 --*)
1642 __gitcomp_builtin clone
1643 return
1644 ;;
1645 esac
1646 }
1647
1648 __git_untracked_file_modes="all no normal"
1649
1650 _git_commit ()
1651 {
1652 case "$prev" in
1653 -c|-C)
1654 __git_complete_refs
1655 return
1656 ;;
1657 esac
1658
1659 case "$cur" in
1660 --cleanup=*)
1661 __gitcomp "default scissors strip verbatim whitespace
1662 " "" "${cur##--cleanup=}"
1663 return
1664 ;;
1665 --reuse-message=*|--reedit-message=*|\
1666 --fixup=*|--squash=*)
1667 __git_complete_refs --cur="${cur#*=}"
1668 return
1669 ;;
1670 --untracked-files=*)
1671 __gitcomp "$__git_untracked_file_modes" "" "${cur##--untracked-files=}"
1672 return
1673 ;;
1674 --*)
1675 __gitcomp_builtin commit
1676 return
1677 esac
1678
1679 if __git rev-parse --verify --quiet HEAD >/dev/null; then
1680 __git_complete_index_file "--committable"
1681 else
1682 # This is the first commit
1683 __git_complete_index_file "--cached"
1684 fi
1685 }
1686
1687 _git_describe ()
1688 {
1689 case "$cur" in
1690 --*)
1691 __gitcomp_builtin describe
1692 return
1693 esac
1694 __git_complete_refs
1695 }
1696
1697 __git_diff_algorithms="myers minimal patience histogram"
1698
1699 __git_diff_submodule_formats="diff log short"
1700
1701 __git_color_moved_opts="no default plain blocks zebra dimmed-zebra"
1702
1703 __git_color_moved_ws_opts="no ignore-space-at-eol ignore-space-change
1704 ignore-all-space allow-indentation-change"
1705
1706 __git_diff_common_options="--stat --numstat --shortstat --summary
1707 --patch-with-stat --name-only --name-status --color
1708 --no-color --color-words --no-renames --check
1709 --color-moved --color-moved= --no-color-moved
1710 --color-moved-ws= --no-color-moved-ws
1711 --full-index --binary --abbrev --diff-filter=
1712 --find-copies-harder --ignore-cr-at-eol
1713 --text --ignore-space-at-eol --ignore-space-change
1714 --ignore-all-space --ignore-blank-lines --exit-code
1715 --quiet --ext-diff --no-ext-diff
1716 --no-prefix --src-prefix= --dst-prefix=
1717 --inter-hunk-context=
1718 --patience --histogram --minimal
1719 --raw --word-diff --word-diff-regex=
1720 --dirstat --dirstat= --dirstat-by-file
1721 --dirstat-by-file= --cumulative
1722 --diff-algorithm=
1723 --submodule --submodule= --ignore-submodules
1724 --indent-heuristic --no-indent-heuristic
1725 --textconv --no-textconv
1726 --patch --no-patch
1727 "
1728
1729 __git_diff_difftool_options="--cached --staged --pickaxe-all --pickaxe-regex
1730 --base --ours --theirs --no-index --relative --merge-base
1731 $__git_diff_common_options"
1732
1733 _git_diff ()
1734 {
1735 __git_has_doubledash && return
1736
1737 case "$cur" in
1738 --diff-algorithm=*)
1739 __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}"
1740 return
1741 ;;
1742 --submodule=*)
1743 __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}"
1744 return
1745 ;;
1746 --color-moved=*)
1747 __gitcomp "$__git_color_moved_opts" "" "${cur##--color-moved=}"
1748 return
1749 ;;
1750 --color-moved-ws=*)
1751 __gitcomp "$__git_color_moved_ws_opts" "" "${cur##--color-moved-ws=}"
1752 return
1753 ;;
1754 --*)
1755 __gitcomp "$__git_diff_difftool_options"
1756 return
1757 ;;
1758 esac
1759 __git_complete_revlist_file
1760 }
1761
1762 __git_mergetools_common="diffuse diffmerge ecmerge emerge kdiff3 meld opendiff
1763 tkdiff vimdiff nvimdiff gvimdiff xxdiff araxis p4merge
1764 bc codecompare smerge
1765 "
1766
1767 _git_difftool ()
1768 {
1769 __git_has_doubledash && return
1770
1771 case "$cur" in
1772 --tool=*)
1773 __gitcomp "$__git_mergetools_common kompare" "" "${cur##--tool=}"
1774 return
1775 ;;
1776 --*)
1777 __gitcomp_builtin difftool "$__git_diff_difftool_options"
1778 return
1779 ;;
1780 esac
1781 __git_complete_revlist_file
1782 }
1783
1784 __git_fetch_recurse_submodules="yes on-demand no"
1785
1786 _git_fetch ()
1787 {
1788 case "$cur" in
1789 --recurse-submodules=*)
1790 __gitcomp "$__git_fetch_recurse_submodules" "" "${cur##--recurse-submodules=}"
1791 return
1792 ;;
1793 --filter=*)
1794 __gitcomp "blob:none blob:limit= sparse:oid=" "" "${cur##--filter=}"
1795 return
1796 ;;
1797 --*)
1798 __gitcomp_builtin fetch
1799 return
1800 ;;
1801 esac
1802 __git_complete_remote_or_refspec
1803 }
1804
1805 __git_format_patch_extra_options="
1806 --full-index --not --all --no-prefix --src-prefix=
1807 --dst-prefix= --notes
1808 "
1809
1810 _git_format_patch ()
1811 {
1812 case "$cur" in
1813 --thread=*)
1814 __gitcomp "
1815 deep shallow
1816 " "" "${cur##--thread=}"
1817 return
1818 ;;
1819 --base=*|--interdiff=*|--range-diff=*)
1820 __git_complete_refs --cur="${cur#--*=}"
1821 return
1822 ;;
1823 --*)
1824 __gitcomp_builtin format-patch "$__git_format_patch_extra_options"
1825 return
1826 ;;
1827 esac
1828 __git_complete_revlist
1829 }
1830
1831 _git_fsck ()
1832 {
1833 case "$cur" in
1834 --*)
1835 __gitcomp_builtin fsck
1836 return
1837 ;;
1838 esac
1839 }
1840
1841 _git_gitk ()
1842 {
1843 __gitk_main
1844 }
1845
1846 # Lists matching symbol names from a tag (as in ctags) file.
1847 # 1: List symbol names matching this word.
1848 # 2: The tag file to list symbol names from.
1849 # 3: A prefix to be added to each listed symbol name (optional).
1850 # 4: A suffix to be appended to each listed symbol name (optional).
1851 __git_match_ctag () {
1852 awk -v pfx="${3-}" -v sfx="${4-}" "
1853 /^${1//\//\\/}/ { print pfx \$1 sfx }
1854 " "$2"
1855 }
1856
1857 # Complete symbol names from a tag file.
1858 # Usage: __git_complete_symbol [<option>]...
1859 # --tags=<file>: The tag file to list symbol names from instead of the
1860 # default "tags".
1861 # --pfx=<prefix>: A prefix to be added to each symbol name.
1862 # --cur=<word>: The current symbol name to be completed. Defaults to
1863 # the current word to be completed.
1864 # --sfx=<suffix>: A suffix to be appended to each symbol name instead
1865 # of the default space.
1866 __git_complete_symbol () {
1867 local tags=tags pfx="" cur_="${cur-}" sfx=" "
1868
1869 while test $# != 0; do
1870 case "$1" in
1871 --tags=*) tags="${1##--tags=}" ;;
1872 --pfx=*) pfx="${1##--pfx=}" ;;
1873 --cur=*) cur_="${1##--cur=}" ;;
1874 --sfx=*) sfx="${1##--sfx=}" ;;
1875 *) return 1 ;;
1876 esac
1877 shift
1878 done
1879
1880 if test -r "$tags"; then
1881 __gitcomp_direct "$(__git_match_ctag "$cur_" "$tags" "$pfx" "$sfx")"
1882 fi
1883 }
1884
1885 _git_grep ()
1886 {
1887 __git_has_doubledash && return
1888
1889 case "$cur" in
1890 --*)
1891 __gitcomp_builtin grep
1892 return
1893 ;;
1894 esac
1895
1896 case "$cword,$prev" in
1897 2,*|*,-*)
1898 __git_complete_symbol && return
1899 ;;
1900 esac
1901
1902 __git_complete_refs
1903 }
1904
1905 _git_help ()
1906 {
1907 case "$cur" in
1908 --*)
1909 __gitcomp_builtin help
1910 return
1911 ;;
1912 esac
1913 if test -n "$GIT_TESTING_ALL_COMMAND_LIST"
1914 then
1915 __gitcomp "$GIT_TESTING_ALL_COMMAND_LIST $(__git --list-cmds=alias,list-guide) gitk"
1916 else
1917 __gitcomp "$(__git --list-cmds=main,nohelpers,alias,list-guide) gitk"
1918 fi
1919 }
1920
1921 _git_init ()
1922 {
1923 case "$cur" in
1924 --shared=*)
1925 __gitcomp "
1926 false true umask group all world everybody
1927 " "" "${cur##--shared=}"
1928 return
1929 ;;
1930 --*)
1931 __gitcomp_builtin init
1932 return
1933 ;;
1934 esac
1935 }
1936
1937 _git_ls_files ()
1938 {
1939 case "$cur" in
1940 --*)
1941 __gitcomp_builtin ls-files
1942 return
1943 ;;
1944 esac
1945
1946 # XXX ignore options like --modified and always suggest all cached
1947 # files.
1948 __git_complete_index_file "--cached"
1949 }
1950
1951 _git_ls_remote ()
1952 {
1953 case "$cur" in
1954 --*)
1955 __gitcomp_builtin ls-remote
1956 return
1957 ;;
1958 esac
1959 __gitcomp_nl "$(__git_remotes)"
1960 }
1961
1962 _git_ls_tree ()
1963 {
1964 case "$cur" in
1965 --*)
1966 __gitcomp_builtin ls-tree
1967 return
1968 ;;
1969 esac
1970
1971 __git_complete_file
1972 }
1973
1974 # Options that go well for log, shortlog and gitk
1975 __git_log_common_options="
1976 --not --all
1977 --branches --tags --remotes
1978 --first-parent --merges --no-merges
1979 --max-count=
1980 --max-age= --since= --after=
1981 --min-age= --until= --before=
1982 --min-parents= --max-parents=
1983 --no-min-parents --no-max-parents
1984 "
1985 # Options that go well for log and gitk (not shortlog)
1986 __git_log_gitk_options="
1987 --dense --sparse --full-history
1988 --simplify-merges --simplify-by-decoration
1989 --left-right --notes --no-notes
1990 "
1991 # Options that go well for log and shortlog (not gitk)
1992 __git_log_shortlog_options="
1993 --author= --committer= --grep=
1994 --all-match --invert-grep
1995 "
1996
1997 __git_log_pretty_formats="oneline short medium full fuller reference email raw format: tformat: mboxrd"
1998 __git_log_date_formats="relative iso8601 iso8601-strict rfc2822 short local default raw unix format:"
1999
2000 _git_log ()
2001 {
2002 __git_has_doubledash && return
2003 __git_find_repo_path
2004
2005 local merge=""
2006 if [ -f "$__git_repo_path/MERGE_HEAD" ]; then
2007 merge="--merge"
2008 fi
2009 case "$prev,$cur" in
2010 -L,:*:*)
2011 return # fall back to Bash filename completion
2012 ;;
2013 -L,:*)
2014 __git_complete_symbol --cur="${cur#:}" --sfx=":"
2015 return
2016 ;;
2017 -G,*|-S,*)
2018 __git_complete_symbol
2019 return
2020 ;;
2021 esac
2022 case "$cur" in
2023 --pretty=*|--format=*)
2024 __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
2025 " "" "${cur#*=}"
2026 return
2027 ;;
2028 --date=*)
2029 __gitcomp "$__git_log_date_formats" "" "${cur##--date=}"
2030 return
2031 ;;
2032 --decorate=*)
2033 __gitcomp "full short no" "" "${cur##--decorate=}"
2034 return
2035 ;;
2036 --diff-algorithm=*)
2037 __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}"
2038 return
2039 ;;
2040 --submodule=*)
2041 __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}"
2042 return
2043 ;;
2044 --no-walk=*)
2045 __gitcomp "sorted unsorted" "" "${cur##--no-walk=}"
2046 return
2047 ;;
2048 --*)
2049 __gitcomp "
2050 $__git_log_common_options
2051 $__git_log_shortlog_options
2052 $__git_log_gitk_options
2053 --root --topo-order --date-order --reverse
2054 --follow --full-diff
2055 --abbrev-commit --no-abbrev-commit --abbrev=
2056 --relative-date --date=
2057 --pretty= --format= --oneline
2058 --show-signature
2059 --cherry-mark
2060 --cherry-pick
2061 --graph
2062 --decorate --decorate= --no-decorate
2063 --walk-reflogs
2064 --no-walk --no-walk= --do-walk
2065 --parents --children
2066 --expand-tabs --expand-tabs= --no-expand-tabs
2067 $merge
2068 $__git_diff_common_options
2069 --pickaxe-all --pickaxe-regex
2070 "
2071 return
2072 ;;
2073 -L:*:*)
2074 return # fall back to Bash filename completion
2075 ;;
2076 -L:*)
2077 __git_complete_symbol --cur="${cur#-L:}" --sfx=":"
2078 return
2079 ;;
2080 -G*)
2081 __git_complete_symbol --pfx="-G" --cur="${cur#-G}"
2082 return
2083 ;;
2084 -S*)
2085 __git_complete_symbol --pfx="-S" --cur="${cur#-S}"
2086 return
2087 ;;
2088 esac
2089 __git_complete_revlist
2090 }
2091
2092 _git_merge ()
2093 {
2094 __git_complete_strategy && return
2095
2096 case "$cur" in
2097 --*)
2098 __gitcomp_builtin merge
2099 return
2100 esac
2101 __git_complete_refs
2102 }
2103
2104 _git_mergetool ()
2105 {
2106 case "$cur" in
2107 --tool=*)
2108 __gitcomp "$__git_mergetools_common tortoisemerge" "" "${cur##--tool=}"
2109 return
2110 ;;
2111 --*)
2112 __gitcomp "--tool= --prompt --no-prompt --gui --no-gui"
2113 return
2114 ;;
2115 esac
2116 }
2117
2118 _git_merge_base ()
2119 {
2120 case "$cur" in
2121 --*)
2122 __gitcomp_builtin merge-base
2123 return
2124 ;;
2125 esac
2126 __git_complete_refs
2127 }
2128
2129 _git_mv ()
2130 {
2131 case "$cur" in
2132 --*)
2133 __gitcomp_builtin mv
2134 return
2135 ;;
2136 esac
2137
2138 if [ $(__git_count_arguments "mv") -gt 0 ]; then
2139 # We need to show both cached and untracked files (including
2140 # empty directories) since this may not be the last argument.
2141 __git_complete_index_file "--cached --others --directory"
2142 else
2143 __git_complete_index_file "--cached"
2144 fi
2145 }
2146
2147 _git_notes ()
2148 {
2149 local subcommands='add append copy edit get-ref list merge prune remove show'
2150 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2151
2152 case "$subcommand,$cur" in
2153 ,--*)
2154 __gitcomp_builtin notes
2155 ;;
2156 ,*)
2157 case "$prev" in
2158 --ref)
2159 __git_complete_refs
2160 ;;
2161 *)
2162 __gitcomp "$subcommands --ref"
2163 ;;
2164 esac
2165 ;;
2166 *,--reuse-message=*|*,--reedit-message=*)
2167 __git_complete_refs --cur="${cur#*=}"
2168 ;;
2169 *,--*)
2170 __gitcomp_builtin notes_$subcommand
2171 ;;
2172 prune,*|get-ref,*)
2173 # this command does not take a ref, do not complete it
2174 ;;
2175 *)
2176 case "$prev" in
2177 -m|-F)
2178 ;;
2179 *)
2180 __git_complete_refs
2181 ;;
2182 esac
2183 ;;
2184 esac
2185 }
2186
2187 _git_pull ()
2188 {
2189 __git_complete_strategy && return
2190
2191 case "$cur" in
2192 --recurse-submodules=*)
2193 __gitcomp "$__git_fetch_recurse_submodules" "" "${cur##--recurse-submodules=}"
2194 return
2195 ;;
2196 --*)
2197 __gitcomp_builtin pull
2198
2199 return
2200 ;;
2201 esac
2202 __git_complete_remote_or_refspec
2203 }
2204
2205 __git_push_recurse_submodules="check on-demand only"
2206
2207 __git_complete_force_with_lease ()
2208 {
2209 local cur_=$1
2210
2211 case "$cur_" in
2212 --*=)
2213 ;;
2214 *:*)
2215 __git_complete_refs --cur="${cur_#*:}"
2216 ;;
2217 *)
2218 __git_complete_refs --cur="$cur_"
2219 ;;
2220 esac
2221 }
2222
2223 _git_push ()
2224 {
2225 case "$prev" in
2226 --repo)
2227 __gitcomp_nl "$(__git_remotes)"
2228 return
2229 ;;
2230 --recurse-submodules)
2231 __gitcomp "$__git_push_recurse_submodules"
2232 return
2233 ;;
2234 esac
2235 case "$cur" in
2236 --repo=*)
2237 __gitcomp_nl "$(__git_remotes)" "" "${cur##--repo=}"
2238 return
2239 ;;
2240 --recurse-submodules=*)
2241 __gitcomp "$__git_push_recurse_submodules" "" "${cur##--recurse-submodules=}"
2242 return
2243 ;;
2244 --force-with-lease=*)
2245 __git_complete_force_with_lease "${cur##--force-with-lease=}"
2246 return
2247 ;;
2248 --*)
2249 __gitcomp_builtin push
2250 return
2251 ;;
2252 esac
2253 __git_complete_remote_or_refspec
2254 }
2255
2256 _git_range_diff ()
2257 {
2258 case "$cur" in
2259 --*)
2260 __gitcomp "
2261 --creation-factor= --no-dual-color
2262 $__git_diff_common_options
2263 "
2264 return
2265 ;;
2266 esac
2267 __git_complete_revlist
2268 }
2269
2270 __git_rebase_inprogress_options="--continue --skip --abort --quit --show-current-patch"
2271 __git_rebase_interactive_inprogress_options="$__git_rebase_inprogress_options --edit-todo"
2272
2273 _git_rebase ()
2274 {
2275 __git_find_repo_path
2276 if [ -f "$__git_repo_path"/rebase-merge/interactive ]; then
2277 __gitcomp "$__git_rebase_interactive_inprogress_options"
2278 return
2279 elif [ -d "$__git_repo_path"/rebase-apply ] || \
2280 [ -d "$__git_repo_path"/rebase-merge ]; then
2281 __gitcomp "$__git_rebase_inprogress_options"
2282 return
2283 fi
2284 __git_complete_strategy && return
2285 case "$cur" in
2286 --whitespace=*)
2287 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
2288 return
2289 ;;
2290 --onto=*)
2291 __git_complete_refs --cur="${cur##--onto=}"
2292 return
2293 ;;
2294 --*)
2295 __gitcomp_builtin rebase "" \
2296 "$__git_rebase_interactive_inprogress_options"
2297
2298 return
2299 esac
2300 __git_complete_refs
2301 }
2302
2303 _git_reflog ()
2304 {
2305 local subcommands="show delete expire"
2306 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2307
2308 if [ -z "$subcommand" ]; then
2309 __gitcomp "$subcommands"
2310 else
2311 __git_complete_refs
2312 fi
2313 }
2314
2315 __git_send_email_confirm_options="always never auto cc compose"
2316 __git_send_email_suppresscc_options="author self cc bodycc sob cccmd body all"
2317
2318 _git_send_email ()
2319 {
2320 case "$prev" in
2321 --to|--cc|--bcc|--from)
2322 __gitcomp "$(__git send-email --dump-aliases)"
2323 return
2324 ;;
2325 esac
2326
2327 case "$cur" in
2328 --confirm=*)
2329 __gitcomp "
2330 $__git_send_email_confirm_options
2331 " "" "${cur##--confirm=}"
2332 return
2333 ;;
2334 --suppress-cc=*)
2335 __gitcomp "
2336 $__git_send_email_suppresscc_options
2337 " "" "${cur##--suppress-cc=}"
2338
2339 return
2340 ;;
2341 --smtp-encryption=*)
2342 __gitcomp "ssl tls" "" "${cur##--smtp-encryption=}"
2343 return
2344 ;;
2345 --thread=*)
2346 __gitcomp "
2347 deep shallow
2348 " "" "${cur##--thread=}"
2349 return
2350 ;;
2351 --to=*|--cc=*|--bcc=*|--from=*)
2352 __gitcomp "$(__git send-email --dump-aliases)" "" "${cur#--*=}"
2353 return
2354 ;;
2355 --*)
2356 __gitcomp_builtin send-email "--annotate --bcc --cc --cc-cmd --chain-reply-to
2357 --compose --confirm= --dry-run --envelope-sender
2358 --from --identity
2359 --in-reply-to --no-chain-reply-to --no-signed-off-by-cc
2360 --no-suppress-from --no-thread --quiet --reply-to
2361 --signed-off-by-cc --smtp-pass --smtp-server
2362 --smtp-server-port --smtp-encryption= --smtp-user
2363 --subject --suppress-cc= --suppress-from --thread --to
2364 --validate --no-validate
2365 $__git_format_patch_extra_options"
2366 return
2367 ;;
2368 esac
2369 __git_complete_revlist
2370 }
2371
2372 _git_stage ()
2373 {
2374 _git_add
2375 }
2376
2377 _git_status ()
2378 {
2379 local complete_opt
2380 local untracked_state
2381
2382 case "$cur" in
2383 --ignore-submodules=*)
2384 __gitcomp "none untracked dirty all" "" "${cur##--ignore-submodules=}"
2385 return
2386 ;;
2387 --untracked-files=*)
2388 __gitcomp "$__git_untracked_file_modes" "" "${cur##--untracked-files=}"
2389 return
2390 ;;
2391 --column=*)
2392 __gitcomp "
2393 always never auto column row plain dense nodense
2394 " "" "${cur##--column=}"
2395 return
2396 ;;
2397 --*)
2398 __gitcomp_builtin status
2399 return
2400 ;;
2401 esac
2402
2403 untracked_state="$(__git_get_option_value "-u" "--untracked-files=" \
2404 "$__git_untracked_file_modes" "status.showUntrackedFiles")"
2405
2406 case "$untracked_state" in
2407 no)
2408 # --ignored option does not matter
2409 complete_opt=
2410 ;;
2411 all|normal|*)
2412 complete_opt="--cached --directory --no-empty-directory --others"
2413
2414 if [ -n "$(__git_find_on_cmdline "--ignored")" ]; then
2415 complete_opt="$complete_opt --ignored --exclude=*"
2416 fi
2417 ;;
2418 esac
2419
2420 __git_complete_index_file "$complete_opt"
2421 }
2422
2423 _git_switch ()
2424 {
2425 local dwim_opt="$(__git_checkout_default_dwim_mode)"
2426
2427 case "$prev" in
2428 -c|-C|--orphan)
2429 # Complete local branches (and DWIM branch
2430 # remote branch names) for an option argument
2431 # specifying a new branch name. This is for
2432 # convenience, assuming new branches are
2433 # possibly based on pre-existing branch names.
2434 __git_complete_refs $dwim_opt --mode="heads"
2435 return
2436 ;;
2437 *)
2438 ;;
2439 esac
2440
2441 case "$cur" in
2442 --conflict=*)
2443 __gitcomp "diff3 merge" "" "${cur##--conflict=}"
2444 ;;
2445 --*)
2446 __gitcomp_builtin switch
2447 ;;
2448 *)
2449 # Unlike in git checkout, git switch --orphan does not take
2450 # a start point. Thus we really have nothing to complete after
2451 # the branch name.
2452 if [ -n "$(__git_find_on_cmdline "--orphan")" ]; then
2453 return
2454 fi
2455
2456 # At this point, we've already handled special completion for
2457 # -c/-C, and --orphan. There are 3 main things left to
2458 # complete:
2459 # 1) a start-point for -c/-C or -d/--detach
2460 # 2) a remote head, for --track
2461 # 3) a branch name, possibly including DWIM remote branches
2462
2463 if [ -n "$(__git_find_on_cmdline "-c -C -d --detach")" ]; then
2464 __git_complete_refs --mode="refs"
2465 elif [ -n "$(__git_find_on_cmdline "--track")" ]; then
2466 __git_complete_refs --mode="remote-heads"
2467 else
2468 __git_complete_refs $dwim_opt --mode="heads"
2469 fi
2470 ;;
2471 esac
2472 }
2473
2474 __git_config_get_set_variables ()
2475 {
2476 local prevword word config_file= c=$cword
2477 while [ $c -gt 1 ]; do
2478 word="${words[c]}"
2479 case "$word" in
2480 --system|--global|--local|--file=*)
2481 config_file="$word"
2482 break
2483 ;;
2484 -f|--file)
2485 config_file="$word $prevword"
2486 break
2487 ;;
2488 esac
2489 prevword=$word
2490 c=$((--c))
2491 done
2492
2493 __git config $config_file --name-only --list
2494 }
2495
2496 __git_config_vars=
2497 __git_compute_config_vars ()
2498 {
2499 test -n "$__git_config_vars" ||
2500 __git_config_vars="$(git help --config-for-completion | sort -u)"
2501 }
2502
2503 # Completes possible values of various configuration variables.
2504 #
2505 # Usage: __git_complete_config_variable_value [<option>]...
2506 # --varname=<word>: The name of the configuration variable whose value is
2507 # to be completed. Defaults to the previous word on the
2508 # command line.
2509 # --cur=<word>: The current value to be completed. Defaults to the current
2510 # word to be completed.
2511 __git_complete_config_variable_value ()
2512 {
2513 local varname="$prev" cur_="$cur"
2514
2515 while test $# != 0; do
2516 case "$1" in
2517 --varname=*) varname="${1##--varname=}" ;;
2518 --cur=*) cur_="${1##--cur=}" ;;
2519 *) return 1 ;;
2520 esac
2521 shift
2522 done
2523
2524 if [ "${BASH_VERSINFO[0]:-0}" -ge 4 ]; then
2525 varname="${varname,,}"
2526 else
2527 varname="$(echo "$varname" |tr A-Z a-z)"
2528 fi
2529
2530 case "$varname" in
2531 branch.*.remote|branch.*.pushremote)
2532 __gitcomp_nl "$(__git_remotes)" "" "$cur_"
2533 return
2534 ;;
2535 branch.*.merge)
2536 __git_complete_refs --cur="$cur_"
2537 return
2538 ;;
2539 branch.*.rebase)
2540 __gitcomp "false true merges preserve interactive" "" "$cur_"
2541 return
2542 ;;
2543 remote.pushdefault)
2544 __gitcomp_nl "$(__git_remotes)" "" "$cur_"
2545 return
2546 ;;
2547 remote.*.fetch)
2548 local remote="${varname#remote.}"
2549 remote="${remote%.fetch}"
2550 if [ -z "$cur_" ]; then
2551 __gitcomp_nl "refs/heads/" "" "" ""
2552 return
2553 fi
2554 __gitcomp_nl "$(__git_refs_remotes "$remote")" "" "$cur_"
2555 return
2556 ;;
2557 remote.*.push)
2558 local remote="${varname#remote.}"
2559 remote="${remote%.push}"
2560 __gitcomp_nl "$(__git for-each-ref \
2561 --format='%(refname):%(refname)' refs/heads)" "" "$cur_"
2562 return
2563 ;;
2564 pull.twohead|pull.octopus)
2565 __git_compute_merge_strategies
2566 __gitcomp "$__git_merge_strategies" "" "$cur_"
2567 return
2568 ;;
2569 color.pager)
2570 __gitcomp "false true" "" "$cur_"
2571 return
2572 ;;
2573 color.*.*)
2574 __gitcomp "
2575 normal black red green yellow blue magenta cyan white
2576 bold dim ul blink reverse
2577 " "" "$cur_"
2578 return
2579 ;;
2580 color.*)
2581 __gitcomp "false true always never auto" "" "$cur_"
2582 return
2583 ;;
2584 diff.submodule)
2585 __gitcomp "$__git_diff_submodule_formats" "" "$cur_"
2586 return
2587 ;;
2588 help.format)
2589 __gitcomp "man info web html" "" "$cur_"
2590 return
2591 ;;
2592 log.date)
2593 __gitcomp "$__git_log_date_formats" "" "$cur_"
2594 return
2595 ;;
2596 sendemail.aliasfiletype)
2597 __gitcomp "mutt mailrc pine elm gnus" "" "$cur_"
2598 return
2599 ;;
2600 sendemail.confirm)
2601 __gitcomp "$__git_send_email_confirm_options" "" "$cur_"
2602 return
2603 ;;
2604 sendemail.suppresscc)
2605 __gitcomp "$__git_send_email_suppresscc_options" "" "$cur_"
2606 return
2607 ;;
2608 sendemail.transferencoding)
2609 __gitcomp "7bit 8bit quoted-printable base64" "" "$cur_"
2610 return
2611 ;;
2612 *.*)
2613 return
2614 ;;
2615 esac
2616 }
2617
2618 # Completes configuration sections, subsections, variable names.
2619 #
2620 # Usage: __git_complete_config_variable_name [<option>]...
2621 # --cur=<word>: The current configuration section/variable name to be
2622 # completed. Defaults to the current word to be completed.
2623 # --sfx=<suffix>: A suffix to be appended to each fully completed
2624 # configuration variable name (but not to sections or
2625 # subsections) instead of the default space.
2626 __git_complete_config_variable_name ()
2627 {
2628 local cur_="$cur" sfx
2629
2630 while test $# != 0; do
2631 case "$1" in
2632 --cur=*) cur_="${1##--cur=}" ;;
2633 --sfx=*) sfx="${1##--sfx=}" ;;
2634 *) return 1 ;;
2635 esac
2636 shift
2637 done
2638
2639 case "$cur_" in
2640 branch.*.*)
2641 local pfx="${cur_%.*}."
2642 cur_="${cur_##*.}"
2643 __gitcomp "remote pushRemote merge mergeOptions rebase" "$pfx" "$cur_" "$sfx"
2644 return
2645 ;;
2646 branch.*)
2647 local pfx="${cur%.*}."
2648 cur_="${cur#*.}"
2649 __gitcomp_direct "$(__git_heads "$pfx" "$cur_" ".")"
2650 __gitcomp_nl_append $'autoSetupMerge\nautoSetupRebase\n' "$pfx" "$cur_" "$sfx"
2651 return
2652 ;;
2653 guitool.*.*)
2654 local pfx="${cur_%.*}."
2655 cur_="${cur_##*.}"
2656 __gitcomp "
2657 argPrompt cmd confirm needsFile noConsole noRescan
2658 prompt revPrompt revUnmerged title
2659 " "$pfx" "$cur_" "$sfx"
2660 return
2661 ;;
2662 difftool.*.*)
2663 local pfx="${cur_%.*}."
2664 cur_="${cur_##*.}"
2665 __gitcomp "cmd path" "$pfx" "$cur_" "$sfx"
2666 return
2667 ;;
2668 man.*.*)
2669 local pfx="${cur_%.*}."
2670 cur_="${cur_##*.}"
2671 __gitcomp "cmd path" "$pfx" "$cur_" "$sfx"
2672 return
2673 ;;
2674 mergetool.*.*)
2675 local pfx="${cur_%.*}."
2676 cur_="${cur_##*.}"
2677 __gitcomp "cmd path trustExitCode" "$pfx" "$cur_" "$sfx"
2678 return
2679 ;;
2680 pager.*)
2681 local pfx="${cur_%.*}."
2682 cur_="${cur_#*.}"
2683 __git_compute_all_commands
2684 __gitcomp_nl "$__git_all_commands" "$pfx" "$cur_" "$sfx"
2685 return
2686 ;;
2687 remote.*.*)
2688 local pfx="${cur_%.*}."
2689 cur_="${cur_##*.}"
2690 __gitcomp "
2691 url proxy fetch push mirror skipDefaultUpdate
2692 receivepack uploadpack tagOpt pushurl
2693 " "$pfx" "$cur_" "$sfx"
2694 return
2695 ;;
2696 remote.*)
2697 local pfx="${cur_%.*}."
2698 cur_="${cur_#*.}"
2699 __gitcomp_nl "$(__git_remotes)" "$pfx" "$cur_" "."
2700 __gitcomp_nl_append "pushDefault" "$pfx" "$cur_" "$sfx"
2701 return
2702 ;;
2703 url.*.*)
2704 local pfx="${cur_%.*}."
2705 cur_="${cur_##*.}"
2706 __gitcomp "insteadOf pushInsteadOf" "$pfx" "$cur_" "$sfx"
2707 return
2708 ;;
2709 *.*)
2710 __git_compute_config_vars
2711 __gitcomp "$__git_config_vars" "" "$cur_" "$sfx"
2712 ;;
2713 *)
2714 __git_compute_config_vars
2715 __gitcomp "$(echo "$__git_config_vars" |
2716 awk -F . '{
2717 sections[$1] = 1
2718 }
2719 END {
2720 for (s in sections)
2721 print s "."
2722 }
2723 ')" "" "$cur_"
2724 ;;
2725 esac
2726 }
2727
2728 # Completes '='-separated configuration sections/variable names and values
2729 # for 'git -c section.name=value'.
2730 #
2731 # Usage: __git_complete_config_variable_name_and_value [<option>]...
2732 # --cur=<word>: The current configuration section/variable name/value to be
2733 # completed. Defaults to the current word to be completed.
2734 __git_complete_config_variable_name_and_value ()
2735 {
2736 local cur_="$cur"
2737
2738 while test $# != 0; do
2739 case "$1" in
2740 --cur=*) cur_="${1##--cur=}" ;;
2741 *) return 1 ;;
2742 esac
2743 shift
2744 done
2745
2746 case "$cur_" in
2747 *=*)
2748 __git_complete_config_variable_value \
2749 --varname="${cur_%%=*}" --cur="${cur_#*=}"
2750 ;;
2751 *)
2752 __git_complete_config_variable_name --cur="$cur_" --sfx='='
2753 ;;
2754 esac
2755 }
2756
2757 _git_config ()
2758 {
2759 case "$prev" in
2760 --get|--get-all|--unset|--unset-all)
2761 __gitcomp_nl "$(__git_config_get_set_variables)"
2762 return
2763 ;;
2764 *.*)
2765 __git_complete_config_variable_value
2766 return
2767 ;;
2768 esac
2769 case "$cur" in
2770 --*)
2771 __gitcomp_builtin config
2772 ;;
2773 *)
2774 __git_complete_config_variable_name
2775 ;;
2776 esac
2777 }
2778
2779 _git_remote ()
2780 {
2781 local subcommands="
2782 add rename remove set-head set-branches
2783 get-url set-url show prune update
2784 "
2785 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2786 if [ -z "$subcommand" ]; then
2787 case "$cur" in
2788 --*)
2789 __gitcomp_builtin remote
2790 ;;
2791 *)
2792 __gitcomp "$subcommands"
2793 ;;
2794 esac
2795 return
2796 fi
2797
2798 case "$subcommand,$cur" in
2799 add,--*)
2800 __gitcomp_builtin remote_add
2801 ;;
2802 add,*)
2803 ;;
2804 set-head,--*)
2805 __gitcomp_builtin remote_set-head
2806 ;;
2807 set-branches,--*)
2808 __gitcomp_builtin remote_set-branches
2809 ;;
2810 set-head,*|set-branches,*)
2811 __git_complete_remote_or_refspec
2812 ;;
2813 update,--*)
2814 __gitcomp_builtin remote_update
2815 ;;
2816 update,*)
2817 __gitcomp "$(__git_remotes) $(__git_get_config_variables "remotes")"
2818 ;;
2819 set-url,--*)
2820 __gitcomp_builtin remote_set-url
2821 ;;
2822 get-url,--*)
2823 __gitcomp_builtin remote_get-url
2824 ;;
2825 prune,--*)
2826 __gitcomp_builtin remote_prune
2827 ;;
2828 *)
2829 __gitcomp_nl "$(__git_remotes)"
2830 ;;
2831 esac
2832 }
2833
2834 _git_replace ()
2835 {
2836 case "$cur" in
2837 --format=*)
2838 __gitcomp "short medium long" "" "${cur##--format=}"
2839 return
2840 ;;
2841 --*)
2842 __gitcomp_builtin replace
2843 return
2844 ;;
2845 esac
2846 __git_complete_refs
2847 }
2848
2849 _git_rerere ()
2850 {
2851 local subcommands="clear forget diff remaining status gc"
2852 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2853 if test -z "$subcommand"
2854 then
2855 __gitcomp "$subcommands"
2856 return
2857 fi
2858 }
2859
2860 _git_reset ()
2861 {
2862 __git_has_doubledash && return
2863
2864 case "$cur" in
2865 --*)
2866 __gitcomp_builtin reset
2867 return
2868 ;;
2869 esac
2870 __git_complete_refs
2871 }
2872
2873 _git_restore ()
2874 {
2875 case "$prev" in
2876 -s)
2877 __git_complete_refs
2878 return
2879 ;;
2880 esac
2881
2882 case "$cur" in
2883 --conflict=*)
2884 __gitcomp "diff3 merge" "" "${cur##--conflict=}"
2885 ;;
2886 --source=*)
2887 __git_complete_refs --cur="${cur##--source=}"
2888 ;;
2889 --*)
2890 __gitcomp_builtin restore
2891 ;;
2892 esac
2893 }
2894
2895 __git_revert_inprogress_options=$__git_sequencer_inprogress_options
2896
2897 _git_revert ()
2898 {
2899 __git_find_repo_path
2900 if [ -f "$__git_repo_path"/REVERT_HEAD ]; then
2901 __gitcomp "$__git_revert_inprogress_options"
2902 return
2903 fi
2904 __git_complete_strategy && return
2905 case "$cur" in
2906 --*)
2907 __gitcomp_builtin revert "" \
2908 "$__git_revert_inprogress_options"
2909 return
2910 ;;
2911 esac
2912 __git_complete_refs
2913 }
2914
2915 _git_rm ()
2916 {
2917 case "$cur" in
2918 --*)
2919 __gitcomp_builtin rm
2920 return
2921 ;;
2922 esac
2923
2924 __git_complete_index_file "--cached"
2925 }
2926
2927 _git_shortlog ()
2928 {
2929 __git_has_doubledash && return
2930
2931 case "$cur" in
2932 --*)
2933 __gitcomp "
2934 $__git_log_common_options
2935 $__git_log_shortlog_options
2936 --numbered --summary --email
2937 "
2938 return
2939 ;;
2940 esac
2941 __git_complete_revlist
2942 }
2943
2944 _git_show ()
2945 {
2946 __git_has_doubledash && return
2947
2948 case "$cur" in
2949 --pretty=*|--format=*)
2950 __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
2951 " "" "${cur#*=}"
2952 return
2953 ;;
2954 --diff-algorithm=*)
2955 __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}"
2956 return
2957 ;;
2958 --submodule=*)
2959 __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}"
2960 return
2961 ;;
2962 --color-moved=*)
2963 __gitcomp "$__git_color_moved_opts" "" "${cur##--color-moved=}"
2964 return
2965 ;;
2966 --color-moved-ws=*)
2967 __gitcomp "$__git_color_moved_ws_opts" "" "${cur##--color-moved-ws=}"
2968 return
2969 ;;
2970 --*)
2971 __gitcomp "--pretty= --format= --abbrev-commit --no-abbrev-commit
2972 --oneline --show-signature
2973 --expand-tabs --expand-tabs= --no-expand-tabs
2974 $__git_diff_common_options
2975 "
2976 return
2977 ;;
2978 esac
2979 __git_complete_revlist_file
2980 }
2981
2982 _git_show_branch ()
2983 {
2984 case "$cur" in
2985 --*)
2986 __gitcomp_builtin show-branch
2987 return
2988 ;;
2989 esac
2990 __git_complete_revlist
2991 }
2992
2993 _git_sparse_checkout ()
2994 {
2995 local subcommands="list init set disable"
2996 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2997 if [ -z "$subcommand" ]; then
2998 __gitcomp "$subcommands"
2999 return
3000 fi
3001
3002 case "$subcommand,$cur" in
3003 init,--*)
3004 __gitcomp "--cone"
3005 ;;
3006 set,--*)
3007 __gitcomp "--stdin"
3008 ;;
3009 *)
3010 ;;
3011 esac
3012 }
3013
3014 _git_stash ()
3015 {
3016 local save_opts='--all --keep-index --no-keep-index --quiet --patch --include-untracked'
3017 local subcommands='push list show apply clear drop pop create branch'
3018 local subcommand="$(__git_find_on_cmdline "$subcommands save")"
3019 if [ -z "$subcommand" -a -n "$(__git_find_on_cmdline "-p")" ]; then
3020 subcommand="push"
3021 fi
3022 if [ -z "$subcommand" ]; then
3023 case "$cur" in
3024 --*)
3025 __gitcomp "$save_opts"
3026 ;;
3027 sa*)
3028 if [ -z "$(__git_find_on_cmdline "$save_opts")" ]; then
3029 __gitcomp "save"
3030 fi
3031 ;;
3032 *)
3033 if [ -z "$(__git_find_on_cmdline "$save_opts")" ]; then
3034 __gitcomp "$subcommands"
3035 fi
3036 ;;
3037 esac
3038 else
3039 case "$subcommand,$cur" in
3040 push,--*)
3041 __gitcomp "$save_opts --message"
3042 ;;
3043 save,--*)
3044 __gitcomp "$save_opts"
3045 ;;
3046 apply,--*|pop,--*)
3047 __gitcomp "--index --quiet"
3048 ;;
3049 drop,--*)
3050 __gitcomp "--quiet"
3051 ;;
3052 list,--*)
3053 __gitcomp "--name-status --oneline --patch-with-stat"
3054 ;;
3055 show,--*)
3056 __gitcomp "$__git_diff_common_options"
3057 ;;
3058 branch,--*)
3059 ;;
3060 branch,*)
3061 if [ $cword -eq 3 ]; then
3062 __git_complete_refs
3063 else
3064 __gitcomp_nl "$(__git stash list \
3065 | sed -n -e 's/:.*//p')"
3066 fi
3067 ;;
3068 show,*|apply,*|drop,*|pop,*)
3069 __gitcomp_nl "$(__git stash list \
3070 | sed -n -e 's/:.*//p')"
3071 ;;
3072 *)
3073 ;;
3074 esac
3075 fi
3076 }
3077
3078 _git_submodule ()
3079 {
3080 __git_has_doubledash && return
3081
3082 local subcommands="add status init deinit update set-branch set-url summary foreach sync absorbgitdirs"
3083 local subcommand="$(__git_find_on_cmdline "$subcommands")"
3084 if [ -z "$subcommand" ]; then
3085 case "$cur" in
3086 --*)
3087 __gitcomp "--quiet"
3088 ;;
3089 *)
3090 __gitcomp "$subcommands"
3091 ;;
3092 esac
3093 return
3094 fi
3095
3096 case "$subcommand,$cur" in
3097 add,--*)
3098 __gitcomp "--branch --force --name --reference --depth"
3099 ;;
3100 status,--*)
3101 __gitcomp "--cached --recursive"
3102 ;;
3103 deinit,--*)
3104 __gitcomp "--force --all"
3105 ;;
3106 update,--*)
3107 __gitcomp "
3108 --init --remote --no-fetch
3109 --recommend-shallow --no-recommend-shallow
3110 --force --rebase --merge --reference --depth --recursive --jobs
3111 "
3112 ;;
3113 set-branch,--*)
3114 __gitcomp "--default --branch"
3115 ;;
3116 summary,--*)
3117 __gitcomp "--cached --files --summary-limit"
3118 ;;
3119 foreach,--*|sync,--*)
3120 __gitcomp "--recursive"
3121 ;;
3122 *)
3123 ;;
3124 esac
3125 }
3126
3127 _git_svn ()
3128 {
3129 local subcommands="
3130 init fetch clone rebase dcommit log find-rev
3131 set-tree commit-diff info create-ignore propget
3132 proplist show-ignore show-externals branch tag blame
3133 migrate mkdirs reset gc
3134 "
3135 local subcommand="$(__git_find_on_cmdline "$subcommands")"
3136 if [ -z "$subcommand" ]; then
3137 __gitcomp "$subcommands"
3138 else
3139 local remote_opts="--username= --config-dir= --no-auth-cache"
3140 local fc_opts="
3141 --follow-parent --authors-file= --repack=
3142 --no-metadata --use-svm-props --use-svnsync-props
3143 --log-window-size= --no-checkout --quiet
3144 --repack-flags --use-log-author --localtime
3145 --add-author-from
3146 --recursive
3147 --ignore-paths= --include-paths= $remote_opts
3148 "
3149 local init_opts="
3150 --template= --shared= --trunk= --tags=
3151 --branches= --stdlayout --minimize-url
3152 --no-metadata --use-svm-props --use-svnsync-props
3153 --rewrite-root= --prefix= $remote_opts
3154 "
3155 local cmt_opts="
3156 --edit --rmdir --find-copies-harder --copy-similarity=
3157 "
3158
3159 case "$subcommand,$cur" in
3160 fetch,--*)
3161 __gitcomp "--revision= --fetch-all $fc_opts"
3162 ;;
3163 clone,--*)
3164 __gitcomp "--revision= $fc_opts $init_opts"
3165 ;;
3166 init,--*)
3167 __gitcomp "$init_opts"
3168 ;;
3169 dcommit,--*)
3170 __gitcomp "
3171 --merge --strategy= --verbose --dry-run
3172 --fetch-all --no-rebase --commit-url
3173 --revision --interactive $cmt_opts $fc_opts
3174 "
3175 ;;
3176 set-tree,--*)
3177 __gitcomp "--stdin $cmt_opts $fc_opts"
3178 ;;
3179 create-ignore,--*|propget,--*|proplist,--*|show-ignore,--*|\
3180 show-externals,--*|mkdirs,--*)
3181 __gitcomp "--revision="
3182 ;;
3183 log,--*)
3184 __gitcomp "
3185 --limit= --revision= --verbose --incremental
3186 --oneline --show-commit --non-recursive
3187 --authors-file= --color
3188 "
3189 ;;
3190 rebase,--*)
3191 __gitcomp "
3192 --merge --verbose --strategy= --local
3193 --fetch-all --dry-run $fc_opts
3194 "
3195 ;;
3196 commit-diff,--*)
3197 __gitcomp "--message= --file= --revision= $cmt_opts"
3198 ;;
3199 info,--*)
3200 __gitcomp "--url"
3201 ;;
3202 branch,--*)
3203 __gitcomp "--dry-run --message --tag"
3204 ;;
3205 tag,--*)
3206 __gitcomp "--dry-run --message"
3207 ;;
3208 blame,--*)
3209 __gitcomp "--git-format"
3210 ;;
3211 migrate,--*)
3212 __gitcomp "
3213 --config-dir= --ignore-paths= --minimize
3214 --no-auth-cache --username=
3215 "
3216 ;;
3217 reset,--*)
3218 __gitcomp "--revision= --parent"
3219 ;;
3220 *)
3221 ;;
3222 esac
3223 fi
3224 }
3225
3226 _git_tag ()
3227 {
3228 local i c=1 f=0
3229 while [ $c -lt $cword ]; do
3230 i="${words[c]}"
3231 case "$i" in
3232 -d|--delete|-v|--verify)
3233 __gitcomp_direct "$(__git_tags "" "$cur" " ")"
3234 return
3235 ;;
3236 -f)
3237 f=1
3238 ;;
3239 esac
3240 ((c++))
3241 done
3242
3243 case "$prev" in
3244 -m|-F)
3245 ;;
3246 -*|tag)
3247 if [ $f = 1 ]; then
3248 __gitcomp_direct "$(__git_tags "" "$cur" " ")"
3249 fi
3250 ;;
3251 *)
3252 __git_complete_refs
3253 ;;
3254 esac
3255
3256 case "$cur" in
3257 --*)
3258 __gitcomp_builtin tag
3259 ;;
3260 esac
3261 }
3262
3263 _git_whatchanged ()
3264 {
3265 _git_log
3266 }
3267
3268 __git_complete_worktree_paths ()
3269 {
3270 local IFS=$'\n'
3271 __gitcomp_nl "$(git worktree list --porcelain |
3272 # Skip the first entry: it's the path of the main worktree,
3273 # which can't be moved, removed, locked, etc.
3274 sed -n -e '2,$ s/^worktree //p')"
3275 }
3276
3277 _git_worktree ()
3278 {
3279 local subcommands="add list lock move prune remove unlock"
3280 local subcommand subcommand_idx
3281
3282 subcommand="$(__git_find_on_cmdline --show-idx "$subcommands")"
3283 subcommand_idx="${subcommand% *}"
3284 subcommand="${subcommand#* }"
3285
3286 case "$subcommand,$cur" in
3287 ,*)
3288 __gitcomp "$subcommands"
3289 ;;
3290 *,--*)
3291 __gitcomp_builtin worktree_$subcommand
3292 ;;
3293 add,*) # usage: git worktree add [<options>] <path> [<commit-ish>]
3294 # Here we are not completing an --option, it's either the
3295 # path or a ref.
3296 case "$prev" in
3297 -b|-B) # Complete refs for branch to be created/reseted.
3298 __git_complete_refs
3299 ;;
3300 -*) # The previous word is an -o|--option without an
3301 # unstuck argument: have to complete the path for
3302 # the new worktree, so don't list anything, but let
3303 # Bash fall back to filename completion.
3304 ;;
3305 *) # The previous word is not an --option, so it must
3306 # be either the 'add' subcommand, the unstuck
3307 # argument of an option (e.g. branch for -b|-B), or
3308 # the path for the new worktree.
3309 if [ $cword -eq $((subcommand_idx+1)) ]; then
3310 # Right after the 'add' subcommand: have to
3311 # complete the path, so fall back to Bash
3312 # filename completion.
3313 :
3314 else
3315 case "${words[cword-2]}" in
3316 -b|-B) # After '-b <branch>': have to
3317 # complete the path, so fall back
3318 # to Bash filename completion.
3319 ;;
3320 *) # After the path: have to complete
3321 # the ref to be checked out.
3322 __git_complete_refs
3323 ;;
3324 esac
3325 fi
3326 ;;
3327 esac
3328 ;;
3329 lock,*|remove,*|unlock,*)
3330 __git_complete_worktree_paths
3331 ;;
3332 move,*)
3333 if [ $cword -eq $((subcommand_idx+1)) ]; then
3334 # The first parameter must be an existing working
3335 # tree to be moved.
3336 __git_complete_worktree_paths
3337 else
3338 # The second parameter is the destination: it could
3339 # be any path, so don't list anything, but let Bash
3340 # fall back to filename completion.
3341 :
3342 fi
3343 ;;
3344 esac
3345 }
3346
3347 __git_complete_common () {
3348 local command="$1"
3349
3350 case "$cur" in
3351 --*)
3352 __gitcomp_builtin "$command"
3353 ;;
3354 esac
3355 }
3356
3357 __git_cmds_with_parseopt_helper=
3358 __git_support_parseopt_helper () {
3359 test -n "$__git_cmds_with_parseopt_helper" ||
3360 __git_cmds_with_parseopt_helper="$(__git --list-cmds=parseopt)"
3361
3362 case " $__git_cmds_with_parseopt_helper " in
3363 *" $1 "*)
3364 return 0
3365 ;;
3366 *)
3367 return 1
3368 ;;
3369 esac
3370 }
3371
3372 __git_have_func () {
3373 declare -f -- "$1" >/dev/null 2>&1
3374 }
3375
3376 __git_complete_command () {
3377 local command="$1"
3378 local completion_func="_git_${command//-/_}"
3379 if ! __git_have_func $completion_func &&
3380 __git_have_func _completion_loader
3381 then
3382 _completion_loader "git-$command"
3383 fi
3384 if __git_have_func $completion_func
3385 then
3386 $completion_func
3387 return 0
3388 elif __git_support_parseopt_helper "$command"
3389 then
3390 __git_complete_common "$command"
3391 return 0
3392 else
3393 return 1
3394 fi
3395 }
3396
3397 __git_main ()
3398 {
3399 local i c=1 command __git_dir __git_repo_path
3400 local __git_C_args C_args_count=0
3401
3402 while [ $c -lt $cword ]; do
3403 i="${words[c]}"
3404 case "$i" in
3405 --git-dir=*) __git_dir="${i#--git-dir=}" ;;
3406 --git-dir) ((c++)) ; __git_dir="${words[c]}" ;;
3407 --bare) __git_dir="." ;;
3408 --help) command="help"; break ;;
3409 -c|--work-tree|--namespace) ((c++)) ;;
3410 -C) __git_C_args[C_args_count++]=-C
3411 ((c++))
3412 __git_C_args[C_args_count++]="${words[c]}"
3413 ;;
3414 -*) ;;
3415 *) command="$i"; break ;;
3416 esac
3417 ((c++))
3418 done
3419
3420 if [ -z "${command-}" ]; then
3421 case "$prev" in
3422 --git-dir|-C|--work-tree)
3423 # these need a path argument, let's fall back to
3424 # Bash filename completion
3425 return
3426 ;;
3427 -c)
3428 __git_complete_config_variable_name_and_value
3429 return
3430 ;;
3431 --namespace)
3432 # we don't support completing these options' arguments
3433 return
3434 ;;
3435 esac
3436 case "$cur" in
3437 --*) __gitcomp "
3438 --paginate
3439 --no-pager
3440 --git-dir=
3441 --bare
3442 --version
3443 --exec-path
3444 --exec-path=
3445 --html-path
3446 --man-path
3447 --info-path
3448 --work-tree=
3449 --namespace=
3450 --no-replace-objects
3451 --help
3452 "
3453 ;;
3454 *)
3455 if test -n "${GIT_TESTING_PORCELAIN_COMMAND_LIST-}"
3456 then
3457 __gitcomp "$GIT_TESTING_PORCELAIN_COMMAND_LIST"
3458 else
3459 __gitcomp "$(__git --list-cmds=list-mainporcelain,others,nohelpers,alias,list-complete,config)"
3460 fi
3461 ;;
3462 esac
3463 return
3464 fi
3465
3466 __git_complete_command "$command" && return
3467
3468 local expansion=$(__git_aliased_command "$command")
3469 if [ -n "$expansion" ]; then
3470 words[1]=$expansion
3471 __git_complete_command "$expansion"
3472 fi
3473 }
3474
3475 __gitk_main ()
3476 {
3477 __git_has_doubledash && return
3478
3479 local __git_repo_path
3480 __git_find_repo_path
3481
3482 local merge=""
3483 if [ -f "$__git_repo_path/MERGE_HEAD" ]; then
3484 merge="--merge"
3485 fi
3486 case "$cur" in
3487 --*)
3488 __gitcomp "
3489 $__git_log_common_options
3490 $__git_log_gitk_options
3491 $merge
3492 "
3493 return
3494 ;;
3495 esac
3496 __git_complete_revlist
3497 }
3498
3499 if [[ -n ${ZSH_VERSION-} && -z ${GIT_SOURCING_ZSH_COMPLETION-} ]]; then
3500 echo "ERROR: this script is obsolete, please see git-completion.zsh" 1>&2
3501 return
3502 fi
3503
3504 __git_func_wrap ()
3505 {
3506 local cur words cword prev
3507 _get_comp_words_by_ref -n =: cur words cword prev
3508 $1
3509 }
3510
3511 ___git_complete ()
3512 {
3513 local wrapper="__git_wrap${2}"
3514 eval "$wrapper () { __git_func_wrap $2 ; }"
3515 complete -o bashdefault -o default -o nospace -F $wrapper $1 2>/dev/null \
3516 || complete -o default -o nospace -F $wrapper $1
3517 }
3518
3519 # Setup the completion for git commands
3520 # 1: command or alias
3521 # 2: function to call (e.g. `git`, `gitk`, `git_fetch`)
3522 __git_complete ()
3523 {
3524 local func
3525
3526 if __git_have_func $2; then
3527 func=$2
3528 elif __git_have_func __$2_main; then
3529 func=__$2_main
3530 elif __git_have_func _$2; then
3531 func=_$2
3532 else
3533 echo "ERROR: could not find function '$2'" 1>&2
3534 return 1
3535 fi
3536 ___git_complete $1 $func
3537 }
3538
3539 ___git_complete git __git_main
3540 ___git_complete gitk __gitk_main
3541
3542 # The following are necessary only for Cygwin, and only are needed
3543 # when the user has tab-completed the executable name and consequently
3544 # included the '.exe' suffix.
3545 #
3546 if [ "$OSTYPE" = cygwin ]; then
3547 ___git_complete git.exe __git_main
3548 fi