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