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