]> git.ipfire.org Git - thirdparty/git.git/blame - contrib/completion/git-completion.bash
Documentation: mention 'git stash pop --index' option explicitly
[thirdparty/git.git] / contrib / completion / git-completion.bash
CommitLineData
a42577d4 1#!bash
690d8824
JH
2#
3# bash completion support for core Git.
4#
c70680ce 5# Copyright (C) 2006,2007 Shawn O. Pearce <spearce@spearce.org>
690d8824 6# Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/).
c70680ce 7# Distributed under the GNU General Public License, version 2.0.
690d8824
JH
8#
9# The contained completion routines provide support for completing:
10#
11# *) local and remote branch names
12# *) local and remote tag names
13# *) .git/remotes file names
14# *) git 'subcommands'
15# *) tree paths within 'ref:path/to/file' expressions
c70680ce 16# *) common --long-options
690d8824
JH
17#
18# To use these routines:
19#
20# 1) Copy this file to somewhere (e.g. ~/.git-completion.sh).
21# 2) Added the following line to your .bashrc:
22# source ~/.git-completion.sh
23#
b51ec6bd
SP
24# 3) You may want to make sure the git executable is available
25# in your PATH before this script is sourced, as some caching
26# is performed while the script loads. If git isn't found
27# at source time then all lookups will be done on demand,
28# which may be slightly slower.
29#
30# 4) Consider changing your PS1 to also show the current branch:
d3d717a4
SP
31# PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ '
32#
33# The argument to __git_ps1 will be displayed only if you
34# are currently in a git repository. The %s token will be
35# the name of the current branch.
36#
a9ee90d7
TP
37# In addition, if you set GIT_PS1_SHOWDIRTYSTATE to a nonempty
38# value, unstaged (*) and staged (+) changes will be shown next
39# to the branch name. You can configure this per-repository
40# with the bash.showDirtyState variable, which defaults to true
41# once GIT_PS1_SHOWDIRTYSTATE is enabled.
738a94a9 42#
2414b45c
DT
43# You can also see if currently something is stashed, by setting
44# GIT_PS1_SHOWSTASHSTATE to a nonempty value. If something is stashed,
45# then a '$' will be shown next to the branch name.
46#
c70680ce
SP
47# To submit patches:
48#
49# *) Read Documentation/SubmittingPatches
50# *) Send all patches to the current maintainer:
51#
52# "Shawn O. Pearce" <spearce@spearce.org>
53#
54# *) Always CC the Git mailing list:
55#
56# git@vger.kernel.org
57#
690d8824 58
db8a9ff0
SP
59case "$COMP_WORDBREAKS" in
60*:*) : great ;;
61*) COMP_WORDBREAKS="$COMP_WORDBREAKS:"
62esac
63
a42577d4
TP
64# __gitdir accepts 0 or 1 arguments (i.e., location)
65# returns location of .git repo
873537fa
SP
66__gitdir ()
67{
25a31f81 68 if [ -z "${1-}" ]; then
5c9cc64a 69 if [ -n "${__git_dir-}" ]; then
67ffa114
SP
70 echo "$__git_dir"
71 elif [ -d .git ]; then
72 echo .git
73 else
74 git rev-parse --git-dir 2>/dev/null
75 fi
76 elif [ -d "$1/.git" ]; then
77 echo "$1/.git"
78 else
79 echo "$1"
80 fi
873537fa
SP
81}
82
a42577d4
TP
83# __git_ps1 accepts 0 or 1 arguments (i.e., format string)
84# returns text to add to bash PS1 prompt (includes branch name)
d3d717a4
SP
85__git_ps1 ()
86{
fa26a401 87 local g="$(__gitdir)"
e7520196
RR
88 if [ -n "$g" ]; then
89 local r
90 local b
d7107ca6 91 if [ -f "$g/rebase-merge/interactive" ]; then
e7520196 92 r="|REBASE-i"
28ed6e7b 93 b="$(cat "$g/rebase-merge/head-name")"
ad244d25 94 elif [ -d "$g/rebase-merge" ]; then
e7520196 95 r="|REBASE-m"
28ed6e7b 96 b="$(cat "$g/rebase-merge/head-name")"
e7520196 97 else
d7107ca6
JH
98 if [ -d "$g/rebase-apply" ]; then
99 if [ -f "$g/rebase-apply/rebasing" ]; then
100 r="|REBASE"
101 elif [ -f "$g/rebase-apply/applying" ]; then
102 r="|AM"
103 else
104 r="|AM/REBASE"
105 fi
106 elif [ -f "$g/MERGE_HEAD" ]; then
8763dbb1 107 r="|MERGING"
d7107ca6 108 elif [ -f "$g/BISECT_LOG" ]; then
e7520196
RR
109 r="|BISECTING"
110 fi
ff790b6a
JH
111
112 b="$(git symbolic-ref HEAD 2>/dev/null)" || {
dd42c2f0
JH
113
114 b="$(
115 case "${GIT_PS1_DESCRIBE_STYLE-}" in
116 (contains)
117 git describe --contains HEAD ;;
118 (branch)
119 git describe --contains --all HEAD ;;
120 (describe)
121 git describe HEAD ;;
122 (* | default)
123 git describe --exact-match HEAD ;;
124 esac 2>/dev/null)" ||
125
ff790b6a
JH
126 b="$(cut -c1-7 "$g/HEAD" 2>/dev/null)..." ||
127 b="unknown"
ff790b6a
JH
128 b="($b)"
129 }
e7520196
RR
130 fi
131
738a94a9
TR
132 local w
133 local i
2414b45c 134 local s
ddb6d010 135 local c
738a94a9 136
e5dd864a 137 if [ "true" = "$(git rev-parse --is-inside-git-dir 2>/dev/null)" ]; then
8dfb17e1 138 if [ "true" = "$(git rev-parse --is-bare-repository 2>/dev/null)" ]; then
ddb6d010
MSO
139 c="BARE:"
140 else
141 b="GIT_DIR!"
142 fi
e5dd864a
TP
143 elif [ "true" = "$(git rev-parse --is-inside-work-tree 2>/dev/null)" ]; then
144 if [ -n "${GIT_PS1_SHOWDIRTYSTATE-}" ]; then
145 if [ "$(git config --bool bash.showDirtyState)" != "false" ]; then
146 git diff --no-ext-diff --ignore-submodules \
147 --quiet --exit-code || w="*"
148 if git rev-parse --quiet --verify HEAD >/dev/null; then
149 git diff-index --cached --quiet \
150 --ignore-submodules HEAD -- || i="+"
151 else
152 i="#"
153 fi
738a94a9
TR
154 fi
155 fi
2414b45c
DT
156 if [ -n "${GIT_PS1_SHOWSTASHSTATE-}" ]; then
157 git rev-parse --verify refs/stash >/dev/null 2>&1 && s="$"
158 fi
738a94a9
TR
159 fi
160
ee6b7114 161 if [ -n "${1-}" ]; then
2414b45c 162 printf "$1" "$c${b##refs/heads/}$w$i$s$r"
ee6b7114 163 else
2414b45c 164 printf " (%s)" "$c${b##refs/heads/}$w$i$s$r"
d3d717a4
SP
165 fi
166 fi
167}
168
a42577d4 169# __gitcomp_1 requires 2 arguments
ab02dfe5
SP
170__gitcomp_1 ()
171{
172 local c IFS=' '$'\t'$'\n'
173 for c in $1; do
174 case "$c$2" in
175 --*=*) printf %s$'\n' "$c$2" ;;
176 *.) printf %s$'\n' "$c$2" ;;
177 *) printf %s$'\n' "$c$2 " ;;
178 esac
179 done
180}
181
a42577d4
TP
182# __gitcomp accepts 1, 2, 3, or 4 arguments
183# generates completion reply with compgen
72e5e989
SP
184__gitcomp ()
185{
78d4d6a2 186 local cur="${COMP_WORDS[COMP_CWORD]}"
b3391775 187 if [ $# -gt 2 ]; then
78d4d6a2
SP
188 cur="$3"
189 fi
5447aac7
SG
190 case "$cur" in
191 --*=)
192 COMPREPLY=()
5447aac7
SG
193 ;;
194 *)
ab02dfe5 195 local IFS=$'\n'
25a31f81
TP
196 COMPREPLY=($(compgen -P "${2-}" \
197 -W "$(__gitcomp_1 "${1-}" "${4-}")" \
ab02dfe5 198 -- "$cur"))
5447aac7
SG
199 ;;
200 esac
72e5e989
SP
201}
202
a42577d4 203# __git_heads accepts 0 or 1 arguments (to pass to __gitdir)
5de40f59
SP
204__git_heads ()
205{
25a31f81 206 local cmd i is_hash=y dir="$(__gitdir "${1-}")"
5de40f59 207 if [ -d "$dir" ]; then
05e8b3d6
SG
208 git --git-dir="$dir" for-each-ref --format='%(refname:short)' \
209 refs/heads
5de40f59
SP
210 return
211 fi
25a31f81 212 for i in $(git ls-remote "${1-}" 2>/dev/null); do
5de40f59
SP
213 case "$is_hash,$i" in
214 y,*) is_hash=n ;;
215 n,*^{}) is_hash=y ;;
216 n,refs/heads/*) is_hash=y; echo "${i#refs/heads/}" ;;
217 n,*) is_hash=y; echo "$i" ;;
218 esac
219 done
220}
221
a42577d4 222# __git_tags accepts 0 or 1 arguments (to pass to __gitdir)
88e21dc7
SP
223__git_tags ()
224{
25a31f81 225 local cmd i is_hash=y dir="$(__gitdir "${1-}")"
88e21dc7 226 if [ -d "$dir" ]; then
05e8b3d6
SG
227 git --git-dir="$dir" for-each-ref --format='%(refname:short)' \
228 refs/tags
88e21dc7
SP
229 return
230 fi
25a31f81 231 for i in $(git ls-remote "${1-}" 2>/dev/null); do
88e21dc7
SP
232 case "$is_hash,$i" in
233 y,*) is_hash=n ;;
234 n,*^{}) is_hash=y ;;
235 n,refs/tags/*) is_hash=y; echo "${i#refs/tags/}" ;;
236 n,*) is_hash=y; echo "$i" ;;
237 esac
238 done
239}
240
a42577d4 241# __git_refs accepts 0 or 1 arguments (to pass to __gitdir)
690d8824
JH
242__git_refs ()
243{
25a31f81 244 local i is_hash=y dir="$(__gitdir "${1-}")"
608efb87 245 local cur="${COMP_WORDS[COMP_CWORD]}" format refs
873537fa 246 if [ -d "$dir" ]; then
608efb87
SG
247 case "$cur" in
248 refs|refs/*)
249 format="refname"
250 refs="${cur%/*}"
251 ;;
252 *)
253 if [ -e "$dir/HEAD" ]; then echo HEAD; fi
254 format="refname:short"
255 refs="refs/tags refs/heads refs/remotes"
256 ;;
257 esac
258 git --git-dir="$dir" for-each-ref --format="%($format)" \
259 $refs
35e65ecc 260 return
690d8824 261 fi
799596a5 262 for i in $(git ls-remote "$dir" 2>/dev/null); do
690d8824
JH
263 case "$is_hash,$i" in
264 y,*) is_hash=n ;;
265 n,*^{}) is_hash=y ;;
266 n,refs/tags/*) is_hash=y; echo "${i#refs/tags/}" ;;
267 n,refs/heads/*) is_hash=y; echo "${i#refs/heads/}" ;;
35e65ecc 268 n,refs/remotes/*) is_hash=y; echo "${i#refs/remotes/}" ;;
690d8824
JH
269 n,*) is_hash=y; echo "$i" ;;
270 esac
271 done
272}
273
a42577d4 274# __git_refs2 requires 1 argument (to pass to __git_refs)
690d8824
JH
275__git_refs2 ()
276{
67ffa114
SP
277 local i
278 for i in $(__git_refs "$1"); do
279 echo "$i:$i"
690d8824
JH
280 done
281}
282
a42577d4 283# __git_refs_remotes requires 1 argument (to pass to ls-remote)
5de40f59
SP
284__git_refs_remotes ()
285{
286 local cmd i is_hash=y
799596a5 287 for i in $(git ls-remote "$1" 2>/dev/null); do
5de40f59
SP
288 case "$is_hash,$i" in
289 n,refs/heads/*)
290 is_hash=y
291 echo "$i:refs/remotes/$1/${i#refs/heads/}"
292 ;;
293 y,*) is_hash=n ;;
294 n,*^{}) is_hash=y ;;
295 n,refs/tags/*) is_hash=y;;
296 n,*) is_hash=y; ;;
297 esac
298 done
299}
300
690d8824
JH
301__git_remotes ()
302{
873537fa 303 local i ngoff IFS=$'\n' d="$(__gitdir)"
56fc25f2 304 shopt -q nullglob || ngoff=1
690d8824 305 shopt -s nullglob
873537fa
SP
306 for i in "$d/remotes"/*; do
307 echo ${i#$d/remotes/}
690d8824 308 done
56fc25f2 309 [ "$ngoff" ] && shopt -u nullglob
e0d10e1c 310 for i in $(git --git-dir="$d" config --list); do
56fc25f2
SP
311 case "$i" in
312 remote.*.url=*)
313 i="${i#remote.}"
314 echo "${i/.url=*/}"
315 ;;
316 esac
317 done
690d8824
JH
318}
319
4ad91321
SP
320__git_merge_strategies ()
321{
5c9cc64a 322 if [ -n "${__git_merge_strategylist-}" ]; then
b51ec6bd
SP
323 echo "$__git_merge_strategylist"
324 return
325 fi
25b3d4d6
JH
326 git merge -s help 2>&1 |
327 sed -n -e '/[Aa]vailable strategies are: /,/^$/{
328 s/\.$//
329 s/.*://
330 s/^[ ]*//
331 s/[ ]*$//
4ad91321 332 p
25b3d4d6 333 }'
4ad91321 334}
b51ec6bd 335__git_merge_strategylist=
25b3d4d6 336__git_merge_strategylist=$(__git_merge_strategies 2>/dev/null)
4ad91321 337
690d8824
JH
338__git_complete_file ()
339{
a79c6551 340 local pfx ls ref cur="${COMP_WORDS[COMP_CWORD]}"
690d8824
JH
341 case "$cur" in
342 ?*:*)
a79c6551
SP
343 ref="${cur%%:*}"
344 cur="${cur#*:}"
690d8824
JH
345 case "$cur" in
346 ?*/*)
a79c6551
SP
347 pfx="${cur%/*}"
348 cur="${cur##*/}"
690d8824
JH
349 ls="$ref:$pfx"
350 pfx="$pfx/"
351 ;;
352 *)
353 ls="$ref"
354 ;;
355 esac
db8a9ff0
SP
356
357 case "$COMP_WORDBREAKS" in
358 *:*) : great ;;
359 *) pfx="$ref:$pfx" ;;
360 esac
361
778306e4 362 local IFS=$'\n'
690d8824 363 COMPREPLY=($(compgen -P "$pfx" \
873537fa 364 -W "$(git --git-dir="$(__gitdir)" ls-tree "$ls" \
778306e4
SP
365 | sed '/^100... blob /{
366 s,^.* ,,
367 s,$, ,
368 }
369 /^120000 blob /{
370 s,^.* ,,
371 s,$, ,
372 }
690d8824
JH
373 /^040000 tree /{
374 s,^.* ,,
375 s,$,/,
376 }
377 s/^.* //')" \
378 -- "$cur"))
379 ;;
380 *)
b3391775 381 __gitcomp "$(__git_refs)"
690d8824
JH
382 ;;
383 esac
384}
385
f53352fb
SP
386__git_complete_revlist ()
387{
388 local pfx cur="${COMP_WORDS[COMP_CWORD]}"
389 case "$cur" in
390 *...*)
391 pfx="${cur%...*}..."
392 cur="${cur#*...}"
b3391775 393 __gitcomp "$(__git_refs)" "$pfx" "$cur"
f53352fb
SP
394 ;;
395 *..*)
396 pfx="${cur%..*}.."
397 cur="${cur#*..}"
b3391775
SP
398 __gitcomp "$(__git_refs)" "$pfx" "$cur"
399 ;;
f53352fb 400 *)
b3391775 401 __gitcomp "$(__git_refs)"
f53352fb
SP
402 ;;
403 esac
404}
405
52d5c3b5
JS
406__git_complete_remote_or_refspec ()
407{
408 local cmd="${COMP_WORDS[1]}"
409 local cur="${COMP_WORDS[COMP_CWORD]}"
0a4e1472 410 local i c=2 remote="" pfx="" lhs=1 no_complete_refspec=0
52d5c3b5
JS
411 while [ $c -lt $COMP_CWORD ]; do
412 i="${COMP_WORDS[c]}"
413 case "$i" in
0a4e1472 414 --all|--mirror) [ "$cmd" = "push" ] && no_complete_refspec=1 ;;
52d5c3b5
JS
415 -*) ;;
416 *) remote="$i"; break ;;
417 esac
418 c=$((++c))
419 done
420 if [ -z "$remote" ]; then
421 __gitcomp "$(__git_remotes)"
422 return
423 fi
0a4e1472
JS
424 if [ $no_complete_refspec = 1 ]; then
425 COMPREPLY=()
426 return
427 fi
52d5c3b5
JS
428 [ "$remote" = "." ] && remote=
429 case "$cur" in
430 *:*)
431 case "$COMP_WORDBREAKS" in
432 *:*) : great ;;
433 *) pfx="${cur%%:*}:" ;;
434 esac
435 cur="${cur#*:}"
436 lhs=0
437 ;;
438 +*)
439 pfx="+"
440 cur="${cur#+}"
441 ;;
442 esac
443 case "$cmd" in
444 fetch)
445 if [ $lhs = 1 ]; then
446 __gitcomp "$(__git_refs2 "$remote")" "$pfx" "$cur"
447 else
448 __gitcomp "$(__git_refs)" "$pfx" "$cur"
449 fi
450 ;;
451 pull)
452 if [ $lhs = 1 ]; then
453 __gitcomp "$(__git_refs "$remote")" "$pfx" "$cur"
454 else
455 __gitcomp "$(__git_refs)" "$pfx" "$cur"
456 fi
457 ;;
458 push)
459 if [ $lhs = 1 ]; then
460 __gitcomp "$(__git_refs)" "$pfx" "$cur"
461 else
462 __gitcomp "$(__git_refs "$remote")" "$pfx" "$cur"
463 fi
464 ;;
465 esac
466}
467
3c7b480a
JS
468__git_complete_strategy ()
469{
470 case "${COMP_WORDS[COMP_CWORD-1]}" in
471 -s|--strategy)
472 __gitcomp "$(__git_merge_strategies)"
473 return 0
474 esac
475 local cur="${COMP_WORDS[COMP_CWORD]}"
476 case "$cur" in
477 --strategy=*)
478 __gitcomp "$(__git_merge_strategies)" "" "${cur##--strategy=}"
479 return 0
480 ;;
481 esac
482 return 1
483}
484
1eb7e2f8 485__git_all_commands ()
f2bb9f88 486{
5c9cc64a 487 if [ -n "${__git_all_commandlist-}" ]; then
1eb7e2f8 488 echo "$__git_all_commandlist"
b51ec6bd
SP
489 return
490 fi
f2bb9f88
SP
491 local i IFS=" "$'\n'
492 for i in $(git help -a|egrep '^ ')
1eb7e2f8
LM
493 do
494 case $i in
495 *--*) : helper pattern;;
496 *) echo $i;;
497 esac
498 done
499}
500__git_all_commandlist=
501__git_all_commandlist="$(__git_all_commands 2>/dev/null)"
502
503__git_porcelain_commands ()
504{
5c9cc64a 505 if [ -n "${__git_porcelain_commandlist-}" ]; then
1eb7e2f8
LM
506 echo "$__git_porcelain_commandlist"
507 return
508 fi
509 local i IFS=" "$'\n'
510 for i in "help" $(__git_all_commands)
f2bb9f88
SP
511 do
512 case $i in
718a087a 513 *--*) : helper pattern;;
a925c6f1
SP
514 applymbox) : ask gittus;;
515 applypatch) : ask gittus;;
516 archimport) : import;;
2e3a430a 517 cat-file) : plumbing;;
56d99c67 518 check-attr) : plumbing;;
f2bb9f88 519 check-ref-format) : plumbing;;
ff2549dc 520 checkout-index) : plumbing;;
f2bb9f88 521 commit-tree) : plumbing;;
ff2549dc 522 count-objects) : infrequent;;
a925c6f1
SP
523 cvsexportcommit) : export;;
524 cvsimport) : import;;
f2bb9f88
SP
525 cvsserver) : daemon;;
526 daemon) : daemon;;
5cfb4fe5
SP
527 diff-files) : plumbing;;
528 diff-index) : plumbing;;
529 diff-tree) : plumbing;;
c6ec3b13 530 fast-import) : import;;
ff2549dc 531 fast-export) : export;;
a925c6f1 532 fsck-objects) : plumbing;;
f2bb9f88 533 fetch-pack) : plumbing;;
a925c6f1 534 fmt-merge-msg) : plumbing;;
56d99c67 535 for-each-ref) : plumbing;;
f2bb9f88
SP
536 hash-object) : plumbing;;
537 http-*) : transport;;
538 index-pack) : plumbing;;
a925c6f1 539 init-db) : deprecated;;
f2bb9f88 540 local-fetch) : plumbing;;
ff2549dc
PB
541 lost-found) : infrequent;;
542 ls-files) : plumbing;;
543 ls-remote) : plumbing;;
544 ls-tree) : plumbing;;
f2bb9f88
SP
545 mailinfo) : plumbing;;
546 mailsplit) : plumbing;;
547 merge-*) : plumbing;;
548 mktree) : plumbing;;
549 mktag) : plumbing;;
550 pack-objects) : plumbing;;
551 pack-redundant) : plumbing;;
552 pack-refs) : plumbing;;
553 parse-remote) : plumbing;;
554 patch-id) : plumbing;;
555 peek-remote) : plumbing;;
a925c6f1
SP
556 prune) : plumbing;;
557 prune-packed) : plumbing;;
558 quiltimport) : import;;
f2bb9f88
SP
559 read-tree) : plumbing;;
560 receive-pack) : plumbing;;
2e3a430a 561 reflog) : plumbing;;
5c66d0d4 562 repo-config) : deprecated;;
f2bb9f88
SP
563 rerere) : plumbing;;
564 rev-list) : plumbing;;
565 rev-parse) : plumbing;;
566 runstatus) : plumbing;;
567 sh-setup) : internal;;
568 shell) : daemon;;
ff2549dc 569 show-ref) : plumbing;;
f2bb9f88
SP
570 send-pack) : plumbing;;
571 show-index) : plumbing;;
572 ssh-*) : transport;;
573 stripspace) : plumbing;;
574 symbolic-ref) : plumbing;;
a925c6f1 575 tar-tree) : deprecated;;
f2bb9f88
SP
576 unpack-file) : plumbing;;
577 unpack-objects) : plumbing;;
a925c6f1 578 update-index) : plumbing;;
f2bb9f88
SP
579 update-ref) : plumbing;;
580 update-server-info) : daemon;;
581 upload-archive) : plumbing;;
582 upload-pack) : plumbing;;
583 write-tree) : plumbing;;
ff2549dc
PB
584 var) : infrequent;;
585 verify-pack) : infrequent;;
a925c6f1 586 verify-tag) : plumbing;;
f2bb9f88
SP
587 *) echo $i;;
588 esac
589 done
590}
1eb7e2f8
LM
591__git_porcelain_commandlist=
592__git_porcelain_commandlist="$(__git_porcelain_commands 2>/dev/null)"
f2bb9f88 593
367dce2a
DS
594__git_aliases ()
595{
56fc25f2 596 local i IFS=$'\n'
e0d10e1c 597 for i in $(git --git-dir="$(__gitdir)" config --list); do
56fc25f2
SP
598 case "$i" in
599 alias.*)
600 i="${i#alias.}"
601 echo "${i/=*/}"
602 ;;
603 esac
604 done
367dce2a
DS
605}
606
a42577d4 607# __git_aliased_command requires 1 argument
367dce2a
DS
608__git_aliased_command ()
609{
873537fa 610 local word cmdline=$(git --git-dir="$(__gitdir)" \
e0d10e1c 611 config --get "alias.$1")
367dce2a
DS
612 for word in $cmdline; do
613 if [ "${word##-*}" ]; then
614 echo $word
615 return
616 fi
617 done
618}
619
a42577d4 620# __git_find_subcommand requires 1 argument
3ff1320d
SG
621__git_find_subcommand ()
622{
623 local word subcommand c=1
624
625 while [ $c -lt $COMP_CWORD ]; do
626 word="${COMP_WORDS[c]}"
627 for subcommand in $1; do
628 if [ "$subcommand" = "$word" ]; then
629 echo "$subcommand"
630 return
631 fi
632 done
633 c=$((++c))
634 done
635}
636
d773c631
SG
637__git_has_doubledash ()
638{
639 local c=1
640 while [ $c -lt $COMP_CWORD ]; do
641 if [ "--" = "${COMP_WORDS[c]}" ]; then
642 return 0
643 fi
644 c=$((++c))
645 done
646 return 1
647}
648
7950659d 649__git_whitespacelist="nowarn warn error error-all fix"
88329195
SP
650
651_git_am ()
652{
28ed6e7b 653 local cur="${COMP_WORDS[COMP_CWORD]}" dir="$(__gitdir)"
51ef1daa 654 if [ -d "$dir"/rebase-apply ]; then
a31c00b0 655 __gitcomp "--skip --resolved --abort"
88329195
SP
656 return
657 fi
658 case "$cur" in
659 --whitespace=*)
b3391775 660 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
88329195
SP
661 return
662 ;;
663 --*)
b3391775 664 __gitcomp "
43acdf24
TZ
665 --3way --committer-date-is-author-date --ignore-date
666 --interactive --keep --no-utf8 --signoff --utf8
88329195 667 --whitespace=
b3391775 668 "
88329195
SP
669 return
670 esac
671 COMPREPLY=()
672}
673
674_git_apply ()
675{
676 local cur="${COMP_WORDS[COMP_CWORD]}"
677 case "$cur" in
678 --whitespace=*)
b3391775 679 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
88329195
SP
680 return
681 ;;
682 --*)
b3391775 683 __gitcomp "
88329195
SP
684 --stat --numstat --summary --check --index
685 --cached --index-info --reverse --reject --unidiff-zero
686 --apply --no-add --exclude=
687 --whitespace= --inaccurate-eof --verbose
b3391775 688 "
88329195
SP
689 return
690 esac
691 COMPREPLY=()
692}
693
8435b548
SP
694_git_add ()
695{
d773c631
SG
696 __git_has_doubledash && return
697
8435b548
SP
698 local cur="${COMP_WORDS[COMP_CWORD]}"
699 case "$cur" in
700 --*)
1d284cba
SG
701 __gitcomp "
702 --interactive --refresh --patch --update --dry-run
c9a114b5 703 --ignore-errors --intent-to-add
1d284cba 704 "
8435b548
SP
705 return
706 esac
707 COMPREPLY=()
708}
709
b3191ce2
LM
710_git_archive ()
711{
712 local cur="${COMP_WORDS[COMP_CWORD]}"
713 case "$cur" in
714 --format=*)
715 __gitcomp "$(git archive --list)" "" "${cur##--format=}"
716 return
717 ;;
718 --remote=*)
719 __gitcomp "$(__git_remotes)" "" "${cur##--remote=}"
720 return
721 ;;
722 --*)
723 __gitcomp "
724 --format= --list --verbose
725 --prefix= --remote= --exec=
726 "
727 return
728 ;;
729 esac
730 __git_complete_file
731}
732
b2e69f62
SP
733_git_bisect ()
734{
d773c631
SG
735 __git_has_doubledash && return
736
bf11d461 737 local subcommands="start bad good skip reset visualize replay log run"
3ff1320d
SG
738 local subcommand="$(__git_find_subcommand "$subcommands")"
739 if [ -z "$subcommand" ]; then
740 __gitcomp "$subcommands"
b2e69f62
SP
741 return
742 fi
743
3ff1320d 744 case "$subcommand" in
bf11d461 745 bad|good|reset|skip)
b2e69f62
SP
746 __gitcomp "$(__git_refs)"
747 ;;
748 *)
749 COMPREPLY=()
750 ;;
751 esac
752}
753
690d8824
JH
754_git_branch ()
755{
b9217642
SG
756 local i c=1 only_local_ref="n" has_r="n"
757
758 while [ $c -lt $COMP_CWORD ]; do
759 i="${COMP_WORDS[c]}"
760 case "$i" in
761 -d|-m) only_local_ref="y" ;;
762 -r) has_r="y" ;;
763 esac
764 c=$((++c))
765 done
766
3b376b0c 767 case "${COMP_WORDS[COMP_CWORD]}" in
3b376b0c
SG
768 --*)
769 __gitcomp "
770 --color --no-color --verbose --abbrev= --no-abbrev
50e61025 771 --track --no-track --contains --merged --no-merged
3b376b0c
SG
772 "
773 ;;
b9217642
SG
774 *)
775 if [ $only_local_ref = "y" -a $has_r = "n" ]; then
776 __gitcomp "$(__git_heads)"
777 else
778 __gitcomp "$(__git_refs)"
779 fi
780 ;;
3b376b0c 781 esac
690d8824
JH
782}
783
374a58c9
ML
784_git_bundle ()
785{
8d8163f3
SG
786 local cmd="${COMP_WORDS[2]}"
787 case "$COMP_CWORD" in
788 2)
374a58c9
ML
789 __gitcomp "create list-heads verify unbundle"
790 ;;
8d8163f3 791 3)
374a58c9
ML
792 # looking for a file
793 ;;
794 *)
795 case "$cmd" in
796 create)
797 __git_complete_revlist
798 ;;
799 esac
800 ;;
801 esac
802}
803
690d8824
JH
804_git_checkout ()
805{
c84bb14c
SG
806 __git_has_doubledash && return
807
b3391775 808 __gitcomp "$(__git_refs)"
690d8824
JH
809}
810
d8a9fea5
SP
811_git_cherry ()
812{
813 __gitcomp "$(__git_refs)"
814}
815
1273231e
SP
816_git_cherry_pick ()
817{
818 local cur="${COMP_WORDS[COMP_CWORD]}"
819 case "$cur" in
820 --*)
b3391775 821 __gitcomp "--edit --no-commit"
1273231e
SP
822 ;;
823 *)
b3391775 824 __gitcomp "$(__git_refs)"
1273231e
SP
825 ;;
826 esac
827}
828
4181c7e8
LM
829_git_clean ()
830{
831 __git_has_doubledash && return
832
833 local cur="${COMP_WORDS[COMP_CWORD]}"
834 case "$cur" in
835 --*)
836 __gitcomp "--dry-run --quiet"
837 return
838 ;;
839 esac
840 COMPREPLY=()
841}
842
3eb11012
LM
843_git_clone ()
844{
845 local cur="${COMP_WORDS[COMP_CWORD]}"
846 case "$cur" in
847 --*)
848 __gitcomp "
849 --local
850 --no-hardlinks
851 --shared
852 --reference
853 --quiet
854 --no-checkout
855 --bare
856 --mirror
857 --origin
858 --upload-pack
859 --template=
860 --depth
861 "
862 return
863 ;;
864 esac
865 COMPREPLY=()
866}
867
4548e855
SP
868_git_commit ()
869{
d773c631
SG
870 __git_has_doubledash && return
871
4548e855
SP
872 local cur="${COMP_WORDS[COMP_CWORD]}"
873 case "$cur" in
874 --*)
b3391775 875 __gitcomp "
4548e855 876 --all --author= --signoff --verify --no-verify
aa5735be 877 --edit --amend --include --only --interactive
b3391775 878 "
4548e855
SP
879 return
880 esac
881 COMPREPLY=()
882}
883
217926c0
SP
884_git_describe ()
885{
cbb504c9
TR
886 local cur="${COMP_WORDS[COMP_CWORD]}"
887 case "$cur" in
888 --*)
889 __gitcomp "
890 --all --tags --contains --abbrev= --candidates=
891 --exact-match --debug --long --match --always
892 "
893 return
894 esac
217926c0
SP
895 __gitcomp "$(__git_refs)"
896}
897
20bf7292 898__git_diff_common_options="--stat --numstat --shortstat --summary
b3a4f858
JS
899 --patch-with-stat --name-only --name-status --color
900 --no-color --color-words --no-renames --check
f135aacb 901 --full-index --binary --abbrev --diff-filter=
47d5a8fa 902 --find-copies-harder
b3a4f858
JS
903 --text --ignore-space-at-eol --ignore-space-change
904 --ignore-all-space --exit-code --quiet --ext-diff
aba201c6
PO
905 --no-ext-diff
906 --no-prefix --src-prefix= --dst-prefix=
6d0e674a 907 --inter-hunk-context=
cc545709 908 --patience
20bf7292
TR
909 --raw
910"
911
912_git_diff ()
913{
914 __git_has_doubledash && return
915
916 local cur="${COMP_WORDS[COMP_CWORD]}"
917 case "$cur" in
918 --*)
ebd15bf0 919 __gitcomp "--cached --staged --pickaxe-all --pickaxe-regex
20bf7292
TR
920 --base --ours --theirs
921 $__git_diff_common_options
aba201c6 922 "
b3a4f858
JS
923 return
924 ;;
925 esac
690d8824
JH
926 __git_complete_file
927}
928
e2dc2de9
DA
929__git_mergetools_common="diffuse ecmerge emerge kdiff3 meld opendiff
930 tkdiff vimdiff gvimdiff xxdiff
931"
932
933_git_difftool ()
934{
935 local cur="${COMP_WORDS[COMP_CWORD]}"
936 case "$cur" in
937 --tool=*)
938 __gitcomp "$__git_mergetools_common kompare" "" "${cur##--tool=}"
939 return
940 ;;
941 --*)
942 __gitcomp "--tool="
943 return
944 ;;
945 esac
946 COMPREPLY=()
947}
948
0a4e1472
JS
949__git_fetch_options="
950 --quiet --verbose --append --upload-pack --force --keep --depth=
951 --tags --no-tags
952"
953
690d8824
JH
954_git_fetch ()
955{
0a4e1472
JS
956 local cur="${COMP_WORDS[COMP_CWORD]}"
957 case "$cur" in
958 --*)
959 __gitcomp "$__git_fetch_options"
960 return
961 ;;
962 esac
52d5c3b5 963 __git_complete_remote_or_refspec
690d8824
JH
964}
965
f53352fb
SP
966_git_format_patch ()
967{
968 local cur="${COMP_WORDS[COMP_CWORD]}"
969 case "$cur" in
e1d37937
SB
970 --thread=*)
971 __gitcomp "
972 deep shallow
973 " "" "${cur##--thread=}"
974 return
975 ;;
f53352fb 976 --*)
b3391775 977 __gitcomp "
e1d37937 978 --stdout --attach --no-attach --thread --thread=
f53352fb
SP
979 --output-directory
980 --numbered --start-number
47e98eec 981 --numbered-files
f53352fb
SP
982 --keep-subject
983 --signoff
3f7df3a7 984 --in-reply-to= --cc=
f53352fb 985 --full-index --binary
ec804891 986 --not --all
be5f5bf0 987 --cover-letter
aba201c6 988 --no-prefix --src-prefix= --dst-prefix=
81085134
SG
989 --inline --suffix= --ignore-if-in-upstream
990 --subject-prefix=
b3391775 991 "
f53352fb
SP
992 return
993 ;;
994 esac
995 __git_complete_revlist
996}
997
4bca8636
AJ
998_git_fsck ()
999{
1000 local cur="${COMP_WORDS[COMP_CWORD]}"
1001 case "$cur" in
1002 --*)
1003 __gitcomp "
1004 --tags --root --unreachable --cache --no-reflogs --full
1005 --strict --verbose --lost-found
1006 "
1007 return
1008 ;;
1009 esac
1010 COMPREPLY=()
1011}
1012
b26c8748
SP
1013_git_gc ()
1014{
1015 local cur="${COMP_WORDS[COMP_CWORD]}"
1016 case "$cur" in
1017 --*)
47e98eec 1018 __gitcomp "--prune --aggressive"
b26c8748
SP
1019 return
1020 ;;
1021 esac
1022 COMPREPLY=()
1023}
1024
c72e0db1
LM
1025_git_grep ()
1026{
1027 __git_has_doubledash && return
1028
1029 local cur="${COMP_WORDS[COMP_CWORD]}"
1030 case "$cur" in
1031 --*)
1032 __gitcomp "
1033 --cached
1034 --text --ignore-case --word-regexp --invert-match
1035 --full-name
1036 --extended-regexp --basic-regexp --fixed-strings
1037 --files-with-matches --name-only
1038 --files-without-match
1039 --count
1040 --and --or --not --all-match
1041 "
1042 return
1043 ;;
1044 esac
1045 COMPREPLY=()
1046}
1047
1eb7e2f8
LM
1048_git_help ()
1049{
1050 local cur="${COMP_WORDS[COMP_CWORD]}"
1051 case "$cur" in
1052 --*)
1053 __gitcomp "--all --info --man --web"
1054 return
1055 ;;
1056 esac
2946cccf
MG
1057 __gitcomp "$(__git_all_commands)
1058 attributes cli core-tutorial cvs-migration
1059 diffcore gitk glossary hooks ignore modules
1060 repository-layout tutorial tutorial-2
99f0b599 1061 workflows
2946cccf 1062 "
1eb7e2f8
LM
1063}
1064
5dad868b
LM
1065_git_init ()
1066{
1067 local cur="${COMP_WORDS[COMP_CWORD]}"
1068 case "$cur" in
1069 --shared=*)
1070 __gitcomp "
1071 false true umask group all world everybody
1072 " "" "${cur##--shared=}"
1073 return
1074 ;;
1075 --*)
1076 __gitcomp "--quiet --bare --template= --shared --shared="
1077 return
1078 ;;
1079 esac
1080 COMPREPLY=()
1081}
1082
b1bc1494
LM
1083_git_ls_files ()
1084{
1085 __git_has_doubledash && return
1086
1087 local cur="${COMP_WORDS[COMP_CWORD]}"
1088 case "$cur" in
1089 --*)
1090 __gitcomp "--cached --deleted --modified --others --ignored
1091 --stage --directory --no-empty-directory --unmerged
1092 --killed --exclude= --exclude-from=
1093 --exclude-per-directory= --exclude-standard
1094 --error-unmatch --with-tree= --full-name
1095 --abbrev --ignored --exclude-per-directory
1096 "
1097 return
1098 ;;
1099 esac
1100 COMPREPLY=()
1101}
1102
690d8824
JH
1103_git_ls_remote ()
1104{
b3391775 1105 __gitcomp "$(__git_remotes)"
690d8824
JH
1106}
1107
1108_git_ls_tree ()
1109{
1110 __git_complete_file
1111}
1112
a393777e
TR
1113# Options that go well for log, shortlog and gitk
1114__git_log_common_options="
1115 --not --all
1116 --branches --tags --remotes
1117 --first-parent --no-merges
1118 --max-count=
1119 --max-age= --since= --after=
1120 --min-age= --until= --before=
1121"
1122# Options that go well for log and gitk (not shortlog)
1123__git_log_gitk_options="
1124 --dense --sparse --full-history
1125 --simplify-merges --simplify-by-decoration
1126 --left-right
1127"
1128# Options that go well for log and shortlog (not gitk)
1129__git_log_shortlog_options="
1130 --author= --committer= --grep=
1131 --all-match
1132"
1133
3d279863 1134__git_log_pretty_formats="oneline short medium full fuller email raw format:"
672c68cb 1135__git_log_date_formats="relative iso8601 rfc2822 short local default raw"
3d279863 1136
690d8824
JH
1137_git_log ()
1138{
d773c631
SG
1139 __git_has_doubledash && return
1140
6e31b866 1141 local cur="${COMP_WORDS[COMP_CWORD]}"
bf3c20f6
TR
1142 local g="$(git rev-parse --git-dir 2>/dev/null)"
1143 local merge=""
ba7906f2 1144 if [ -f "$g/MERGE_HEAD" ]; then
bf3c20f6
TR
1145 merge="--merge"
1146 fi
6e31b866
SP
1147 case "$cur" in
1148 --pretty=*)
3d279863 1149 __gitcomp "$__git_log_pretty_formats
b3391775 1150 " "" "${cur##--pretty=}"
6e31b866
SP
1151 return
1152 ;;
72de29c2
TL
1153 --format=*)
1154 __gitcomp "$__git_log_pretty_formats
1155 " "" "${cur##--format=}"
1156 return
1157 ;;
47e98eec 1158 --date=*)
672c68cb 1159 __gitcomp "$__git_log_date_formats" "" "${cur##--date=}"
47e98eec
SP
1160 return
1161 ;;
6e31b866 1162 --*)
b3391775 1163 __gitcomp "
a393777e
TR
1164 $__git_log_common_options
1165 $__git_log_shortlog_options
1166 $__git_log_gitk_options
8f87fae6 1167 --root --topo-order --date-order --reverse
a393777e 1168 --follow
6e31b866 1169 --abbrev-commit --abbrev=
47e98eec 1170 --relative-date --date=
72de29c2 1171 --pretty= --format= --oneline
a393777e 1172 --cherry-pick
20827d99 1173 --graph
20bf7292
TR
1174 --decorate
1175 --walk-reflogs
a393777e 1176 --parents --children
bf3c20f6 1177 $merge
20bf7292 1178 $__git_diff_common_options
47d5a8fa 1179 --pickaxe-all --pickaxe-regex
b3391775 1180 "
6e31b866
SP
1181 return
1182 ;;
1183 esac
f53352fb 1184 __git_complete_revlist
690d8824
JH
1185}
1186
0a4e1472
JS
1187__git_merge_options="
1188 --no-commit --no-stat --log --no-log --squash --strategy
1189 --commit --stat --no-squash --ff --no-ff
1190"
1191
4ad91321
SP
1192_git_merge ()
1193{
3c7b480a
JS
1194 __git_complete_strategy && return
1195
4ad91321
SP
1196 local cur="${COMP_WORDS[COMP_CWORD]}"
1197 case "$cur" in
1198 --*)
0a4e1472 1199 __gitcomp "$__git_merge_options"
4ad91321
SP
1200 return
1201 esac
b3391775 1202 __gitcomp "$(__git_refs)"
4ad91321
SP
1203}
1204
b4c72162
LM
1205_git_mergetool ()
1206{
1207 local cur="${COMP_WORDS[COMP_CWORD]}"
1208 case "$cur" in
1209 --tool=*)
e2dc2de9 1210 __gitcomp "$__git_mergetools_common tortoisemerge" "" "${cur##--tool=}"
b4c72162
LM
1211 return
1212 ;;
1213 --*)
1214 __gitcomp "--tool="
1215 return
1216 ;;
1217 esac
1218 COMPREPLY=()
1219}
1220
690d8824
JH
1221_git_merge_base ()
1222{
b3391775 1223 __gitcomp "$(__git_refs)"
690d8824
JH
1224}
1225
1127c51c
LM
1226_git_mv ()
1227{
1228 local cur="${COMP_WORDS[COMP_CWORD]}"
1229 case "$cur" in
1230 --*)
1231 __gitcomp "--dry-run"
1232 return
1233 ;;
1234 esac
1235 COMPREPLY=()
1236}
1237
d33909bf
SP
1238_git_name_rev ()
1239{
b3391775 1240 __gitcomp "--tags --all --stdin"
d33909bf
SP
1241}
1242
690d8824
JH
1243_git_pull ()
1244{
0a4e1472
JS
1245 __git_complete_strategy && return
1246
1247 local cur="${COMP_WORDS[COMP_CWORD]}"
1248 case "$cur" in
1249 --*)
1250 __gitcomp "
1251 --rebase --no-rebase
1252 $__git_merge_options
1253 $__git_fetch_options
1254 "
1255 return
1256 ;;
1257 esac
52d5c3b5 1258 __git_complete_remote_or_refspec
690d8824
JH
1259}
1260
1261_git_push ()
1262{
0a4e1472
JS
1263 local cur="${COMP_WORDS[COMP_CWORD]}"
1264 case "${COMP_WORDS[COMP_CWORD-1]}" in
1265 --repo)
1266 __gitcomp "$(__git_remotes)"
1267 return
1268 esac
1269 case "$cur" in
1270 --repo=*)
1271 __gitcomp "$(__git_remotes)" "" "${cur##--repo=}"
1272 return
1273 ;;
1274 --*)
1275 __gitcomp "
1276 --all --mirror --tags --dry-run --force --verbose
1277 --receive-pack= --repo=
1278 "
1279 return
1280 ;;
1281 esac
52d5c3b5 1282 __git_complete_remote_or_refspec
690d8824
JH
1283}
1284
61d926a3
SP
1285_git_rebase ()
1286{
51fe1209 1287 local cur="${COMP_WORDS[COMP_CWORD]}" dir="$(__gitdir)"
51ef1daa 1288 if [ -d "$dir"/rebase-apply ] || [ -d "$dir"/rebase-merge ]; then
b3391775 1289 __gitcomp "--continue --skip --abort"
61d926a3
SP
1290 return
1291 fi
3c7b480a 1292 __git_complete_strategy && return
61d926a3
SP
1293 case "$cur" in
1294 --*)
d9e3b702 1295 __gitcomp "--onto --merge --strategy --interactive"
61d926a3
SP
1296 return
1297 esac
b3391775 1298 __gitcomp "$(__git_refs)"
61d926a3
SP
1299}
1300
ae616de6
SB
1301__git_send_email_confirm_options="always never auto cc compose"
1302__git_send_email_suppresscc_options="author self cc ccbody sob cccmd body all"
1303
25a1f374
TL
1304_git_send_email ()
1305{
1306 local cur="${COMP_WORDS[COMP_CWORD]}"
1307 case "$cur" in
ae616de6
SB
1308 --confirm=*)
1309 __gitcomp "
1310 $__git_send_email_confirm_options
1311 " "" "${cur##--confirm=}"
1312 return
1313 ;;
1314 --suppress-cc=*)
1315 __gitcomp "
1316 $__git_send_email_suppresscc_options
1317 " "" "${cur##--suppress-cc=}"
1318
1319 return
1320 ;;
1321 --smtp-encryption=*)
1322 __gitcomp "ssl tls" "" "${cur##--smtp-encryption=}"
1323 return
1324 ;;
25a1f374 1325 --*)
77813151 1326 __gitcomp "--annotate --bcc --cc --cc-cmd --chain-reply-to
ae616de6
SB
1327 --compose --confirm= --dry-run --envelope-sender
1328 --from --identity
25a1f374
TL
1329 --in-reply-to --no-chain-reply-to --no-signed-off-by-cc
1330 --no-suppress-from --no-thread --quiet
1331 --signed-off-by-cc --smtp-pass --smtp-server
ae616de6
SB
1332 --smtp-server-port --smtp-encryption= --smtp-user
1333 --subject --suppress-cc= --suppress-from --thread --to
fd3a8dcb 1334 --validate --no-validate"
25a1f374
TL
1335 return
1336 ;;
1337 esac
1338 COMPREPLY=()
1339}
1340
00652369
SB
1341__git_config_get_set_variables ()
1342{
1343 local prevword word config_file= c=$COMP_CWORD
1344 while [ $c -gt 1 ]; do
1345 word="${COMP_WORDS[c]}"
1346 case "$word" in
1347 --global|--system|--file=*)
1348 config_file="$word"
1349 break
1350 ;;
1351 -f|--file)
1352 config_file="$word $prevword"
1353 break
1354 ;;
1355 esac
1356 prevword=$word
1357 c=$((--c))
1358 done
1359
1360 for i in $(git --git-dir="$(__gitdir)" config $config_file --list \
1361 2>/dev/null); do
1362 case "$i" in
1363 *.*)
1364 echo "${i/=*/}"
1365 ;;
1366 esac
1367 done
1368}
1369
e0d10e1c 1370_git_config ()
5de40f59
SP
1371{
1372 local cur="${COMP_WORDS[COMP_CWORD]}"
1373 local prv="${COMP_WORDS[COMP_CWORD-1]}"
1374 case "$prv" in
1375 branch.*.remote)
78d4d6a2 1376 __gitcomp "$(__git_remotes)"
5de40f59
SP
1377 return
1378 ;;
1379 branch.*.merge)
78d4d6a2 1380 __gitcomp "$(__git_refs)"
5de40f59
SP
1381 return
1382 ;;
1383 remote.*.fetch)
1384 local remote="${prv#remote.}"
1385 remote="${remote%.fetch}"
78d4d6a2 1386 __gitcomp "$(__git_refs_remotes "$remote")"
5de40f59
SP
1387 return
1388 ;;
1389 remote.*.push)
1390 local remote="${prv#remote.}"
1391 remote="${remote%.push}"
78d4d6a2 1392 __gitcomp "$(git --git-dir="$(__gitdir)" \
5de40f59 1393 for-each-ref --format='%(refname):%(refname)' \
78d4d6a2
SP
1394 refs/heads)"
1395 return
1396 ;;
1397 pull.twohead|pull.octopus)
1398 __gitcomp "$(__git_merge_strategies)"
1399 return
1400 ;;
6123d719
MH
1401 color.branch|color.diff|color.interactive|\
1402 color.showbranch|color.status|color.ui)
78d4d6a2
SP
1403 __gitcomp "always never auto"
1404 return
1405 ;;
901d615c
MK
1406 color.pager)
1407 __gitcomp "false true"
1408 return
1409 ;;
78d4d6a2
SP
1410 color.*.*)
1411 __gitcomp "
98171a07 1412 normal black red green yellow blue magenta cyan white
78d4d6a2
SP
1413 bold dim ul blink reverse
1414 "
5de40f59
SP
1415 return
1416 ;;
9b82d63b
SB
1417 help.format)
1418 __gitcomp "man info web html"
1419 return
1420 ;;
672c68cb
SB
1421 log.date)
1422 __gitcomp "$__git_log_date_formats"
1423 return
1424 ;;
ae616de6
SB
1425 sendemail.aliasesfiletype)
1426 __gitcomp "mutt mailrc pine elm gnus"
1427 return
1428 ;;
1429 sendemail.confirm)
1430 __gitcomp "$__git_send_email_confirm_options"
1431 return
1432 ;;
1433 sendemail.suppresscc)
1434 __gitcomp "$__git_send_email_suppresscc_options"
1435 return
1436 ;;
00652369
SB
1437 --get|--get-all|--unset|--unset-all)
1438 __gitcomp "$(__git_config_get_set_variables)"
1439 return
1440 ;;
5de40f59
SP
1441 *.*)
1442 COMPREPLY=()
1443 return
1444 ;;
1445 esac
1446 case "$cur" in
1447 --*)
78d4d6a2 1448 __gitcomp "
47e98eec 1449 --global --system --file=
12977705 1450 --list --replace-all
5de40f59 1451 --get --get-all --get-regexp
1b71eb35 1452 --add --unset --unset-all
12977705 1453 --remove-section --rename-section
78d4d6a2 1454 "
5de40f59
SP
1455 return
1456 ;;
1457 branch.*.*)
1458 local pfx="${cur%.*}."
1459 cur="${cur##*.}"
98171a07 1460 __gitcomp "remote merge mergeoptions" "$pfx" "$cur"
5de40f59
SP
1461 return
1462 ;;
1463 branch.*)
1464 local pfx="${cur%.*}."
1465 cur="${cur#*.}"
78d4d6a2 1466 __gitcomp "$(__git_heads)" "$pfx" "$cur" "."
5de40f59
SP
1467 return
1468 ;;
0aa62fd0
SB
1469 guitool.*.*)
1470 local pfx="${cur%.*}."
1471 cur="${cur##*.}"
1472 __gitcomp "
1473 argprompt cmd confirm needsfile noconsole norescan
1474 prompt revprompt revunmerged title
1475 " "$pfx" "$cur"
1476 return
1477 ;;
1478 difftool.*.*)
1479 local pfx="${cur%.*}."
1480 cur="${cur##*.}"
1481 __gitcomp "cmd path" "$pfx" "$cur"
1482 return
1483 ;;
1484 man.*.*)
1485 local pfx="${cur%.*}."
1486 cur="${cur##*.}"
1487 __gitcomp "cmd path" "$pfx" "$cur"
1488 return
1489 ;;
1490 mergetool.*.*)
1491 local pfx="${cur%.*}."
1492 cur="${cur##*.}"
1493 __gitcomp "cmd path trustExitCode" "$pfx" "$cur"
1494 return
1495 ;;
1496 pager.*)
1497 local pfx="${cur%.*}."
1498 cur="${cur#*.}"
1499 __gitcomp "$(__git_all_commands)" "$pfx" "$cur"
1500 return
1501 ;;
5de40f59
SP
1502 remote.*.*)
1503 local pfx="${cur%.*}."
1504 cur="${cur##*.}"
12977705 1505 __gitcomp "
98171a07 1506 url proxy fetch push mirror skipDefaultUpdate
12977705
SP
1507 receivepack uploadpack tagopt
1508 " "$pfx" "$cur"
5de40f59
SP
1509 return
1510 ;;
1511 remote.*)
1512 local pfx="${cur%.*}."
1513 cur="${cur#*.}"
78d4d6a2 1514 __gitcomp "$(__git_remotes)" "$pfx" "$cur" "."
5de40f59
SP
1515 return
1516 ;;
0aa62fd0
SB
1517 url.*.*)
1518 local pfx="${cur%.*}."
1519 cur="${cur##*.}"
1520 __gitcomp "insteadof" "$pfx" "$cur"
1521 return
1522 ;;
5de40f59 1523 esac
78d4d6a2 1524 __gitcomp "
226b343c 1525 alias.
5de40f59 1526 apply.whitespace
98171a07
LM
1527 branch.autosetupmerge
1528 branch.autosetuprebase
2122591b 1529 clean.requireForce
78d4d6a2
SP
1530 color.branch
1531 color.branch.current
1532 color.branch.local
78d4d6a2 1533 color.branch.plain
025a1929 1534 color.branch.remote
a159ca0c 1535 color.diff
025a1929 1536 color.diff.commit
78d4d6a2 1537 color.diff.frag
025a1929 1538 color.diff.meta
78d4d6a2 1539 color.diff.new
025a1929
LM
1540 color.diff.old
1541 color.diff.plain
78d4d6a2 1542 color.diff.whitespace
226b343c
SB
1543 color.grep
1544 color.grep.external
1545 color.grep.match
98171a07
LM
1546 color.interactive
1547 color.interactive.header
1548 color.interactive.help
1549 color.interactive.prompt
a159ca0c 1550 color.pager
6123d719 1551 color.showbranch
a159ca0c 1552 color.status
78d4d6a2
SP
1553 color.status.added
1554 color.status.changed
025a1929 1555 color.status.header
98171a07 1556 color.status.nobranch
78d4d6a2 1557 color.status.untracked
98171a07
LM
1558 color.status.updated
1559 color.ui
1560 commit.template
1561 core.autocrlf
1562 core.bare
025a1929 1563 core.compression
226b343c 1564 core.createObject
98171a07
LM
1565 core.deltaBaseCacheLimit
1566 core.editor
1567 core.excludesfile
025a1929 1568 core.fileMode
98171a07 1569 core.fsyncobjectfiles
025a1929 1570 core.gitProxy
98171a07 1571 core.ignoreCygwinFSTricks
025a1929
LM
1572 core.ignoreStat
1573 core.logAllRefUpdates
1574 core.loosecompression
1575 core.packedGitLimit
1576 core.packedGitWindowSize
98171a07 1577 core.pager
025a1929 1578 core.preferSymlinkRefs
98171a07
LM
1579 core.preloadindex
1580 core.quotepath
025a1929 1581 core.repositoryFormatVersion
98171a07 1582 core.safecrlf
025a1929 1583 core.sharedRepository
98171a07
LM
1584 core.symlinks
1585 core.trustctime
025a1929 1586 core.warnAmbiguousRefs
98171a07
LM
1587 core.whitespace
1588 core.worktree
1589 diff.autorefreshindex
1590 diff.external
1591 diff.mnemonicprefix
78d4d6a2 1592 diff.renameLimit
98171a07 1593 diff.renameLimit.
78d4d6a2 1594 diff.renames
226b343c
SB
1595 diff.suppressBlankEmpty
1596 diff.tool
1597 diff.wordRegex
0aa62fd0 1598 difftool.
226b343c 1599 difftool.prompt
78d4d6a2 1600 fetch.unpackLimit
226b343c
SB
1601 format.attach
1602 format.cc
78d4d6a2 1603 format.headers
98171a07
LM
1604 format.numbered
1605 format.pretty
226b343c
SB
1606 format.signoff
1607 format.subjectprefix
98171a07 1608 format.suffix
226b343c 1609 format.thread
98171a07
LM
1610 gc.aggressiveWindow
1611 gc.auto
1612 gc.autopacklimit
12977705 1613 gc.packrefs
98171a07 1614 gc.pruneexpire
78d4d6a2
SP
1615 gc.reflogexpire
1616 gc.reflogexpireunreachable
1617 gc.rerereresolved
1618 gc.rerereunresolved
025a1929 1619 gitcvs.allbinary
226b343c 1620 gitcvs.commitmsgannotation
98171a07 1621 gitcvs.dbTableNamePrefix
025a1929
LM
1622 gitcvs.dbdriver
1623 gitcvs.dbname
1624 gitcvs.dbpass
025a1929
LM
1625 gitcvs.dbuser
1626 gitcvs.enabled
1627 gitcvs.logfile
98171a07 1628 gitcvs.usecrlfattr
0aa62fd0 1629 guitool.
98171a07
LM
1630 gui.blamehistoryctx
1631 gui.commitmsgwidth
1632 gui.copyblamethreshold
1633 gui.diffcontext
1634 gui.encoding
1635 gui.fastcopyblame
1636 gui.matchtrackingbranch
1637 gui.newbranchtemplate
1638 gui.pruneduringfetch
1639 gui.spellingdictionary
1640 gui.trustmtime
1641 help.autocorrect
1642 help.browser
1643 help.format
78d4d6a2
SP
1644 http.lowSpeedLimit
1645 http.lowSpeedTime
025a1929 1646 http.maxRequests
5de40f59 1647 http.noEPSV
98171a07 1648 http.proxy
025a1929
LM
1649 http.sslCAInfo
1650 http.sslCAPath
1651 http.sslCert
1652 http.sslKey
1653 http.sslVerify
78d4d6a2
SP
1654 i18n.commitEncoding
1655 i18n.logOutputEncoding
226b343c
SB
1656 imap.folder
1657 imap.host
1658 imap.pass
1659 imap.port
1660 imap.preformattedHTML
1661 imap.sslverify
1662 imap.tunnel
1663 imap.user
98171a07
LM
1664 instaweb.browser
1665 instaweb.httpd
1666 instaweb.local
1667 instaweb.modulepath
1668 instaweb.port
226b343c 1669 interactive.singlekey
98171a07 1670 log.date
78d4d6a2 1671 log.showroot
226b343c 1672 mailmap.file
0aa62fd0 1673 man.
98171a07
LM
1674 man.viewer
1675 merge.conflictstyle
1676 merge.log
1677 merge.renameLimit
1678 merge.stat
025a1929 1679 merge.tool
78d4d6a2 1680 merge.verbosity
0aa62fd0 1681 mergetool.
98171a07 1682 mergetool.keepBackup
226b343c 1683 mergetool.prompt
47e98eec 1684 pack.compression
47e98eec 1685 pack.deltaCacheLimit
025a1929
LM
1686 pack.deltaCacheSize
1687 pack.depth
98171a07
LM
1688 pack.indexVersion
1689 pack.packSizeLimit
1690 pack.threads
025a1929
LM
1691 pack.window
1692 pack.windowMemory
0aa62fd0 1693 pager.
78d4d6a2
SP
1694 pull.octopus
1695 pull.twohead
226b343c
SB
1696 push.default
1697 rebase.stat
98171a07
LM
1698 receive.denyCurrentBranch
1699 receive.denyDeletes
025a1929 1700 receive.denyNonFastForwards
98171a07 1701 receive.fsckObjects
025a1929 1702 receive.unpackLimit
98171a07
LM
1703 repack.usedeltabaseoffset
1704 rerere.autoupdate
1705 rerere.enabled
226b343c
SB
1706 sendemail.aliasesfile
1707 sendemail.aliasesfiletype
1708 sendemail.bcc
1709 sendemail.cc
1710 sendemail.cccmd
1711 sendemail.chainreplyto
1712 sendemail.confirm
1713 sendemail.envelopesender
1714 sendemail.multiedit
1715 sendemail.signedoffbycc
1716 sendemail.smtpencryption
1717 sendemail.smtppass
1718 sendemail.smtpserver
1719 sendemail.smtpserverport
1720 sendemail.smtpuser
1721 sendemail.suppresscc
1722 sendemail.suppressfrom
1723 sendemail.thread
1724 sendemail.to
1725 sendemail.validate
78d4d6a2 1726 showbranch.default
98171a07
LM
1727 status.relativePaths
1728 status.showUntrackedFiles
78d4d6a2
SP
1729 tar.umask
1730 transfer.unpackLimit
0aa62fd0 1731 url.
78d4d6a2 1732 user.email
025a1929 1733 user.name
78d4d6a2 1734 user.signingkey
98171a07 1735 web.browser
5de40f59 1736 branch. remote.
78d4d6a2 1737 "
5de40f59
SP
1738}
1739
88293c67
SP
1740_git_remote ()
1741{
bc14fac8 1742 local subcommands="add rename rm show prune update set-head"
3ff1320d
SG
1743 local subcommand="$(__git_find_subcommand "$subcommands")"
1744 if [ -z "$subcommand" ]; then
3903c618 1745 __gitcomp "$subcommands"
88293c67
SP
1746 return
1747 fi
1748
3ff1320d 1749 case "$subcommand" in
f135e72d 1750 rename|rm|show|prune)
88293c67
SP
1751 __gitcomp "$(__git_remotes)"
1752 ;;
fb72759b
SP
1753 update)
1754 local i c='' IFS=$'\n'
1755 for i in $(git --git-dir="$(__gitdir)" config --list); do
1756 case "$i" in
1757 remotes.*)
1758 i="${i#remotes.}"
1759 c="$c ${i/=*/}"
1760 ;;
1761 esac
1762 done
1763 __gitcomp "$c"
1764 ;;
88293c67
SP
1765 *)
1766 COMPREPLY=()
1767 ;;
1768 esac
1769}
1770
67e78c3b
SP
1771_git_reset ()
1772{
d773c631
SG
1773 __git_has_doubledash && return
1774
67e78c3b 1775 local cur="${COMP_WORDS[COMP_CWORD]}"
b3391775
SP
1776 case "$cur" in
1777 --*)
e89e2ed7 1778 __gitcomp "--merge --mixed --hard --soft"
b3391775
SP
1779 return
1780 ;;
1781 esac
1782 __gitcomp "$(__git_refs)"
67e78c3b
SP
1783}
1784
a6c2be24
LM
1785_git_revert ()
1786{
1787 local cur="${COMP_WORDS[COMP_CWORD]}"
1788 case "$cur" in
1789 --*)
1790 __gitcomp "--edit --mainline --no-edit --no-commit --signoff"
1791 return
1792 ;;
1793 esac
c0783837 1794 __gitcomp "$(__git_refs)"
a6c2be24
LM
1795}
1796
08c701d4
LM
1797_git_rm ()
1798{
1799 __git_has_doubledash && return
1800
1801 local cur="${COMP_WORDS[COMP_CWORD]}"
1802 case "$cur" in
1803 --*)
1804 __gitcomp "--cached --dry-run --ignore-unmatch --quiet"
1805 return
1806 ;;
1807 esac
1808 COMPREPLY=()
1809}
1810
1fd6bec9
SP
1811_git_shortlog ()
1812{
d773c631
SG
1813 __git_has_doubledash && return
1814
1fd6bec9
SP
1815 local cur="${COMP_WORDS[COMP_CWORD]}"
1816 case "$cur" in
1817 --*)
1818 __gitcomp "
a393777e
TR
1819 $__git_log_common_options
1820 $__git_log_shortlog_options
1fd6bec9
SP
1821 --numbered --summary
1822 "
1823 return
1824 ;;
1825 esac
1826 __git_complete_revlist
1827}
1828
90131924
SP
1829_git_show ()
1830{
41d8cf7d
MH
1831 __git_has_doubledash && return
1832
90131924
SP
1833 local cur="${COMP_WORDS[COMP_CWORD]}"
1834 case "$cur" in
1835 --pretty=*)
3d279863 1836 __gitcomp "$__git_log_pretty_formats
b3391775 1837 " "" "${cur##--pretty=}"
90131924
SP
1838 return
1839 ;;
72de29c2
TL
1840 --format=*)
1841 __gitcomp "$__git_log_pretty_formats
1842 " "" "${cur##--format=}"
1843 return
1844 ;;
90131924 1845 --*)
076c3237 1846 __gitcomp "--pretty= --format= --abbrev-commit --oneline
20bf7292
TR
1847 $__git_diff_common_options
1848 "
90131924
SP
1849 return
1850 ;;
1851 esac
1852 __git_complete_file
1853}
1854
2ca880fe
TR
1855_git_show_branch ()
1856{
1857 local cur="${COMP_WORDS[COMP_CWORD]}"
1858 case "$cur" in
1859 --*)
1860 __gitcomp "
1861 --all --remotes --topo-order --current --more=
1862 --list --independent --merge-base --no-name
6123d719 1863 --color --no-color
076c3237 1864 --sha1-name --sparse --topics --reflog
2ca880fe
TR
1865 "
1866 return
1867 ;;
1868 esac
1869 __git_complete_revlist
1870}
1871
7fd53fce
JH
1872_git_stash ()
1873{
95d43780 1874 local subcommands='save list show apply clear drop pop create branch'
7bedebca
SG
1875 local subcommand="$(__git_find_subcommand "$subcommands")"
1876 if [ -z "$subcommand" ]; then
3ff1320d 1877 __gitcomp "$subcommands"
7bedebca
SG
1878 else
1879 local cur="${COMP_WORDS[COMP_CWORD]}"
1880 case "$subcommand,$cur" in
1881 save,--*)
1882 __gitcomp "--keep-index"
1883 ;;
95d43780
LM
1884 apply,--*)
1885 __gitcomp "--index"
1886 ;;
5a7ebd4f 1887 show,--*|drop,--*|pop,--*|branch,--*)
95d43780
LM
1888 COMPREPLY=()
1889 ;;
1890 show,*|apply,*|drop,*|pop,*|branch,*)
1891 __gitcomp "$(git --git-dir="$(__gitdir)" stash list \
1892 | sed -n -e 's/:.*//p')"
1893 ;;
7bedebca
SG
1894 *)
1895 COMPREPLY=()
1896 ;;
1897 esac
3ff1320d 1898 fi
7fd53fce
JH
1899}
1900
be86f7a0
SP
1901_git_submodule ()
1902{
d773c631
SG
1903 __git_has_doubledash && return
1904
1b0f7978 1905 local subcommands="add status init update summary foreach sync"
3ff1320d 1906 if [ -z "$(__git_find_subcommand "$subcommands")" ]; then
be86f7a0
SP
1907 local cur="${COMP_WORDS[COMP_CWORD]}"
1908 case "$cur" in
1909 --*)
1910 __gitcomp "--quiet --cached"
1911 ;;
1912 *)
3ff1320d 1913 __gitcomp "$subcommands"
be86f7a0
SP
1914 ;;
1915 esac
1916 return
1917 fi
1918}
1919
47f6ee28
SG
1920_git_svn ()
1921{
1922 local subcommands="
1923 init fetch clone rebase dcommit log find-rev
1924 set-tree commit-diff info create-ignore propget
4a5856cb
SG
1925 proplist show-ignore show-externals branch tag blame
1926 migrate
47f6ee28
SG
1927 "
1928 local subcommand="$(__git_find_subcommand "$subcommands")"
1929 if [ -z "$subcommand" ]; then
1930 __gitcomp "$subcommands"
1931 else
1932 local remote_opts="--username= --config-dir= --no-auth-cache"
1933 local fc_opts="
1934 --follow-parent --authors-file= --repack=
1935 --no-metadata --use-svm-props --use-svnsync-props
1936 --log-window-size= --no-checkout --quiet
4a5856cb
SG
1937 --repack-flags --use-log-author --localtime
1938 --ignore-paths= $remote_opts
47f6ee28
SG
1939 "
1940 local init_opts="
1941 --template= --shared= --trunk= --tags=
1942 --branches= --stdlayout --minimize-url
1943 --no-metadata --use-svm-props --use-svnsync-props
4a5856cb
SG
1944 --rewrite-root= --prefix= --use-log-author
1945 --add-author-from $remote_opts
47f6ee28
SG
1946 "
1947 local cmt_opts="
1948 --edit --rmdir --find-copies-harder --copy-similarity=
1949 "
1950
1951 local cur="${COMP_WORDS[COMP_CWORD]}"
1952 case "$subcommand,$cur" in
1953 fetch,--*)
1954 __gitcomp "--revision= --fetch-all $fc_opts"
1955 ;;
1956 clone,--*)
1957 __gitcomp "--revision= $fc_opts $init_opts"
1958 ;;
1959 init,--*)
1960 __gitcomp "$init_opts"
1961 ;;
1962 dcommit,--*)
1963 __gitcomp "
1964 --merge --strategy= --verbose --dry-run
4a5856cb
SG
1965 --fetch-all --no-rebase --commit-url
1966 --revision $cmt_opts $fc_opts
47f6ee28
SG
1967 "
1968 ;;
1969 set-tree,--*)
1970 __gitcomp "--stdin $cmt_opts $fc_opts"
1971 ;;
1972 create-ignore,--*|propget,--*|proplist,--*|show-ignore,--*|\
1973 show-externals,--*)
1974 __gitcomp "--revision="
1975 ;;
1976 log,--*)
1977 __gitcomp "
1978 --limit= --revision= --verbose --incremental
1979 --oneline --show-commit --non-recursive
4a5856cb 1980 --authors-file= --color
47f6ee28
SG
1981 "
1982 ;;
1983 rebase,--*)
1984 __gitcomp "
1985 --merge --verbose --strategy= --local
4a5856cb 1986 --fetch-all --dry-run $fc_opts
47f6ee28
SG
1987 "
1988 ;;
1989 commit-diff,--*)
1990 __gitcomp "--message= --file= --revision= $cmt_opts"
1991 ;;
1992 info,--*)
1993 __gitcomp "--url"
1994 ;;
4a5856cb
SG
1995 branch,--*)
1996 __gitcomp "--dry-run --message --tag"
1997 ;;
1998 tag,--*)
1999 __gitcomp "--dry-run --message"
2000 ;;
2001 blame,--*)
2002 __gitcomp "--git-format"
2003 ;;
2004 migrate,--*)
2005 __gitcomp "
2006 --config-dir= --ignore-paths= --minimize
2007 --no-auth-cache --username=
2008 "
2009 ;;
47f6ee28
SG
2010 *)
2011 COMPREPLY=()
2012 ;;
2013 esac
2014 fi
2015}
2016
88e21dc7
SP
2017_git_tag ()
2018{
2019 local i c=1 f=0
2020 while [ $c -lt $COMP_CWORD ]; do
2021 i="${COMP_WORDS[c]}"
2022 case "$i" in
2023 -d|-v)
2024 __gitcomp "$(__git_tags)"
2025 return
2026 ;;
2027 -f)
2028 f=1
2029 ;;
2030 esac
2031 c=$((++c))
2032 done
2033
2034 case "${COMP_WORDS[COMP_CWORD-1]}" in
2035 -m|-F)
2036 COMPREPLY=()
2037 ;;
8d8163f3 2038 -*|tag)
88e21dc7
SP
2039 if [ $f = 1 ]; then
2040 __gitcomp "$(__git_tags)"
2041 else
2042 COMPREPLY=()
2043 fi
2044 ;;
2045 *)
2046 __gitcomp "$(__git_refs)"
2047 ;;
2048 esac
2049}
2050
690d8824
JH
2051_git ()
2052{
873537fa
SP
2053 local i c=1 command __git_dir
2054
2055 while [ $c -lt $COMP_CWORD ]; do
2056 i="${COMP_WORDS[c]}"
2057 case "$i" in
2058 --git-dir=*) __git_dir="${i#--git-dir=}" ;;
2059 --bare) __git_dir="." ;;
1eb7e2f8
LM
2060 --version|-p|--paginate) ;;
2061 --help) command="help"; break ;;
873537fa
SP
2062 *) command="$i"; break ;;
2063 esac
2064 c=$((++c))
2065 done
2066
1d17b22e 2067 if [ -z "$command" ]; then
72e5e989 2068 case "${COMP_WORDS[COMP_CWORD]}" in
47e98eec 2069 --*) __gitcomp "
ce5a2c95 2070 --paginate
47e98eec
SP
2071 --no-pager
2072 --git-dir=
2073 --bare
2074 --version
2075 --exec-path
89a56bfb 2076 --html-path
ce5a2c95
TL
2077 --work-tree=
2078 --help
47e98eec
SP
2079 "
2080 ;;
1eb7e2f8 2081 *) __gitcomp "$(__git_porcelain_commands) $(__git_aliases)" ;;
72e5e989
SP
2082 esac
2083 return
873537fa 2084 fi
367dce2a 2085
873537fa
SP
2086 local expansion=$(__git_aliased_command "$command")
2087 [ "$expansion" ] && command="$expansion"
367dce2a 2088
873537fa 2089 case "$command" in
88329195 2090 am) _git_am ;;
8435b548 2091 add) _git_add ;;
88329195 2092 apply) _git_apply ;;
b3191ce2 2093 archive) _git_archive ;;
b2e69f62 2094 bisect) _git_bisect ;;
374a58c9 2095 bundle) _git_bundle ;;
873537fa 2096 branch) _git_branch ;;
873537fa 2097 checkout) _git_checkout ;;
d8a9fea5 2098 cherry) _git_cherry ;;
1273231e 2099 cherry-pick) _git_cherry_pick ;;
4181c7e8 2100 clean) _git_clean ;;
3eb11012 2101 clone) _git_clone ;;
4548e855 2102 commit) _git_commit ;;
e0d10e1c 2103 config) _git_config ;;
217926c0 2104 describe) _git_describe ;;
873537fa 2105 diff) _git_diff ;;
e2dc2de9 2106 difftool) _git_difftool ;;
873537fa 2107 fetch) _git_fetch ;;
f53352fb 2108 format-patch) _git_format_patch ;;
4bca8636 2109 fsck) _git_fsck ;;
b26c8748 2110 gc) _git_gc ;;
c72e0db1 2111 grep) _git_grep ;;
1eb7e2f8 2112 help) _git_help ;;
5dad868b 2113 init) _git_init ;;
873537fa 2114 log) _git_log ;;
b1bc1494 2115 ls-files) _git_ls_files ;;
873537fa
SP
2116 ls-remote) _git_ls_remote ;;
2117 ls-tree) _git_ls_tree ;;
4ad91321 2118 merge) _git_merge;;
b4c72162 2119 mergetool) _git_mergetool;;
873537fa 2120 merge-base) _git_merge_base ;;
1127c51c 2121 mv) _git_mv ;;
d33909bf 2122 name-rev) _git_name_rev ;;
873537fa
SP
2123 pull) _git_pull ;;
2124 push) _git_push ;;
61d926a3 2125 rebase) _git_rebase ;;
88293c67 2126 remote) _git_remote ;;
873537fa 2127 reset) _git_reset ;;
a6c2be24 2128 revert) _git_revert ;;
08c701d4 2129 rm) _git_rm ;;
25a1f374 2130 send-email) _git_send_email ;;
1fd6bec9 2131 shortlog) _git_shortlog ;;
90131924 2132 show) _git_show ;;
2ca880fe 2133 show-branch) _git_show_branch ;;
7fd53fce 2134 stash) _git_stash ;;
df398771 2135 stage) _git_add ;;
be86f7a0 2136 submodule) _git_submodule ;;
47f6ee28 2137 svn) _git_svn ;;
88e21dc7 2138 tag) _git_tag ;;
873537fa
SP
2139 whatchanged) _git_log ;;
2140 *) COMPREPLY=() ;;
2141 esac
690d8824
JH
2142}
2143
2144_gitk ()
2145{
d773c631
SG
2146 __git_has_doubledash && return
2147
690d8824 2148 local cur="${COMP_WORDS[COMP_CWORD]}"
fa26a401 2149 local g="$(__gitdir)"
07ba53f7 2150 local merge=""
ba7906f2 2151 if [ -f "$g/MERGE_HEAD" ]; then
07ba53f7
RQ
2152 merge="--merge"
2153 fi
b3391775
SP
2154 case "$cur" in
2155 --*)
a393777e
TR
2156 __gitcomp "
2157 $__git_log_common_options
2158 $__git_log_gitk_options
2159 $merge
2160 "
b3391775
SP
2161 return
2162 ;;
2163 esac
ec804891 2164 __git_complete_revlist
690d8824
JH
2165}
2166
50e126e1
TP
2167complete -o bashdefault -o default -o nospace -F _git git 2>/dev/null \
2168 || complete -o default -o nospace -F _git git
2169complete -o bashdefault -o default -o nospace -F _gitk gitk 2>/dev/null \
2170 || complete -o default -o nospace -F _gitk gitk
690d8824
JH
2171
2172# The following are necessary only for Cygwin, and only are needed
2173# when the user has tab-completed the executable name and consequently
2174# included the '.exe' suffix.
2175#
76c3eb51 2176if [ Cygwin = "$(uname -o 2>/dev/null)" ]; then
50e126e1
TP
2177complete -o bashdefault -o default -o nospace -F _git git.exe 2>/dev/null \
2178 || complete -o default -o nospace -F _git git.exe
76c3eb51 2179fi