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