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