]> git.ipfire.org Git - thirdparty/git.git/blame - contrib/completion/git-completion.bash
Merge branch 'ob/t9001-indent-fix'
[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 *)
982ff3a6 770 for i in HEAD FETCH_HEAD ORIG_HEAD MERGE_HEAD REBASE_HEAD CHERRY_PICK_HEAD REVERT_HEAD BISECT_HEAD AUTO_MERGE; 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
da260f61
PB
1736__git_ws_error_highlight_opts="context old new all default"
1737
f0b9e153 1738# Options for the diff machinery (diff, log, show, stash, range-diff, ...)
20bf7292 1739__git_diff_common_options="--stat --numstat --shortstat --summary
b3a4f858
JS
1740 --patch-with-stat --name-only --name-status --color
1741 --no-color --color-words --no-renames --check
fd0bc175
KK
1742 --color-moved --color-moved= --no-color-moved
1743 --color-moved-ws= --no-color-moved-ws
f135aacb 1744 --full-index --binary --abbrev --diff-filter=
1eb638a5 1745 --find-copies --find-object --find-renames
ffcccc62 1746 --no-relative --relative
e9282f02 1747 --find-copies-harder --ignore-cr-at-eol
b3a4f858 1748 --text --ignore-space-at-eol --ignore-space-change
c2545167 1749 --ignore-all-space --ignore-blank-lines --exit-code
3b698111 1750 --quiet --ext-diff --no-ext-diff --unified=
aba201c6 1751 --no-prefix --src-prefix= --dst-prefix=
57159d5d 1752 --inter-hunk-context= --function-context
216120ab 1753 --patience --histogram --minimal
e6414b46 1754 --raw --word-diff --word-diff-regex=
8fd2cfa7
SB
1755 --dirstat --dirstat= --dirstat-by-file
1756 --dirstat-by-file= --cumulative
a4d13aaf 1757 --diff-algorithm= --default-prefix
6cc4bc15 1758 --submodule --submodule= --ignore-submodules
d49dffde 1759 --indent-heuristic --no-indent-heuristic
6a38b0a0 1760 --textconv --no-textconv --break-rewrites
de4898d7 1761 --patch --no-patch --cc --combined-all-paths
b454ed2c 1762 --anchored= --compact-summary --ignore-matching-lines=
5727be06 1763 --irreversible-delete --line-prefix --no-stat
b5c3edc1
PB
1764 --output= --output-indicator-context=
1765 --output-indicator-new= --output-indicator-old=
d520d983
PB
1766 --ws-error-highlight=
1767 --pickaxe-all --pickaxe-regex
20bf7292
TR
1768"
1769
f0b9e153 1770# Options for diff/difftool
d520d983 1771__git_diff_difftool_options="--cached --staged
ffcccc62 1772 --base --ours --theirs --no-index --merge-base
08a9a6d6 1773 --ita-invisible-in-index --ita-visible-in-index
308d7a7d
DL
1774 $__git_diff_common_options"
1775
20bf7292
TR
1776_git_diff ()
1777{
1778 __git_has_doubledash && return
1779
20bf7292 1780 case "$cur" in
07924d4d
MP
1781 --diff-algorithm=*)
1782 __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}"
1783 return
1784 ;;
ac76fd54
JK
1785 --submodule=*)
1786 __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}"
1787 return
1788 ;;
fd0bc175
KK
1789 --color-moved=*)
1790 __gitcomp "$__git_color_moved_opts" "" "${cur##--color-moved=}"
1791 return
1792 ;;
1793 --color-moved-ws=*)
1794 __gitcomp "$__git_color_moved_ws_opts" "" "${cur##--color-moved-ws=}"
1795 return
1796 ;;
da260f61
PB
1797 --ws-error-highlight=*)
1798 __gitcomp "$__git_ws_error_highlight_opts" "" "${cur##--ws-error-highlight=}"
1799 return
1800 ;;
20bf7292 1801 --*)
308d7a7d 1802 __gitcomp "$__git_diff_difftool_options"
b3a4f858
JS
1803 return
1804 ;;
1805 esac
1d66ec58 1806 __git_complete_revlist_file
690d8824
JH
1807}
1808
c5f424fd 1809__git_mergetools_common="diffuse diffmerge ecmerge emerge kdiff3 meld opendiff
11868978 1810 tkdiff vimdiff nvimdiff gvimdiff xxdiff araxis p4merge
1811 bc codecompare smerge
e2dc2de9
DA
1812"
1813
1814_git_difftool ()
1815{
f7ad96cf
MH
1816 __git_has_doubledash && return
1817
e2dc2de9
DA
1818 case "$cur" in
1819 --tool=*)
1820 __gitcomp "$__git_mergetools_common kompare" "" "${cur##--tool=}"
1821 return
1822 ;;
1823 --*)
308d7a7d 1824 __gitcomp_builtin difftool "$__git_diff_difftool_options"
e2dc2de9
DA
1825 return
1826 ;;
1827 esac
d8517cc6 1828 __git_complete_revlist_file
e2dc2de9
DA
1829}
1830
4dd5c470
SYS
1831__git_fetch_recurse_submodules="yes on-demand no"
1832
690d8824
JH
1833_git_fetch ()
1834{
0a4e1472 1835 case "$cur" in
4dd5c470
SYS
1836 --recurse-submodules=*)
1837 __gitcomp "$__git_fetch_recurse_submodules" "" "${cur##--recurse-submodules=}"
1838 return
1839 ;;
5a59a230 1840 --filter=*)
e693237e 1841 __gitcomp "blob:none blob:limit= sparse:oid=" "" "${cur##--filter=}"
5a59a230
NTND
1842 return
1843 ;;
0a4e1472 1844 --*)
2b1c01d2 1845 __gitcomp_builtin fetch
0a4e1472
JS
1846 return
1847 ;;
1848 esac
52d5c3b5 1849 __git_complete_remote_or_refspec
690d8824
JH
1850}
1851
13374987
NTND
1852__git_format_patch_extra_options="
1853 --full-index --not --all --no-prefix --src-prefix=
1854 --dst-prefix= --notes
2f65494d
FC
1855"
1856
f53352fb
SP
1857_git_format_patch ()
1858{
f53352fb 1859 case "$cur" in
e1d37937
SB
1860 --thread=*)
1861 __gitcomp "
1862 deep shallow
1863 " "" "${cur##--thread=}"
1864 return
1865 ;;
93ab00bd
DL
1866 --base=*|--interdiff=*|--range-diff=*)
1867 __git_complete_refs --cur="${cur#--*=}"
1868 return
1869 ;;
f53352fb 1870 --*)
13374987 1871 __gitcomp_builtin format-patch "$__git_format_patch_extra_options"
f53352fb
SP
1872 return
1873 ;;
1874 esac
1875 __git_complete_revlist
1876}
1877
4bca8636
AJ
1878_git_fsck ()
1879{
4bca8636
AJ
1880 case "$cur" in
1881 --*)
2b1c01d2 1882 __gitcomp_builtin fsck
4bca8636
AJ
1883 return
1884 ;;
1885 esac
4bca8636
AJ
1886}
1887
66729509
SG
1888_git_gitk ()
1889{
07649645 1890 __gitk_main
66729509
SG
1891}
1892
7826a786
SG
1893# Lists matching symbol names from a tag (as in ctags) file.
1894# 1: List symbol names matching this word.
1895# 2: The tag file to list symbol names from.
1896# 3: A prefix to be added to each listed symbol name (optional).
1897# 4: A suffix to be appended to each listed symbol name (optional).
1898__git_match_ctag () {
1899 awk -v pfx="${3-}" -v sfx="${4-}" "
1900 /^${1//\//\\/}/ { print pfx \$1 sfx }
1901 " "$2"
29eec71f
JK
1902}
1903
2f779f91
SG
1904# Complete symbol names from a tag file.
1905# Usage: __git_complete_symbol [<option>]...
1906# --tags=<file>: The tag file to list symbol names from instead of the
1907# default "tags".
1908# --pfx=<prefix>: A prefix to be added to each symbol name.
1909# --cur=<word>: The current symbol name to be completed. Defaults to
1910# the current word to be completed.
1911# --sfx=<suffix>: A suffix to be appended to each symbol name instead
1912# of the default space.
1913__git_complete_symbol () {
1914 local tags=tags pfx="" cur_="${cur-}" sfx=" "
1915
1916 while test $# != 0; do
1917 case "$1" in
1918 --tags=*) tags="${1##--tags=}" ;;
1919 --pfx=*) pfx="${1##--pfx=}" ;;
1920 --cur=*) cur_="${1##--cur=}" ;;
1921 --sfx=*) sfx="${1##--sfx=}" ;;
1922 *) return 1 ;;
1923 esac
1924 shift
1925 done
1926
1927 if test -r "$tags"; then
1928 __gitcomp_direct "$(__git_match_ctag "$cur_" "$tags" "$pfx" "$sfx")"
1929 fi
29eec71f
JK
1930}
1931
c72e0db1
LM
1932_git_grep ()
1933{
1934 __git_has_doubledash && return
1935
c72e0db1
LM
1936 case "$cur" in
1937 --*)
caf2de33 1938 __gitcomp_builtin grep
c72e0db1
LM
1939 return
1940 ;;
1941 esac
17225c49 1942
29eec71f 1943 case "$cword,$prev" in
87e62975 1944 $((__git_cmd_idx+1)),*|*,-*)
2f779f91 1945 __git_complete_symbol && return
29eec71f
JK
1946 ;;
1947 esac
1948
15b4a163 1949 __git_complete_refs
c72e0db1
LM
1950}
1951
1eb7e2f8
LM
1952_git_help ()
1953{
1eb7e2f8
LM
1954 case "$cur" in
1955 --*)
8c13a8d7 1956 __gitcomp_builtin help
1eb7e2f8
LM
1957 return
1958 ;;
1959 esac
c5c0548d 1960 if test -n "${GIT_TESTING_ALL_COMMAND_LIST-}"
3301d36b 1961 then
2eb6f09f 1962 __gitcomp "$GIT_TESTING_ALL_COMMAND_LIST $(__git --list-cmds=alias,list-guide) gitk"
3301d36b 1963 else
2eb6f09f 1964 __gitcomp "$(__git --list-cmds=main,nohelpers,alias,list-guide) gitk"
3301d36b 1965 fi
1eb7e2f8
LM
1966}
1967
5dad868b
LM
1968_git_init ()
1969{
5dad868b
LM
1970 case "$cur" in
1971 --shared=*)
1972 __gitcomp "
1973 false true umask group all world everybody
1974 " "" "${cur##--shared=}"
1975 return
1976 ;;
1977 --*)
b00116b7 1978 __gitcomp_builtin init
5dad868b
LM
1979 return
1980 ;;
1981 esac
5dad868b
LM
1982}
1983
b1bc1494
LM
1984_git_ls_files ()
1985{
b1bc1494
LM
1986 case "$cur" in
1987 --*)
2b1c01d2 1988 __gitcomp_builtin ls-files
b1bc1494
LM
1989 return
1990 ;;
1991 esac
fea16b47
MP
1992
1993 # XXX ignore options like --modified and always suggest all cached
1994 # files.
1995 __git_complete_index_file "--cached"
b1bc1494
LM
1996}
1997
690d8824
JH
1998_git_ls_remote ()
1999{
2c0f3a53
CW
2000 case "$cur" in
2001 --*)
cdc71c1c 2002 __gitcomp_builtin ls-remote
2c0f3a53
CW
2003 return
2004 ;;
2005 esac
a31e6262 2006 __gitcomp_nl "$(__git_remotes)"
690d8824
JH
2007}
2008
2009_git_ls_tree ()
2010{
be6d1b24
NTND
2011 case "$cur" in
2012 --*)
2013 __gitcomp_builtin ls-tree
2014 return
2015 ;;
2016 esac
2017
690d8824
JH
2018 __git_complete_file
2019}
2020
a393777e
TR
2021# Options that go well for log, shortlog and gitk
2022__git_log_common_options="
2023 --not --all
2024 --branches --tags --remotes
4fe1a619 2025 --first-parent --merges --no-merges
a393777e
TR
2026 --max-count=
2027 --max-age= --since= --after=
2028 --min-age= --until= --before=
6a6ebded
MG
2029 --min-parents= --max-parents=
2030 --no-min-parents --no-max-parents
a393777e
TR
2031"
2032# Options that go well for log and gitk (not shortlog)
2033__git_log_gitk_options="
2034 --dense --sparse --full-history
2035 --simplify-merges --simplify-by-decoration
3925b575 2036 --left-right --notes --no-notes
a393777e
TR
2037"
2038# Options that go well for log and shortlog (not gitk)
2039__git_log_shortlog_options="
2040 --author= --committer= --grep=
22dfa8a2 2041 --all-match --invert-grep
a393777e 2042"
98aaeb2f
PB
2043# Options accepted by log and show
2044__git_log_show_options="
55245d66 2045 --diff-merges --diff-merges= --no-diff-merges --remerge-diff
98aaeb2f
PB
2046"
2047
2048__git_diff_merges_opts="off none on first-parent 1 separate m combined c dense-combined cc remerge r"
a393777e 2049
1f0fc1db 2050__git_log_pretty_formats="oneline short medium full fuller reference email raw format: tformat: mboxrd"
e685ea53 2051__git_log_date_formats="relative iso8601 iso8601-strict rfc2822 short local default human raw unix auto: format:"
3d279863 2052
690d8824
JH
2053_git_log ()
2054{
d773c631 2055 __git_has_doubledash && return
fad9484f 2056 __git_find_repo_path
d773c631 2057
bf3c20f6 2058 local merge=""
fad9484f 2059 if [ -f "$__git_repo_path/MERGE_HEAD" ]; then
bf3c20f6
TR
2060 merge="--merge"
2061 fi
41d2716c
SG
2062 case "$prev,$cur" in
2063 -L,:*:*)
2064 return # fall back to Bash filename completion
2065 ;;
2066 -L,:*)
2067 __git_complete_symbol --cur="${cur#:}" --sfx=":"
2068 return
2069 ;;
2070 -G,*|-S,*)
2071 __git_complete_symbol
2072 return
2073 ;;
2074 esac
6e31b866 2075 case "$cur" in
e67d71e5 2076 --pretty=*|--format=*)
c3898111 2077 __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
e67d71e5 2078 " "" "${cur#*=}"
72de29c2
TL
2079 return
2080 ;;
47e98eec 2081 --date=*)
672c68cb 2082 __gitcomp "$__git_log_date_formats" "" "${cur##--date=}"
47e98eec
SP
2083 return
2084 ;;
af4e9e8c 2085 --decorate=*)
af16bdaa 2086 __gitcomp "full short no" "" "${cur##--decorate=}"
af4e9e8c
SB
2087 return
2088 ;;
ac76fd54
JK
2089 --diff-algorithm=*)
2090 __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}"
2091 return
2092 ;;
2093 --submodule=*)
2094 __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}"
2095 return
2096 ;;
da260f61
PB
2097 --ws-error-highlight=*)
2098 __gitcomp "$__git_ws_error_highlight_opts" "" "${cur##--ws-error-highlight=}"
2099 return
2100 ;;
d49dffde
MR
2101 --no-walk=*)
2102 __gitcomp "sorted unsorted" "" "${cur##--no-walk=}"
2103 return
2104 ;;
98aaeb2f
PB
2105 --diff-merges=*)
2106 __gitcomp "$__git_diff_merges_opts" "" "${cur##--diff-merges=}"
2107 return
2108 ;;
6e31b866 2109 --*)
b3391775 2110 __gitcomp "
a393777e
TR
2111 $__git_log_common_options
2112 $__git_log_shortlog_options
2113 $__git_log_gitk_options
98aaeb2f 2114 $__git_log_show_options
8f87fae6 2115 --root --topo-order --date-order --reverse
5d0e6343 2116 --follow --full-diff
d49dffde 2117 --abbrev-commit --no-abbrev-commit --abbrev=
47e98eec 2118 --relative-date --date=
72de29c2 2119 --pretty= --format= --oneline
2ca0b197 2120 --show-signature
d3bfbf91 2121 --cherry-mark
a393777e 2122 --cherry-pick
20827d99 2123 --graph
d49dffde 2124 --decorate --decorate= --no-decorate
20bf7292 2125 --walk-reflogs
d49dffde 2126 --no-walk --no-walk= --do-walk
a393777e 2127 --parents --children
d49dffde 2128 --expand-tabs --expand-tabs= --no-expand-tabs
bf3c20f6 2129 $merge
20bf7292 2130 $__git_diff_common_options
b3391775 2131 "
6e31b866
SP
2132 return
2133 ;;
41d2716c
SG
2134 -L:*:*)
2135 return # fall back to Bash filename completion
2136 ;;
2137 -L:*)
2138 __git_complete_symbol --cur="${cur#-L:}" --sfx=":"
2139 return
2140 ;;
2141 -G*)
2142 __git_complete_symbol --pfx="-G" --cur="${cur#-G}"
2143 return
2144 ;;
2145 -S*)
2146 __git_complete_symbol --pfx="-S" --cur="${cur#-S}"
2147 return
2148 ;;
6e31b866 2149 esac
f53352fb 2150 __git_complete_revlist
690d8824
JH
2151}
2152
4ad91321
SP
2153_git_merge ()
2154{
3c7b480a
JS
2155 __git_complete_strategy && return
2156
4ad91321
SP
2157 case "$cur" in
2158 --*)
2b1c01d2 2159 __gitcomp_builtin merge
4ad91321
SP
2160 return
2161 esac
15b4a163 2162 __git_complete_refs
4ad91321
SP
2163}
2164
b4c72162
LM
2165_git_mergetool ()
2166{
b4c72162
LM
2167 case "$cur" in
2168 --tool=*)
e2dc2de9 2169 __gitcomp "$__git_mergetools_common tortoisemerge" "" "${cur##--tool=}"
b4c72162
LM
2170 return
2171 ;;
2172 --*)
57ba1812 2173 __gitcomp "--tool= --prompt --no-prompt --gui --no-gui"
b4c72162
LM
2174 return
2175 ;;
2176 esac
b4c72162
LM
2177}
2178
690d8824
JH
2179_git_merge_base ()
2180{
85453fd1
JK
2181 case "$cur" in
2182 --*)
4429d8b2 2183 __gitcomp_builtin merge-base
85453fd1
JK
2184 return
2185 ;;
2186 esac
15b4a163 2187 __git_complete_refs
690d8824
JH
2188}
2189
1127c51c
LM
2190_git_mv ()
2191{
1127c51c
LM
2192 case "$cur" in
2193 --*)
61d15cd6 2194 __gitcomp_builtin mv
1127c51c
LM
2195 return
2196 ;;
2197 esac
fea16b47
MP
2198
2199 if [ $(__git_count_arguments "mv") -gt 0 ]; then
2200 # We need to show both cached and untracked files (including
2201 # empty directories) since this may not be the last argument.
2202 __git_complete_index_file "--cached --others --directory"
2203 else
2204 __git_complete_index_file "--cached"
2205 fi
1127c51c
LM
2206}
2207
00f09d0e
SG
2208_git_notes ()
2209{
27b42d04 2210 local subcommands='add append copy edit get-ref list merge prune remove show'
2a5da755 2211 local subcommand="$(__git_find_on_cmdline "$subcommands")"
00f09d0e 2212
2a5da755
SG
2213 case "$subcommand,$cur" in
2214 ,--*)
7a60e3bb 2215 __gitcomp_builtin notes
2a5da755
SG
2216 ;;
2217 ,*)
39540681 2218 case "$prev" in
2a5da755 2219 --ref)
15b4a163 2220 __git_complete_refs
2a5da755
SG
2221 ;;
2222 *)
2223 __gitcomp "$subcommands --ref"
2224 ;;
2225 esac
2226 ;;
b25e2e64 2227 *,--reuse-message=*|*,--reedit-message=*)
15b4a163 2228 __git_complete_refs --cur="${cur#*=}"
2a5da755 2229 ;;
4ea2c974
NTND
2230 *,--*)
2231 __gitcomp_builtin notes_$subcommand
2a5da755 2232 ;;
27b42d04 2233 prune,*|get-ref,*)
4ea2c974 2234 # this command does not take a ref, do not complete it
00f09d0e
SG
2235 ;;
2236 *)
39540681 2237 case "$prev" in
2a5da755
SG
2238 -m|-F)
2239 ;;
2240 *)
15b4a163 2241 __git_complete_refs
2a5da755
SG
2242 ;;
2243 esac
00f09d0e
SG
2244 ;;
2245 esac
2246}
2247
690d8824
JH
2248_git_pull ()
2249{
0a4e1472
JS
2250 __git_complete_strategy && return
2251
0a4e1472 2252 case "$cur" in
4dd5c470
SYS
2253 --recurse-submodules=*)
2254 __gitcomp "$__git_fetch_recurse_submodules" "" "${cur##--recurse-submodules=}"
2255 return
2256 ;;
0a4e1472 2257 --*)
2b1c01d2 2258 __gitcomp_builtin pull
32e64e50 2259
0a4e1472
JS
2260 return
2261 ;;
2262 esac
52d5c3b5 2263 __git_complete_remote_or_refspec
690d8824
JH
2264}
2265
446624ce 2266__git_push_recurse_submodules="check on-demand only"
4dd5c470 2267
aaf7253f
JK
2268__git_complete_force_with_lease ()
2269{
2270 local cur_=$1
2271
2272 case "$cur_" in
2273 --*=)
2274 ;;
2275 *:*)
15b4a163 2276 __git_complete_refs --cur="${cur_#*:}"
aaf7253f
JK
2277 ;;
2278 *)
15b4a163 2279 __git_complete_refs --cur="$cur_"
aaf7253f
JK
2280 ;;
2281 esac
2282}
2283
690d8824
JH
2284_git_push ()
2285{
da48616f 2286 case "$prev" in
0a4e1472 2287 --repo)
a31e6262 2288 __gitcomp_nl "$(__git_remotes)"
0a4e1472 2289 return
3a224ff2
JK
2290 ;;
2291 --recurse-submodules)
2292 __gitcomp "$__git_push_recurse_submodules"
2293 return
2294 ;;
0a4e1472
JS
2295 esac
2296 case "$cur" in
2297 --repo=*)
a31e6262 2298 __gitcomp_nl "$(__git_remotes)" "" "${cur##--repo=}"
0a4e1472
JS
2299 return
2300 ;;
4dd5c470
SYS
2301 --recurse-submodules=*)
2302 __gitcomp "$__git_push_recurse_submodules" "" "${cur##--recurse-submodules=}"
2303 return
2304 ;;
aaf7253f
JK
2305 --force-with-lease=*)
2306 __git_complete_force_with_lease "${cur##--force-with-lease=}"
2307 return
2308 ;;
0a4e1472 2309 --*)
f1e1bdd6 2310 __gitcomp_builtin push
0a4e1472
JS
2311 return
2312 ;;
2313 esac
52d5c3b5 2314 __git_complete_remote_or_refspec
690d8824
JH
2315}
2316
7190a67e
JS
2317_git_range_diff ()
2318{
2319 case "$cur" in
2320 --*)
2321 __gitcomp "
27526793 2322 --creation-factor= --no-dual-color
7190a67e
JS
2323 $__git_diff_common_options
2324 "
2325 return
2326 ;;
2327 esac
2328 __git_complete_revlist
2329}
2330
2b9bd488
DL
2331__git_rebase_inprogress_options="--continue --skip --abort --quit --show-current-patch"
2332__git_rebase_interactive_inprogress_options="$__git_rebase_inprogress_options --edit-todo"
2333
61d926a3
SP
2334_git_rebase ()
2335{
fad9484f
SG
2336 __git_find_repo_path
2337 if [ -f "$__git_repo_path"/rebase-merge/interactive ]; then
2b9bd488 2338 __gitcomp "$__git_rebase_interactive_inprogress_options"
09bb6520 2339 return
fad9484f
SG
2340 elif [ -d "$__git_repo_path"/rebase-apply ] || \
2341 [ -d "$__git_repo_path"/rebase-merge ]; then
2b9bd488 2342 __gitcomp "$__git_rebase_inprogress_options"
61d926a3
SP
2343 return
2344 fi
3c7b480a 2345 __git_complete_strategy && return
61d926a3 2346 case "$cur" in
93cf50a4
BG
2347 --whitespace=*)
2348 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
2349 return
2350 ;;
c1ce9c06
DL
2351 --onto=*)
2352 __git_complete_refs --cur="${cur##--onto=}"
2353 return
2354 ;;
61d926a3 2355 --*)
2b9bd488
DL
2356 __gitcomp_builtin rebase "" \
2357 "$__git_rebase_interactive_inprogress_options"
93cf50a4 2358
61d926a3
SP
2359 return
2360 esac
15b4a163 2361 __git_complete_refs
61d926a3
SP
2362}
2363
057f3279
TRC
2364_git_reflog ()
2365{
2366 local subcommands="show delete expire"
2367 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2368
2369 if [ -z "$subcommand" ]; then
2370 __gitcomp "$subcommands"
2371 else
15b4a163 2372 __git_complete_refs
057f3279
TRC
2373 fi
2374}
2375
ae616de6 2376__git_send_email_confirm_options="always never auto cc compose"
cb8a9bd5 2377__git_send_email_suppresscc_options="author self cc bodycc sob cccmd body all"
ae616de6 2378
25a1f374
TL
2379_git_send_email ()
2380{
dfbe5eeb
JK
2381 case "$prev" in
2382 --to|--cc|--bcc|--from)
e15098a3 2383 __gitcomp "$(__git send-email --dump-aliases)"
dfbe5eeb
JK
2384 return
2385 ;;
2386 esac
2387
25a1f374 2388 case "$cur" in
ae616de6
SB
2389 --confirm=*)
2390 __gitcomp "
2391 $__git_send_email_confirm_options
2392 " "" "${cur##--confirm=}"
2393 return
2394 ;;
2395 --suppress-cc=*)
2396 __gitcomp "
2397 $__git_send_email_suppresscc_options
2398 " "" "${cur##--suppress-cc=}"
2399
2400 return
2401 ;;
2402 --smtp-encryption=*)
2403 __gitcomp "ssl tls" "" "${cur##--smtp-encryption=}"
2404 return
2405 ;;
2f65494d
FC
2406 --thread=*)
2407 __gitcomp "
2408 deep shallow
2409 " "" "${cur##--thread=}"
2410 return
2411 ;;
dfbe5eeb 2412 --to=*|--cc=*|--bcc=*|--from=*)
e15098a3 2413 __gitcomp "$(__git send-email --dump-aliases)" "" "${cur#--*=}"
dfbe5eeb
JK
2414 return
2415 ;;
25a1f374 2416 --*)
2b7b7585 2417 __gitcomp_builtin send-email "$__git_format_patch_extra_options"
25a1f374
TL
2418 return
2419 ;;
2420 esac
2f65494d 2421 __git_complete_revlist
25a1f374
TL
2422}
2423
424cce83
SG
2424_git_stage ()
2425{
2426 _git_add
2427}
2428
634d2344
TB
2429_git_status ()
2430{
2431 local complete_opt
2432 local untracked_state
2433
2434 case "$cur" in
2435 --ignore-submodules=*)
2436 __gitcomp "none untracked dirty all" "" "${cur##--ignore-submodules=}"
2437 return
2438 ;;
2439 --untracked-files=*)
2440 __gitcomp "$__git_untracked_file_modes" "" "${cur##--untracked-files=}"
2441 return
2442 ;;
2443 --column=*)
2444 __gitcomp "
2445 always never auto column row plain dense nodense
2446 " "" "${cur##--column=}"
2447 return
2448 ;;
2449 --*)
2b1c01d2 2450 __gitcomp_builtin status
634d2344
TB
2451 return
2452 ;;
2453 esac
2454
2455 untracked_state="$(__git_get_option_value "-u" "--untracked-files=" \
2456 "$__git_untracked_file_modes" "status.showUntrackedFiles")"
2457
2458 case "$untracked_state" in
2459 no)
2460 # --ignored option does not matter
2461 complete_opt=
2462 ;;
2463 all|normal|*)
2464 complete_opt="--cached --directory --no-empty-directory --others"
2465
2466 if [ -n "$(__git_find_on_cmdline "--ignored")" ]; then
2467 complete_opt="$complete_opt --ignored --exclude=*"
2468 fi
2469 ;;
2470 esac
2471
2472 __git_complete_index_file "$complete_opt"
2473}
2474
ae36fe69
NTND
2475_git_switch ()
2476{
c09d1280
ÁU
2477 local dwim_opt="$(__git_checkout_default_dwim_mode)"
2478
2479 case "$prev" in
2480 -c|-C|--orphan)
2481 # Complete local branches (and DWIM branch
2482 # remote branch names) for an option argument
2483 # specifying a new branch name. This is for
2484 # convenience, assuming new branches are
2485 # possibly based on pre-existing branch names.
2486 __git_complete_refs $dwim_opt --mode="heads"
2487 return
2488 ;;
2489 *)
2490 ;;
2491 esac
2492
ae36fe69
NTND
2493 case "$cur" in
2494 --conflict=*)
4496526f 2495 __gitcomp "diff3 merge zdiff3" "" "${cur##--conflict=}"
ae36fe69
NTND
2496 ;;
2497 --*)
2498 __gitcomp_builtin switch
2499 ;;
2500 *)
91439928
JK
2501 # Unlike in git checkout, git switch --orphan does not take
2502 # a start point. Thus we really have nothing to complete after
2503 # the branch name.
2504 if [ -n "$(__git_find_on_cmdline "--orphan")" ]; then
2505 return
ae36fe69 2506 fi
91439928 2507
acb658fe 2508 # At this point, we've already handled special completion for
91439928 2509 # -c/-C, and --orphan. There are 3 main things left to
acb658fe
JK
2510 # complete:
2511 # 1) a start-point for -c/-C or -d/--detach
2512 # 2) a remote head, for --track
2513 # 3) a branch name, possibly including DWIM remote branches
68d97c7f 2514
acb658fe 2515 if [ -n "$(__git_find_on_cmdline "-c -C -d --detach")" ]; then
68d97c7f 2516 __git_complete_refs --mode="refs"
00e7bd2b
JK
2517 elif [ -n "$(__git_find_on_cmdline "--track")" ]; then
2518 __git_complete_refs --mode="remote-heads"
ae36fe69 2519 else
68d97c7f 2520 __git_complete_refs $dwim_opt --mode="heads"
ae36fe69
NTND
2521 fi
2522 ;;
2523 esac
2524}
2525
00652369
SB
2526__git_config_get_set_variables ()
2527{
da48616f 2528 local prevword word config_file= c=$cword
59d85a2a 2529 while [ $c -gt "$__git_cmd_idx" ]; do
da48616f 2530 word="${words[c]}"
00652369 2531 case "$word" in
66c0786c 2532 --system|--global|--local|--file=*)
00652369
SB
2533 config_file="$word"
2534 break
2535 ;;
2536 -f|--file)
2537 config_file="$word $prevword"
2538 break
2539 ;;
2540 esac
2541 prevword=$word
2542 c=$((--c))
2543 done
2544
e15098a3 2545 __git config $config_file --name-only --list
00652369
SB
2546}
2547
e17ca926
NTND
2548__git_config_vars=
2549__git_compute_config_vars ()
2550{
2551 test -n "$__git_config_vars" ||
a9baccca
ÆAB
2552 __git_config_vars="$(git help --config-for-completion)"
2553}
2554
2555__git_config_sections=
2556__git_compute_config_sections ()
2557{
2558 test -n "$__git_config_sections" ||
2559 __git_config_sections="$(git help --config-sections-for-completion)"
e17ca926
NTND
2560}
2561
42d0efec 2562# Completes possible values of various configuration variables.
dd334728
SG
2563#
2564# Usage: __git_complete_config_variable_value [<option>]...
2565# --varname=<word>: The name of the configuration variable whose value is
2566# to be completed. Defaults to the previous word on the
2567# command line.
2568# --cur=<word>: The current value to be completed. Defaults to the current
2569# word to be completed.
42d0efec 2570__git_complete_config_variable_value ()
5de40f59 2571{
dd334728
SG
2572 local varname="$prev" cur_="$cur"
2573
2574 while test $# != 0; do
2575 case "$1" in
2576 --varname=*) varname="${1##--varname=}" ;;
2577 --cur=*) cur_="${1##--cur=}" ;;
2578 *) return 1 ;;
2579 esac
2580 shift
2581 done
bea21259
NTND
2582
2583 if [ "${BASH_VERSINFO[0]:-0}" -ge 4 ]; then
dd334728 2584 varname="${varname,,}"
bea21259 2585 else
dd334728 2586 varname="$(echo "$varname" |tr A-Z a-z)"
bea21259
NTND
2587 fi
2588
2589 case "$varname" in
72f75077 2590 branch.*.remote|branch.*.pushremote)
dd334728 2591 __gitcomp_nl "$(__git_remotes)" "" "$cur_"
5de40f59
SP
2592 return
2593 ;;
2594 branch.*.merge)
dd334728 2595 __git_complete_refs --cur="$cur_"
5de40f59
SP
2596 return
2597 ;;
a05490ed 2598 branch.*.rebase)
52f1e821 2599 __gitcomp "false true merges interactive" "" "$cur_"
a05490ed
RR
2600 return
2601 ;;
7e6a0cc4 2602 remote.pushdefault)
dd334728 2603 __gitcomp_nl "$(__git_remotes)" "" "$cur_"
7e6a0cc4
RR
2604 return
2605 ;;
5de40f59 2606 remote.*.fetch)
dd334728 2607 local remote="${varname#remote.}"
5de40f59 2608 remote="${remote%.fetch}"
dd334728 2609 if [ -z "$cur_" ]; then
73704451 2610 __gitcomp_nl "refs/heads/" "" "" ""
d51a8ecd
SG
2611 return
2612 fi
dd334728 2613 __gitcomp_nl "$(__git_refs_remotes "$remote")" "" "$cur_"
5de40f59
SP
2614 return
2615 ;;
2616 remote.*.push)
dd334728 2617 local remote="${varname#remote.}"
5de40f59 2618 remote="${remote%.push}"
3ba04201 2619 __gitcomp_nl "$(__git for-each-ref \
dd334728 2620 --format='%(refname):%(refname)' refs/heads)" "" "$cur_"
78d4d6a2
SP
2621 return
2622 ;;
2623 pull.twohead|pull.octopus)
eaa4e6ee 2624 __git_compute_merge_strategies
dd334728 2625 __gitcomp "$__git_merge_strategies" "" "$cur_"
78d4d6a2
SP
2626 return
2627 ;;
901d615c 2628 color.pager)
dd334728 2629 __gitcomp "false true" "" "$cur_"
901d615c
MK
2630 return
2631 ;;
78d4d6a2
SP
2632 color.*.*)
2633 __gitcomp "
98171a07 2634 normal black red green yellow blue magenta cyan white
78d4d6a2 2635 bold dim ul blink reverse
dd334728 2636 " "" "$cur_"
5de40f59
SP
2637 return
2638 ;;
840d7e5b 2639 color.*)
dd334728 2640 __gitcomp "false true always never auto" "" "$cur_"
840d7e5b
SG
2641 return
2642 ;;
2651baae 2643 diff.submodule)
dd334728 2644 __gitcomp "$__git_diff_submodule_formats" "" "$cur_"
2651baae
RR
2645 return
2646 ;;
9b82d63b 2647 help.format)
dd334728 2648 __gitcomp "man info web html" "" "$cur_"
9b82d63b
SB
2649 return
2650 ;;
672c68cb 2651 log.date)
dd334728 2652 __gitcomp "$__git_log_date_formats" "" "$cur_"
672c68cb
SB
2653 return
2654 ;;
92c4a7a1 2655 sendemail.aliasfiletype)
dd334728 2656 __gitcomp "mutt mailrc pine elm gnus" "" "$cur_"
ae616de6
SB
2657 return
2658 ;;
2659 sendemail.confirm)
dd334728 2660 __gitcomp "$__git_send_email_confirm_options" "" "$cur_"
ae616de6
SB
2661 return
2662 ;;
2663 sendemail.suppresscc)
dd334728 2664 __gitcomp "$__git_send_email_suppresscc_options" "" "$cur_"
ae616de6
SB
2665 return
2666 ;;
8d814084 2667 sendemail.transferencoding)
dd334728 2668 __gitcomp "7bit 8bit quoted-printable base64" "" "$cur_"
8d814084
PB
2669 return
2670 ;;
5de40f59 2671 *.*)
5de40f59
SP
2672 return
2673 ;;
2674 esac
42d0efec
SG
2675}
2676
2677# Completes configuration sections, subsections, variable names.
e1e00089
SG
2678#
2679# Usage: __git_complete_config_variable_name [<option>]...
5af9d5f6
SG
2680# --cur=<word>: The current configuration section/variable name to be
2681# completed. Defaults to the current word to be completed.
e1e00089
SG
2682# --sfx=<suffix>: A suffix to be appended to each fully completed
2683# configuration variable name (but not to sections or
2684# subsections) instead of the default space.
42d0efec
SG
2685__git_complete_config_variable_name ()
2686{
5af9d5f6 2687 local cur_="$cur" sfx
e1e00089
SG
2688
2689 while test $# != 0; do
2690 case "$1" in
5af9d5f6 2691 --cur=*) cur_="${1##--cur=}" ;;
e1e00089
SG
2692 --sfx=*) sfx="${1##--sfx=}" ;;
2693 *) return 1 ;;
2694 esac
2695 shift
2696 done
2697
5af9d5f6 2698 case "$cur_" in
5de40f59 2699 branch.*.*)
5af9d5f6
SG
2700 local pfx="${cur_%.*}."
2701 cur_="${cur_##*.}"
e1e00089 2702 __gitcomp "remote pushRemote merge mergeOptions rebase" "$pfx" "$cur_" "$sfx"
5de40f59
SP
2703 return
2704 ;;
2705 branch.*)
bf8ae49a
FC
2706 local pfx="${cur_%.*}."
2707 cur_="${cur_#*.}"
227307a6 2708 __gitcomp_direct "$(__git_heads "$pfx" "$cur_" ".")"
be6444d1 2709 __gitcomp_nl_append $'autoSetupMerge\nautoSetupRebase\n' "$pfx" "$cur_" "${sfx- }"
5de40f59
SP
2710 return
2711 ;;
0aa62fd0 2712 guitool.*.*)
5af9d5f6
SG
2713 local pfx="${cur_%.*}."
2714 cur_="${cur_##*.}"
0aa62fd0 2715 __gitcomp "
f45db831
NTND
2716 argPrompt cmd confirm needsFile noConsole noRescan
2717 prompt revPrompt revUnmerged title
e1e00089 2718 " "$pfx" "$cur_" "$sfx"
0aa62fd0
SB
2719 return
2720 ;;
2721 difftool.*.*)
5af9d5f6
SG
2722 local pfx="${cur_%.*}."
2723 cur_="${cur_##*.}"
e1e00089 2724 __gitcomp "cmd path" "$pfx" "$cur_" "$sfx"
0aa62fd0
SB
2725 return
2726 ;;
2727 man.*.*)
5af9d5f6
SG
2728 local pfx="${cur_%.*}."
2729 cur_="${cur_##*.}"
e1e00089 2730 __gitcomp "cmd path" "$pfx" "$cur_" "$sfx"
0aa62fd0
SB
2731 return
2732 ;;
2733 mergetool.*.*)
5af9d5f6
SG
2734 local pfx="${cur_%.*}."
2735 cur_="${cur_##*.}"
e1e00089 2736 __gitcomp "cmd path trustExitCode" "$pfx" "$cur_" "$sfx"
0aa62fd0
SB
2737 return
2738 ;;
2739 pager.*)
5af9d5f6
SG
2740 local pfx="${cur_%.*}."
2741 cur_="${cur_#*.}"
eaa4e6ee 2742 __git_compute_all_commands
be6444d1 2743 __gitcomp_nl "$__git_all_commands" "$pfx" "$cur_" "${sfx- }"
0aa62fd0
SB
2744 return
2745 ;;
5de40f59 2746 remote.*.*)
5af9d5f6
SG
2747 local pfx="${cur_%.*}."
2748 cur_="${cur_##*.}"
12977705 2749 __gitcomp "
98171a07 2750 url proxy fetch push mirror skipDefaultUpdate
f45db831 2751 receivepack uploadpack tagOpt pushurl
e1e00089 2752 " "$pfx" "$cur_" "$sfx"
5de40f59
SP
2753 return
2754 ;;
2755 remote.*)
5af9d5f6
SG
2756 local pfx="${cur_%.*}."
2757 cur_="${cur_#*.}"
a31e6262 2758 __gitcomp_nl "$(__git_remotes)" "$pfx" "$cur_" "."
be6444d1 2759 __gitcomp_nl_append "pushDefault" "$pfx" "$cur_" "${sfx- }"
5de40f59
SP
2760 return
2761 ;;
0aa62fd0 2762 url.*.*)
5af9d5f6
SG
2763 local pfx="${cur_%.*}."
2764 cur_="${cur_##*.}"
e1e00089 2765 __gitcomp "insteadOf pushInsteadOf" "$pfx" "$cur_" "$sfx"
0aa62fd0
SB
2766 return
2767 ;;
f22f6826
NTND
2768 *.*)
2769 __git_compute_config_vars
5af9d5f6 2770 __gitcomp "$__git_config_vars" "" "$cur_" "$sfx"
f22f6826
NTND
2771 ;;
2772 *)
a9baccca
ÆAB
2773 __git_compute_config_sections
2774 __gitcomp "$__git_config_sections" "" "$cur_" "."
42d0efec
SG
2775 ;;
2776 esac
2777}
2778
e1e00089
SG
2779# Completes '='-separated configuration sections/variable names and values
2780# for 'git -c section.name=value'.
5af9d5f6
SG
2781#
2782# Usage: __git_complete_config_variable_name_and_value [<option>]...
2783# --cur=<word>: The current configuration section/variable name/value to be
2784# completed. Defaults to the current word to be completed.
e1e00089
SG
2785__git_complete_config_variable_name_and_value ()
2786{
5af9d5f6
SG
2787 local cur_="$cur"
2788
2789 while test $# != 0; do
2790 case "$1" in
2791 --cur=*) cur_="${1##--cur=}" ;;
2792 *) return 1 ;;
2793 esac
2794 shift
2795 done
2796
2797 case "$cur_" in
e1e00089 2798 *=*)
dd334728 2799 __git_complete_config_variable_value \
5af9d5f6 2800 --varname="${cur_%%=*}" --cur="${cur_#*=}"
e1e00089
SG
2801 ;;
2802 *)
5af9d5f6 2803 __git_complete_config_variable_name --cur="$cur_" --sfx='='
e1e00089
SG
2804 ;;
2805 esac
2806}
2807
42d0efec
SG
2808_git_config ()
2809{
2810 case "$prev" in
2811 --get|--get-all|--unset|--unset-all)
2812 __gitcomp_nl "$(__git_config_get_set_variables)"
2813 return
2814 ;;
2815 *.*)
2816 __git_complete_config_variable_value
2817 return
2818 ;;
2819 esac
2820 case "$cur" in
2821 --*)
2822 __gitcomp_builtin config
2823 ;;
2824 *)
2825 __git_complete_config_variable_name
2826 ;;
5de40f59 2827 esac
5de40f59
SP
2828}
2829
88293c67
SP
2830_git_remote ()
2831{
cac84960
CW
2832 local subcommands="
2833 add rename remove set-head set-branches
2834 get-url set-url show prune update
2835 "
918c03c2 2836 local subcommand="$(__git_find_on_cmdline "$subcommands")"
3ff1320d 2837 if [ -z "$subcommand" ]; then
cac84960
CW
2838 case "$cur" in
2839 --*)
ab6a11c5 2840 __gitcomp_builtin remote
cac84960
CW
2841 ;;
2842 *)
2843 __gitcomp "$subcommands"
2844 ;;
2845 esac
88293c67
SP
2846 return
2847 fi
2848
cac84960
CW
2849 case "$subcommand,$cur" in
2850 add,--*)
2b1c01d2 2851 __gitcomp_builtin remote_add
88293c67 2852 ;;
cac84960
CW
2853 add,*)
2854 ;;
2855 set-head,--*)
ab6a11c5 2856 __gitcomp_builtin remote_set-head
cac84960
CW
2857 ;;
2858 set-branches,--*)
ab6a11c5 2859 __gitcomp_builtin remote_set-branches
88293c67 2860 ;;
cac84960 2861 set-head,*|set-branches,*)
f1c6ffe6
PJ
2862 __git_complete_remote_or_refspec
2863 ;;
cac84960 2864 update,--*)
ab6a11c5 2865 __gitcomp_builtin remote_update
cac84960
CW
2866 ;;
2867 update,*)
9cd4382a 2868 __gitcomp "$(__git_remotes) $(__git_get_config_variables "remotes")"
fb72759b 2869 ;;
cac84960 2870 set-url,--*)
ab6a11c5 2871 __gitcomp_builtin remote_set-url
cac84960
CW
2872 ;;
2873 get-url,--*)
ab6a11c5 2874 __gitcomp_builtin remote_get-url
cac84960
CW
2875 ;;
2876 prune,--*)
ab6a11c5 2877 __gitcomp_builtin remote_prune
cac84960 2878 ;;
88293c67 2879 *)
cac84960 2880 __gitcomp_nl "$(__git_remotes)"
88293c67
SP
2881 ;;
2882 esac
2883}
2884
e1c1a067
BG
2885_git_replace ()
2886{
188fba11 2887 case "$cur" in
5a59a230
NTND
2888 --format=*)
2889 __gitcomp "short medium long" "" "${cur##--format=}"
2890 return
2891 ;;
188fba11 2892 --*)
1b354755 2893 __gitcomp_builtin replace
188fba11
CW
2894 return
2895 ;;
2896 esac
15b4a163 2897 __git_complete_refs
e1c1a067
BG
2898}
2899
e24a256b
CW
2900_git_rerere ()
2901{
2902 local subcommands="clear forget diff remaining status gc"
2903 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2904 if test -z "$subcommand"
2905 then
2906 __gitcomp "$subcommands"
2907 return
2908 fi
2909}
2910
67e78c3b
SP
2911_git_reset ()
2912{
d773c631
SG
2913 __git_has_doubledash && return
2914
b3391775
SP
2915 case "$cur" in
2916 --*)
39073104 2917 __gitcomp_builtin reset
b3391775
SP
2918 return
2919 ;;
2920 esac
15b4a163 2921 __git_complete_refs
67e78c3b
SP
2922}
2923
75f4c7c1
NTND
2924_git_restore ()
2925{
0bc18daa
ÁU
2926 case "$prev" in
2927 -s)
2928 __git_complete_refs
2929 return
2930 ;;
2931 esac
2932
75f4c7c1
NTND
2933 case "$cur" in
2934 --conflict=*)
4496526f 2935 __gitcomp "diff3 merge zdiff3" "" "${cur##--conflict=}"
75f4c7c1
NTND
2936 ;;
2937 --source=*)
2938 __git_complete_refs --cur="${cur##--source=}"
2939 ;;
2940 --*)
2941 __gitcomp_builtin restore
2942 ;;
841fd28c
DC
2943 *)
2944 if __git rev-parse --verify --quiet HEAD >/dev/null; then
2945 __git_complete_index_file "--modified"
2946 fi
75f4c7c1
NTND
2947 esac
2948}
2949
deaa65a7 2950__git_revert_inprogress_options=$__git_sequencer_inprogress_options
e5f98518 2951
a6c2be24
LM
2952_git_revert ()
2953{
fad9484f
SG
2954 __git_find_repo_path
2955 if [ -f "$__git_repo_path"/REVERT_HEAD ]; then
e5f98518 2956 __gitcomp "$__git_revert_inprogress_options"
956352b6
TB
2957 return
2958 fi
5a59a230 2959 __git_complete_strategy && return
a6c2be24
LM
2960 case "$cur" in
2961 --*)
2b1c01d2 2962 __gitcomp_builtin revert "" \
e5f98518 2963 "$__git_revert_inprogress_options"
a6c2be24
LM
2964 return
2965 ;;
2966 esac
15b4a163 2967 __git_complete_refs
a6c2be24
LM
2968}
2969
08c701d4
LM
2970_git_rm ()
2971{
08c701d4
LM
2972 case "$cur" in
2973 --*)
44c9a6d2 2974 __gitcomp_builtin rm
08c701d4
LM
2975 return
2976 ;;
2977 esac
fea16b47
MP
2978
2979 __git_complete_index_file "--cached"
08c701d4
LM
2980}
2981
1fd6bec9
SP
2982_git_shortlog ()
2983{
d773c631
SG
2984 __git_has_doubledash && return
2985
1fd6bec9
SP
2986 case "$cur" in
2987 --*)
2988 __gitcomp "
a393777e
TR
2989 $__git_log_common_options
2990 $__git_log_shortlog_options
f483a0aa 2991 --numbered --summary --email
1fd6bec9
SP
2992 "
2993 return
2994 ;;
2995 esac
2996 __git_complete_revlist
2997}
2998
90131924
SP
2999_git_show ()
3000{
41d8cf7d
MH
3001 __git_has_doubledash && return
3002
90131924 3003 case "$cur" in
e67d71e5 3004 --pretty=*|--format=*)
c3898111 3005 __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
e67d71e5 3006 " "" "${cur#*=}"
72de29c2
TL
3007 return
3008 ;;
07924d4d
MP
3009 --diff-algorithm=*)
3010 __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}"
3011 return
3012 ;;
ac76fd54
JK
3013 --submodule=*)
3014 __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}"
3015 return
3016 ;;
688b87c8
MP
3017 --color-moved=*)
3018 __gitcomp "$__git_color_moved_opts" "" "${cur##--color-moved=}"
3019 return
3020 ;;
3021 --color-moved-ws=*)
3022 __gitcomp "$__git_color_moved_ws_opts" "" "${cur##--color-moved-ws=}"
3023 return
3024 ;;
da260f61
PB
3025 --ws-error-highlight=*)
3026 __gitcomp "$__git_ws_error_highlight_opts" "" "${cur##--ws-error-highlight=}"
3027 return
3028 ;;
98aaeb2f
PB
3029 --diff-merges=*)
3030 __gitcomp "$__git_diff_merges_opts" "" "${cur##--diff-merges=}"
3031 return
3032 ;;
90131924 3033 --*)
d49dffde 3034 __gitcomp "--pretty= --format= --abbrev-commit --no-abbrev-commit
8a1bb7ee 3035 --oneline --show-signature
d49dffde 3036 --expand-tabs --expand-tabs= --no-expand-tabs
98aaeb2f 3037 $__git_log_show_options
20bf7292
TR
3038 $__git_diff_common_options
3039 "
90131924
SP
3040 return
3041 ;;
3042 esac
5269f7f8 3043 __git_complete_revlist_file
90131924
SP
3044}
3045
2ca880fe
TR
3046_git_show_branch ()
3047{
2ca880fe
TR
3048 case "$cur" in
3049 --*)
2b1c01d2 3050 __gitcomp_builtin show-branch
2ca880fe
TR
3051 return
3052 ;;
3053 esac
3054 __git_complete_revlist
3055}
3056
c5f5c508
LD
3057__gitcomp_directories ()
3058{
48803821 3059 local _tmp_dir _tmp_completions _found=0
c5f5c508
LD
3060
3061 # Get the directory of the current token; this differs from dirname
3062 # in that it keeps up to the final trailing slash. If no slash found
3063 # that's fine too.
3064 [[ "$cur" =~ .*/ ]]
3065 _tmp_dir=$BASH_REMATCH
3066
48803821
LD
3067 # Find possible directory completions, adding trailing '/' characters,
3068 # de-quoting, and handling unusual characters.
3069 while IFS= read -r -d $'\0' c ; do
3070 # If there are directory completions, find ones that start
3071 # with "$cur", the current token, and put those in COMPREPLY
c5f5c508 3072 if [[ $c == "$cur"* ]]; then
48803821
LD
3073 COMPREPLY+=("$c/")
3074 _found=1
c5f5c508 3075 fi
48803821
LD
3076 done < <(git ls-tree -z -d --name-only HEAD $_tmp_dir)
3077
3078 if [[ $_found == 0 ]] && [[ "$cur" =~ /$ ]]; then
c5f5c508
LD
3079 # No possible further completions any deeper, so assume we're at
3080 # a leaf directory and just consider it complete
3081 __gitcomp_direct_append "$cur "
3082 fi
3083}
3084
d031049d
MT
3085_git_sparse_checkout ()
3086{
fd6d9bec 3087 local subcommands="list init set disable add reapply"
d031049d
MT
3088 local subcommand="$(__git_find_on_cmdline "$subcommands")"
3089 if [ -z "$subcommand" ]; then
3090 __gitcomp "$subcommands"
3091 return
3092 fi
3093
3094 case "$subcommand,$cur" in
fd6d9bec
LD
3095 *,--*)
3096 __gitcomp_builtin sparse-checkout_$subcommand "" "--"
d031049d 3097 ;;
fd6d9bec
LD
3098 set,*|add,*)
3099 if [ "$(__git config core.sparseCheckoutCone)" == "true" ] ||
3100 [ -n "$(__git_find_on_cmdline --cone)" ]; then
c5f5c508 3101 __gitcomp_directories
fd6d9bec 3102 fi
d031049d
MT
3103 esac
3104}
3105
7fd53fce
JH
3106_git_stash ()
3107{
0eb5a4f9
TG
3108 local subcommands='push list show apply clear drop pop create branch'
3109 local subcommand="$(__git_find_on_cmdline "$subcommands save")"
61318078 3110
7bedebca 3111 if [ -z "$subcommand" ]; then
87e62975 3112 case "$((cword - __git_cmd_idx)),$cur" in
61318078
DL
3113 *,--*)
3114 __gitcomp_builtin stash_push
59d5eeee 3115 ;;
61318078
DL
3116 1,sa*)
3117 __gitcomp "save"
0eb5a4f9 3118 ;;
61318078
DL
3119 1,*)
3120 __gitcomp "$subcommands"
59d5eeee
SG
3121 ;;
3122 esac
42b30bcb
DL
3123 return
3124 fi
3125
3126 case "$subcommand,$cur" in
42b30bcb 3127 list,--*)
61318078
DL
3128 # NEEDSWORK: can we somehow unify this with the options in _git_log() and _git_show()
3129 __gitcomp_builtin stash_list "$__git_log_common_options $__git_diff_common_options"
42b30bcb
DL
3130 ;;
3131 show,--*)
61318078 3132 __gitcomp_builtin stash_show "$__git_diff_common_options"
42b30bcb 3133 ;;
7cdb0969
DL
3134 *,--*)
3135 __gitcomp_builtin "stash_$subcommand"
42b30bcb
DL
3136 ;;
3137 branch,*)
87e62975 3138 if [ $cword -eq $((__git_cmd_idx+2)) ]; then
42b30bcb
DL
3139 __git_complete_refs
3140 else
1cd23e9e 3141 __gitcomp_nl "$(__git stash list \
95d43780 3142 | sed -n -e 's/:.*//p')"
42b30bcb
DL
3143 fi
3144 ;;
3145 show,*|apply,*|drop,*|pop,*)
3146 __gitcomp_nl "$(__git stash list \
3147 | sed -n -e 's/:.*//p')"
3148 ;;
42b30bcb 3149 esac
7fd53fce
JH
3150}
3151
be86f7a0
SP
3152_git_submodule ()
3153{
d773c631
SG
3154 __git_has_doubledash && return
3155
26b06100 3156 local subcommands="add status init deinit update set-branch set-url summary foreach sync absorbgitdirs"
65d5a1e0
CW
3157 local subcommand="$(__git_find_on_cmdline "$subcommands")"
3158 if [ -z "$subcommand" ]; then
be86f7a0
SP
3159 case "$cur" in
3160 --*)
65d5a1e0 3161 __gitcomp "--quiet"
be86f7a0
SP
3162 ;;
3163 *)
3ff1320d 3164 __gitcomp "$subcommands"
be86f7a0
SP
3165 ;;
3166 esac
3167 return
3168 fi
65d5a1e0
CW
3169
3170 case "$subcommand,$cur" in
3171 add,--*)
3172 __gitcomp "--branch --force --name --reference --depth"
3173 ;;
3174 status,--*)
3175 __gitcomp "--cached --recursive"
3176 ;;
3177 deinit,--*)
3178 __gitcomp "--force --all"
3179 ;;
3180 update,--*)
3181 __gitcomp "
3182 --init --remote --no-fetch
3183 --recommend-shallow --no-recommend-shallow
3184 --force --rebase --merge --reference --depth --recursive --jobs
3185 "
3186 ;;
b57e8119
DL
3187 set-branch,--*)
3188 __gitcomp "--default --branch"
3189 ;;
65d5a1e0
CW
3190 summary,--*)
3191 __gitcomp "--cached --files --summary-limit"
3192 ;;
3193 foreach,--*|sync,--*)
3194 __gitcomp "--recursive"
3195 ;;
3196 *)
3197 ;;
3198 esac
be86f7a0
SP
3199}
3200
47f6ee28
SG
3201_git_svn ()
3202{
3203 local subcommands="
3204 init fetch clone rebase dcommit log find-rev
3205 set-tree commit-diff info create-ignore propget
4a5856cb 3206 proplist show-ignore show-externals branch tag blame
c18d5d82 3207 migrate mkdirs reset gc
47f6ee28 3208 "
918c03c2 3209 local subcommand="$(__git_find_on_cmdline "$subcommands")"
47f6ee28
SG
3210 if [ -z "$subcommand" ]; then
3211 __gitcomp "$subcommands"
3212 else
3213 local remote_opts="--username= --config-dir= --no-auth-cache"
3214 local fc_opts="
3215 --follow-parent --authors-file= --repack=
3216 --no-metadata --use-svm-props --use-svnsync-props
3217 --log-window-size= --no-checkout --quiet
4a5856cb 3218 --repack-flags --use-log-author --localtime
2cbad176 3219 --add-author-from
1f9247a3 3220 --recursive
a7b10230 3221 --ignore-paths= --include-paths= $remote_opts
47f6ee28
SG
3222 "
3223 local init_opts="
3224 --template= --shared= --trunk= --tags=
3225 --branches= --stdlayout --minimize-url
3226 --no-metadata --use-svm-props --use-svnsync-props
2cbad176 3227 --rewrite-root= --prefix= $remote_opts
47f6ee28
SG
3228 "
3229 local cmt_opts="
3230 --edit --rmdir --find-copies-harder --copy-similarity=
3231 "
3232
47f6ee28
SG
3233 case "$subcommand,$cur" in
3234 fetch,--*)
3235 __gitcomp "--revision= --fetch-all $fc_opts"
3236 ;;
3237 clone,--*)
3238 __gitcomp "--revision= $fc_opts $init_opts"
3239 ;;
3240 init,--*)
3241 __gitcomp "$init_opts"
3242 ;;
3243 dcommit,--*)
3244 __gitcomp "
3245 --merge --strategy= --verbose --dry-run
4a5856cb 3246 --fetch-all --no-rebase --commit-url
7b151f49 3247 --revision --interactive $cmt_opts $fc_opts
47f6ee28
SG
3248 "
3249 ;;
3250 set-tree,--*)
3251 __gitcomp "--stdin $cmt_opts $fc_opts"
3252 ;;
3253 create-ignore,--*|propget,--*|proplist,--*|show-ignore,--*|\
c18d5d82 3254 show-externals,--*|mkdirs,--*)
47f6ee28
SG
3255 __gitcomp "--revision="
3256 ;;
3257 log,--*)
3258 __gitcomp "
3259 --limit= --revision= --verbose --incremental
3260 --oneline --show-commit --non-recursive
4a5856cb 3261 --authors-file= --color
47f6ee28
SG
3262 "
3263 ;;
3264 rebase,--*)
3265 __gitcomp "
3266 --merge --verbose --strategy= --local
4a5856cb 3267 --fetch-all --dry-run $fc_opts
47f6ee28
SG
3268 "
3269 ;;
3270 commit-diff,--*)
3271 __gitcomp "--message= --file= --revision= $cmt_opts"
3272 ;;
3273 info,--*)
3274 __gitcomp "--url"
3275 ;;
4a5856cb
SG
3276 branch,--*)
3277 __gitcomp "--dry-run --message --tag"
3278 ;;
3279 tag,--*)
3280 __gitcomp "--dry-run --message"
3281 ;;
3282 blame,--*)
3283 __gitcomp "--git-format"
3284 ;;
3285 migrate,--*)
3286 __gitcomp "
3287 --config-dir= --ignore-paths= --minimize
3288 --no-auth-cache --username=
3289 "
3290 ;;
c18d5d82
RZ
3291 reset,--*)
3292 __gitcomp "--revision= --parent"
3293 ;;
47f6ee28 3294 *)
47f6ee28
SG
3295 ;;
3296 esac
3297 fi
3298}
3299
88e21dc7
SP
3300_git_tag ()
3301{
59d85a2a 3302 local i c="$__git_cmd_idx" f=0
da48616f
PD
3303 while [ $c -lt $cword ]; do
3304 i="${words[c]}"
88e21dc7 3305 case "$i" in
1775e990 3306 -d|--delete|-v|--verify)
227307a6 3307 __gitcomp_direct "$(__git_tags "" "$cur" " ")"
88e21dc7
SP
3308 return
3309 ;;
3310 -f)
3311 f=1
3312 ;;
3313 esac
6e8c755f 3314 ((c++))
88e21dc7
SP
3315 done
3316
da48616f 3317 case "$prev" in
88e21dc7 3318 -m|-F)
88e21dc7 3319 ;;
8d8163f3 3320 -*|tag)
88e21dc7 3321 if [ $f = 1 ]; then
227307a6 3322 __gitcomp_direct "$(__git_tags "" "$cur" " ")"
88e21dc7
SP
3323 fi
3324 ;;
3325 *)
15b4a163 3326 __git_complete_refs
88e21dc7
SP
3327 ;;
3328 esac
85ed2f32
RT
3329
3330 case "$cur" in
3331 --*)
80eb5197 3332 __gitcomp_builtin tag
85ed2f32
RT
3333 ;;
3334 esac
88e21dc7
SP
3335}
3336
424cce83
SG
3337_git_whatchanged ()
3338{
3339 _git_log
3340}
3341
3027e4f9
SG
3342__git_complete_worktree_paths ()
3343{
3344 local IFS=$'\n'
f2acf763
SI
3345 # Generate completion reply from worktree list skipping the first
3346 # entry: it's the path of the main worktree, which can't be moved,
3347 # removed, locked, etc.
3027e4f9 3348 __gitcomp_nl "$(git worktree list --porcelain |
3027e4f9
SG
3349 sed -n -e '2,$ s/^worktree //p')"
3350}
3351
b462c024
NTND
3352_git_worktree ()
3353{
cc73385c 3354 local subcommands="add list lock move prune remove unlock"
59d85a2a 3355 local subcommand subcommand_idx
3027e4f9 3356
59d85a2a
DL
3357 subcommand="$(__git_find_on_cmdline --show-idx "$subcommands")"
3358 subcommand_idx="${subcommand% *}"
3359 subcommand="${subcommand#* }"
3c86f6cd
SG
3360
3361 case "$subcommand,$cur" in
3362 ,*)
b462c024 3363 __gitcomp "$subcommands"
3c86f6cd
SG
3364 ;;
3365 *,--*)
3366 __gitcomp_builtin worktree_$subcommand
3367 ;;
7d5ecd77
SG
3368 add,*) # usage: git worktree add [<options>] <path> [<commit-ish>]
3369 # Here we are not completing an --option, it's either the
3370 # path or a ref.
3371 case "$prev" in
3372 -b|-B) # Complete refs for branch to be created/reseted.
3373 __git_complete_refs
b462c024 3374 ;;
7d5ecd77
SG
3375 -*) # The previous word is an -o|--option without an
3376 # unstuck argument: have to complete the path for
3377 # the new worktree, so don't list anything, but let
3378 # Bash fall back to filename completion.
cc73385c 3379 ;;
7d5ecd77
SG
3380 *) # The previous word is not an --option, so it must
3381 # be either the 'add' subcommand, the unstuck
3382 # argument of an option (e.g. branch for -b|-B), or
3383 # the path for the new worktree.
59d85a2a 3384 if [ $cword -eq $((subcommand_idx+1)) ]; then
7d5ecd77
SG
3385 # Right after the 'add' subcommand: have to
3386 # complete the path, so fall back to Bash
3387 # filename completion.
3388 :
3389 else
3390 case "${words[cword-2]}" in
3391 -b|-B) # After '-b <branch>': have to
3392 # complete the path, so fall back
3393 # to Bash filename completion.
3394 ;;
3395 *) # After the path: have to complete
3396 # the ref to be checked out.
3397 __git_complete_refs
3398 ;;
3399 esac
3400 fi
b462c024
NTND
3401 ;;
3402 esac
7d5ecd77 3403 ;;
3027e4f9
SG
3404 lock,*|remove,*|unlock,*)
3405 __git_complete_worktree_paths
3406 ;;
3407 move,*)
59d85a2a 3408 if [ $cword -eq $((subcommand_idx+1)) ]; then
3027e4f9
SG
3409 # The first parameter must be an existing working
3410 # tree to be moved.
3411 __git_complete_worktree_paths
3412 else
3413 # The second parameter is the destination: it could
3414 # be any path, so don't list anything, but let Bash
3415 # fall back to filename completion.
3416 :
3417 fi
3418 ;;
3c86f6cd 3419 esac
b462c024
NTND
3420}
3421
9f642a71
NTND
3422__git_complete_common () {
3423 local command="$1"
3424
3425 case "$cur" in
3426 --*)
3427 __gitcomp_builtin "$command"
3428 ;;
3429 esac
3430}
3431
3432__git_cmds_with_parseopt_helper=
3433__git_support_parseopt_helper () {
3434 test -n "$__git_cmds_with_parseopt_helper" ||
0089521c 3435 __git_cmds_with_parseopt_helper="$(__git --list-cmds=parseopt)"
9f642a71
NTND
3436
3437 case " $__git_cmds_with_parseopt_helper " in
3438 *" $1 "*)
3439 return 0
3440 ;;
3441 *)
3442 return 1
3443 ;;
3444 esac
3445}
3446
7f94b78d 3447__git_have_func () {
810df0ea 3448 declare -f -- "$1" >/dev/null 2>&1
7f94b78d
FC
3449}
3450
48e1c69a
NTND
3451__git_complete_command () {
3452 local command="$1"
3453 local completion_func="_git_${command//-/_}"
7f94b78d
FC
3454 if ! __git_have_func $completion_func &&
3455 __git_have_func _completion_loader
fb3a0cab
JH
3456 then
3457 _completion_loader "git-$command"
3458 fi
7f94b78d 3459 if __git_have_func $completion_func
fb3a0cab 3460 then
48e1c69a
NTND
3461 $completion_func
3462 return 0
fb3a0cab
JH
3463 elif __git_support_parseopt_helper "$command"
3464 then
9f642a71
NTND
3465 __git_complete_common "$command"
3466 return 0
48e1c69a
NTND
3467 else
3468 return 1
3469 fi
3470}
3471
93b291e0 3472__git_main ()
690d8824 3473{
beb6ee71 3474 local i c=1 command __git_dir __git_repo_path
80ac0744 3475 local __git_C_args C_args_count=0
87e62975 3476 local __git_cmd_idx
873537fa 3477
da48616f
PD
3478 while [ $c -lt $cword ]; do
3479 i="${words[c]}"
873537fa 3480 case "$i" in
8c8c8c0e
DL
3481 --git-dir=*)
3482 __git_dir="${i#--git-dir=}"
3483 ;;
3484 --git-dir)
3485 ((c++))
3486 __git_dir="${words[c]}"
3487 ;;
3488 --bare)
3489 __git_dir="."
3490 ;;
3491 --help)
3492 command="help"
3493 break
3494 ;;
3495 -c|--work-tree|--namespace)
3496 ((c++))
3497 ;;
3498 -C)
3499 __git_C_args[C_args_count++]=-C
80ac0744
SG
3500 ((c++))
3501 __git_C_args[C_args_count++]="${words[c]}"
3502 ;;
8c8c8c0e
DL
3503 -*)
3504 ;;
3505 *)
3506 command="$i"
87e62975 3507 __git_cmd_idx="$c"
8c8c8c0e
DL
3508 break
3509 ;;
873537fa 3510 esac
6e8c755f 3511 ((c++))
873537fa
SP
3512 done
3513
c2dbcd20 3514 if [ -z "${command-}" ]; then
7b329b9d
SG
3515 case "$prev" in
3516 --git-dir|-C|--work-tree)
3517 # these need a path argument, let's fall back to
3518 # Bash filename completion
3519 return
3520 ;;
e1e00089
SG
3521 -c)
3522 __git_complete_config_variable_name_and_value
3523 return
3524 ;;
3525 --namespace)
7b329b9d
SG
3526 # we don't support completing these options' arguments
3527 return
3528 ;;
3529 esac
da48616f 3530 case "$cur" in
8c8c8c0e
DL
3531 --*)
3532 __gitcomp "
ce5a2c95 3533 --paginate
47e98eec
SP
3534 --no-pager
3535 --git-dir=
3536 --bare
3537 --version
3538 --exec-path
3ffcd086 3539 --exec-path=
89a56bfb 3540 --html-path
66fb37d0 3541 --man-path
69ef3c02 3542 --info-path
ce5a2c95 3543 --work-tree=
a1bea2c1 3544 --namespace=
69ef3c02 3545 --no-replace-objects
ce5a2c95 3546 --help
47e98eec
SP
3547 "
3548 ;;
3301d36b 3549 *)
c2dbcd20 3550 if test -n "${GIT_TESTING_PORCELAIN_COMMAND_LIST-}"
3301d36b
NTND
3551 then
3552 __gitcomp "$GIT_TESTING_PORCELAIN_COMMAND_LIST"
3553 else
d9f88dd8
ÆAB
3554 local list_cmds=list-mainporcelain,others,nohelpers,alias,list-complete,config
3555
3556 if test "${GIT_COMPLETION_SHOW_ALL_COMMANDS-}" = "1"
3557 then
3558 list_cmds=builtins,$list_cmds
3559 fi
3560 __gitcomp "$(__git --list-cmds=$list_cmds)"
3301d36b
NTND
3561 fi
3562 ;;
72e5e989
SP
3563 esac
3564 return
873537fa 3565 fi
367dce2a 3566
48e1c69a 3567 __git_complete_command "$command" && return
8024ea60 3568
873537fa 3569 local expansion=$(__git_aliased_command "$command")
8024ea60 3570 if [ -n "$expansion" ]; then
880111c1 3571 words[1]=$expansion
48e1c69a 3572 __git_complete_command "$expansion"
8024ea60 3573 fi
690d8824
JH
3574}
3575
93b291e0 3576__gitk_main ()
690d8824 3577{
d773c631
SG
3578 __git_has_doubledash && return
3579
beb6ee71 3580 local __git_repo_path
fad9484f
SG
3581 __git_find_repo_path
3582
07ba53f7 3583 local merge=""
fad9484f 3584 if [ -f "$__git_repo_path/MERGE_HEAD" ]; then
07ba53f7
RQ
3585 merge="--merge"
3586 fi
b3391775
SP
3587 case "$cur" in
3588 --*)
a393777e
TR
3589 __gitcomp "
3590 $__git_log_common_options
3591 $__git_log_gitk_options
3592 $merge
3593 "
b3391775
SP
3594 return
3595 ;;
3596 esac
ec804891 3597 __git_complete_revlist
690d8824
JH
3598}
3599
162f1a56
FC
3600if [[ -n ${ZSH_VERSION-} && -z ${GIT_SOURCING_ZSH_COMPLETION-} ]]; then
3601 echo "ERROR: this script is obsolete, please see git-completion.zsh" 1>&2
d8b45314
FC
3602 return
3603fi
3604
3605__git_func_wrap ()
3606{
6b179adf 3607 local cur words cword prev
cea23219 3608 local __git_cmd_idx=0
6b179adf
FC
3609 _get_comp_words_by_ref -n =: cur words cword prev
3610 $1
3611}
3612
5a067ba9 3613___git_complete ()
6b179adf
FC
3614{
3615 local wrapper="__git_wrap${2}"
3616 eval "$wrapper () { __git_func_wrap $2 ; }"
3617 complete -o bashdefault -o default -o nospace -F $wrapper $1 2>/dev/null \
3618 || complete -o default -o nospace -F $wrapper $1
3619}
3620
5a067ba9
FC
3621# Setup the completion for git commands
3622# 1: command or alias
3623# 2: function to call (e.g. `git`, `gitk`, `git_fetch`)
3624__git_complete ()
3625{
3626 local func
3627
3628 if __git_have_func $2; then
3629 func=$2
3630 elif __git_have_func __$2_main; then
3631 func=__$2_main
3632 elif __git_have_func _$2; then
3633 func=_$2
3634 else
3635 echo "ERROR: could not find function '$2'" 1>&2
3636 return 1
3637 fi
3638 ___git_complete $1 $func
3639}
3640
3641___git_complete git __git_main
3642___git_complete gitk __gitk_main
690d8824
JH
3643
3644# The following are necessary only for Cygwin, and only are needed
3645# when the user has tab-completed the executable name and consequently
3646# included the '.exe' suffix.
3647#
8030684b 3648if [ "$OSTYPE" = cygwin ]; then
5a067ba9 3649 ___git_complete git.exe __git_main
76c3eb51 3650fi