]> git.ipfire.org Git - thirdparty/git.git/blame - contrib/completion/git-completion.bash
decorate: allow const objects to be decorated
[thirdparty/git.git] / contrib / completion / git-completion.bash
CommitLineData
690d8824
JH
1#
2# bash completion support for core Git.
3#
c70680ce 4# Copyright (C) 2006,2007 Shawn O. Pearce <spearce@spearce.org>
690d8824 5# Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/).
c70680ce 6# Distributed under the GNU General Public License, version 2.0.
690d8824
JH
7#
8# The contained completion routines provide support for completing:
9#
10# *) local and remote branch names
11# *) local and remote tag names
12# *) .git/remotes file names
13# *) git 'subcommands'
14# *) tree paths within 'ref:path/to/file' expressions
c70680ce 15# *) common --long-options
690d8824
JH
16#
17# To use these routines:
18#
19# 1) Copy this file to somewhere (e.g. ~/.git-completion.sh).
20# 2) Added the following line to your .bashrc:
21# source ~/.git-completion.sh
22#
b51ec6bd
SP
23# 3) You may want to make sure the git executable is available
24# in your PATH before this script is sourced, as some caching
25# is performed while the script loads. If git isn't found
26# at source time then all lookups will be done on demand,
27# which may be slightly slower.
28#
29# 4) Consider changing your PS1 to also show the current branch:
d3d717a4
SP
30# PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ '
31#
32# The argument to __git_ps1 will be displayed only if you
33# are currently in a git repository. The %s token will be
34# the name of the current branch.
35#
c70680ce
SP
36# To submit patches:
37#
38# *) Read Documentation/SubmittingPatches
39# *) Send all patches to the current maintainer:
40#
41# "Shawn O. Pearce" <spearce@spearce.org>
42#
43# *) Always CC the Git mailing list:
44#
45# git@vger.kernel.org
46#
690d8824 47
db8a9ff0
SP
48case "$COMP_WORDBREAKS" in
49*:*) : great ;;
50*) COMP_WORDBREAKS="$COMP_WORDBREAKS:"
51esac
52
873537fa
SP
53__gitdir ()
54{
67ffa114
SP
55 if [ -z "$1" ]; then
56 if [ -n "$__git_dir" ]; then
57 echo "$__git_dir"
58 elif [ -d .git ]; then
59 echo .git
60 else
61 git rev-parse --git-dir 2>/dev/null
62 fi
63 elif [ -d "$1/.git" ]; then
64 echo "$1/.git"
65 else
66 echo "$1"
67 fi
873537fa
SP
68}
69
d3d717a4
SP
70__git_ps1 ()
71{
e7520196
RR
72 local g="$(git rev-parse --git-dir 2>/dev/null)"
73 if [ -n "$g" ]; then
74 local r
75 local b
51ef1daa 76 if [ -d "$g/rebase-apply" ]
e7520196 77 then
51ef1daa 78 if test -f "$g/rebase-apply/rebasing"
3041c324
JH
79 then
80 r="|REBASE"
51ef1daa 81 elif test -f "$g/rebase-apply/applying"
3041c324
JH
82 then
83 r="|AM"
84 else
85 r="|AM/REBASE"
86 fi
e7520196 87 b="$(git symbolic-ref HEAD 2>/dev/null)"
28ed6e7b 88 elif [ -f "$g/rebase-merge/interactive" ]
e7520196
RR
89 then
90 r="|REBASE-i"
28ed6e7b
JS
91 b="$(cat "$g/rebase-merge/head-name")"
92 elif [ -d "$g/rebase-merge" ]
e7520196
RR
93 then
94 r="|REBASE-m"
28ed6e7b 95 b="$(cat "$g/rebase-merge/head-name")"
e7520196
RR
96 elif [ -f "$g/MERGE_HEAD" ]
97 then
98 r="|MERGING"
99 b="$(git symbolic-ref HEAD 2>/dev/null)"
100 else
a5c4f85b 101 if [ -f "$g/BISECT_LOG" ]
e7520196
RR
102 then
103 r="|BISECTING"
104 fi
105 if ! b="$(git symbolic-ref HEAD 2>/dev/null)"
106 then
27c57888
SP
107 if ! b="$(git describe --exact-match HEAD 2>/dev/null)"
108 then
a5c4f85b 109 b="$(cut -c1-7 "$g/HEAD")..."
27c57888 110 fi
e7520196
RR
111 fi
112 fi
113
d3d717a4 114 if [ -n "$1" ]; then
e7520196 115 printf "$1" "${b##refs/heads/}$r"
d3d717a4 116 else
e7520196 117 printf " (%s)" "${b##refs/heads/}$r"
d3d717a4
SP
118 fi
119 fi
120}
121
ab02dfe5
SP
122__gitcomp_1 ()
123{
124 local c IFS=' '$'\t'$'\n'
125 for c in $1; do
126 case "$c$2" in
127 --*=*) printf %s$'\n' "$c$2" ;;
128 *.) printf %s$'\n' "$c$2" ;;
129 *) printf %s$'\n' "$c$2 " ;;
130 esac
131 done
132}
133
72e5e989
SP
134__gitcomp ()
135{
78d4d6a2 136 local cur="${COMP_WORDS[COMP_CWORD]}"
b3391775 137 if [ $# -gt 2 ]; then
78d4d6a2
SP
138 cur="$3"
139 fi
5447aac7
SG
140 case "$cur" in
141 --*=)
142 COMPREPLY=()
5447aac7
SG
143 ;;
144 *)
ab02dfe5
SP
145 local IFS=$'\n'
146 COMPREPLY=($(compgen -P "$2" \
147 -W "$(__gitcomp_1 "$1" "$4")" \
148 -- "$cur"))
5447aac7
SG
149 ;;
150 esac
72e5e989
SP
151}
152
5de40f59
SP
153__git_heads ()
154{
67ffa114 155 local cmd i is_hash=y dir="$(__gitdir "$1")"
5de40f59
SP
156 if [ -d "$dir" ]; then
157 for i in $(git --git-dir="$dir" \
158 for-each-ref --format='%(refname)' \
159 refs/heads ); do
160 echo "${i#refs/heads/}"
161 done
162 return
163 fi
799596a5 164 for i in $(git ls-remote "$1" 2>/dev/null); do
5de40f59
SP
165 case "$is_hash,$i" in
166 y,*) is_hash=n ;;
167 n,*^{}) is_hash=y ;;
168 n,refs/heads/*) is_hash=y; echo "${i#refs/heads/}" ;;
169 n,*) is_hash=y; echo "$i" ;;
170 esac
171 done
172}
173
88e21dc7
SP
174__git_tags ()
175{
176 local cmd i is_hash=y dir="$(__gitdir "$1")"
177 if [ -d "$dir" ]; then
178 for i in $(git --git-dir="$dir" \
179 for-each-ref --format='%(refname)' \
180 refs/tags ); do
181 echo "${i#refs/tags/}"
182 done
183 return
184 fi
799596a5 185 for i in $(git ls-remote "$1" 2>/dev/null); do
88e21dc7
SP
186 case "$is_hash,$i" in
187 y,*) is_hash=n ;;
188 n,*^{}) is_hash=y ;;
189 n,refs/tags/*) is_hash=y; echo "${i#refs/tags/}" ;;
190 n,*) is_hash=y; echo "$i" ;;
191 esac
192 done
193}
194
690d8824
JH
195__git_refs ()
196{
67ffa114 197 local cmd i is_hash=y dir="$(__gitdir "$1")"
873537fa 198 if [ -d "$dir" ]; then
35e65ecc
SP
199 if [ -e "$dir/HEAD" ]; then echo HEAD; fi
200 for i in $(git --git-dir="$dir" \
201 for-each-ref --format='%(refname)' \
202 refs/tags refs/heads refs/remotes); do
203 case "$i" in
204 refs/tags/*) echo "${i#refs/tags/}" ;;
205 refs/heads/*) echo "${i#refs/heads/}" ;;
206 refs/remotes/*) echo "${i#refs/remotes/}" ;;
207 *) echo "$i" ;;
208 esac
209 done
210 return
690d8824 211 fi
799596a5 212 for i in $(git ls-remote "$dir" 2>/dev/null); do
690d8824
JH
213 case "$is_hash,$i" in
214 y,*) is_hash=n ;;
215 n,*^{}) is_hash=y ;;
216 n,refs/tags/*) is_hash=y; echo "${i#refs/tags/}" ;;
217 n,refs/heads/*) is_hash=y; echo "${i#refs/heads/}" ;;
35e65ecc 218 n,refs/remotes/*) is_hash=y; echo "${i#refs/remotes/}" ;;
690d8824
JH
219 n,*) is_hash=y; echo "$i" ;;
220 esac
221 done
222}
223
224__git_refs2 ()
225{
67ffa114
SP
226 local i
227 for i in $(__git_refs "$1"); do
228 echo "$i:$i"
690d8824
JH
229 done
230}
231
5de40f59
SP
232__git_refs_remotes ()
233{
234 local cmd i is_hash=y
799596a5 235 for i in $(git ls-remote "$1" 2>/dev/null); do
5de40f59
SP
236 case "$is_hash,$i" in
237 n,refs/heads/*)
238 is_hash=y
239 echo "$i:refs/remotes/$1/${i#refs/heads/}"
240 ;;
241 y,*) is_hash=n ;;
242 n,*^{}) is_hash=y ;;
243 n,refs/tags/*) is_hash=y;;
244 n,*) is_hash=y; ;;
245 esac
246 done
247}
248
690d8824
JH
249__git_remotes ()
250{
873537fa 251 local i ngoff IFS=$'\n' d="$(__gitdir)"
56fc25f2 252 shopt -q nullglob || ngoff=1
690d8824 253 shopt -s nullglob
873537fa
SP
254 for i in "$d/remotes"/*; do
255 echo ${i#$d/remotes/}
690d8824 256 done
56fc25f2 257 [ "$ngoff" ] && shopt -u nullglob
e0d10e1c 258 for i in $(git --git-dir="$d" config --list); do
56fc25f2
SP
259 case "$i" in
260 remote.*.url=*)
261 i="${i#remote.}"
262 echo "${i/.url=*/}"
263 ;;
264 esac
265 done
690d8824
JH
266}
267
4ad91321
SP
268__git_merge_strategies ()
269{
b51ec6bd
SP
270 if [ -n "$__git_merge_strategylist" ]; then
271 echo "$__git_merge_strategylist"
272 return
273 fi
4ad91321
SP
274 sed -n "/^all_strategies='/{
275 s/^all_strategies='//
276 s/'//
277 p
278 q
279 }" "$(git --exec-path)/git-merge"
280}
b51ec6bd
SP
281__git_merge_strategylist=
282__git_merge_strategylist="$(__git_merge_strategies 2>/dev/null)"
4ad91321 283
690d8824
JH
284__git_complete_file ()
285{
a79c6551 286 local pfx ls ref cur="${COMP_WORDS[COMP_CWORD]}"
690d8824
JH
287 case "$cur" in
288 ?*:*)
a79c6551
SP
289 ref="${cur%%:*}"
290 cur="${cur#*:}"
690d8824
JH
291 case "$cur" in
292 ?*/*)
a79c6551
SP
293 pfx="${cur%/*}"
294 cur="${cur##*/}"
690d8824
JH
295 ls="$ref:$pfx"
296 pfx="$pfx/"
297 ;;
298 *)
299 ls="$ref"
300 ;;
301 esac
db8a9ff0
SP
302
303 case "$COMP_WORDBREAKS" in
304 *:*) : great ;;
305 *) pfx="$ref:$pfx" ;;
306 esac
307
778306e4 308 local IFS=$'\n'
690d8824 309 COMPREPLY=($(compgen -P "$pfx" \
873537fa 310 -W "$(git --git-dir="$(__gitdir)" ls-tree "$ls" \
778306e4
SP
311 | sed '/^100... blob /{
312 s,^.* ,,
313 s,$, ,
314 }
315 /^120000 blob /{
316 s,^.* ,,
317 s,$, ,
318 }
690d8824
JH
319 /^040000 tree /{
320 s,^.* ,,
321 s,$,/,
322 }
323 s/^.* //')" \
324 -- "$cur"))
325 ;;
326 *)
b3391775 327 __gitcomp "$(__git_refs)"
690d8824
JH
328 ;;
329 esac
330}
331
f53352fb
SP
332__git_complete_revlist ()
333{
334 local pfx cur="${COMP_WORDS[COMP_CWORD]}"
335 case "$cur" in
336 *...*)
337 pfx="${cur%...*}..."
338 cur="${cur#*...}"
b3391775 339 __gitcomp "$(__git_refs)" "$pfx" "$cur"
f53352fb
SP
340 ;;
341 *..*)
342 pfx="${cur%..*}.."
343 cur="${cur#*..}"
b3391775
SP
344 __gitcomp "$(__git_refs)" "$pfx" "$cur"
345 ;;
f53352fb 346 *)
b3391775 347 __gitcomp "$(__git_refs)"
f53352fb
SP
348 ;;
349 esac
350}
351
1eb7e2f8 352__git_all_commands ()
f2bb9f88 353{
1eb7e2f8
LM
354 if [ -n "$__git_all_commandlist" ]; then
355 echo "$__git_all_commandlist"
b51ec6bd
SP
356 return
357 fi
f2bb9f88
SP
358 local i IFS=" "$'\n'
359 for i in $(git help -a|egrep '^ ')
1eb7e2f8
LM
360 do
361 case $i in
362 *--*) : helper pattern;;
363 *) echo $i;;
364 esac
365 done
366}
367__git_all_commandlist=
368__git_all_commandlist="$(__git_all_commands 2>/dev/null)"
369
370__git_porcelain_commands ()
371{
372 if [ -n "$__git_porcelain_commandlist" ]; then
373 echo "$__git_porcelain_commandlist"
374 return
375 fi
376 local i IFS=" "$'\n'
377 for i in "help" $(__git_all_commands)
f2bb9f88
SP
378 do
379 case $i in
718a087a 380 *--*) : helper pattern;;
a925c6f1
SP
381 applymbox) : ask gittus;;
382 applypatch) : ask gittus;;
383 archimport) : import;;
2e3a430a 384 cat-file) : plumbing;;
56d99c67 385 check-attr) : plumbing;;
f2bb9f88
SP
386 check-ref-format) : plumbing;;
387 commit-tree) : plumbing;;
a925c6f1
SP
388 cvsexportcommit) : export;;
389 cvsimport) : import;;
f2bb9f88
SP
390 cvsserver) : daemon;;
391 daemon) : daemon;;
5cfb4fe5
SP
392 diff-files) : plumbing;;
393 diff-index) : plumbing;;
394 diff-tree) : plumbing;;
c6ec3b13 395 fast-import) : import;;
a925c6f1 396 fsck-objects) : plumbing;;
f2bb9f88 397 fetch-pack) : plumbing;;
a925c6f1 398 fmt-merge-msg) : plumbing;;
56d99c67 399 for-each-ref) : plumbing;;
f2bb9f88
SP
400 hash-object) : plumbing;;
401 http-*) : transport;;
402 index-pack) : plumbing;;
a925c6f1 403 init-db) : deprecated;;
f2bb9f88
SP
404 local-fetch) : plumbing;;
405 mailinfo) : plumbing;;
406 mailsplit) : plumbing;;
407 merge-*) : plumbing;;
408 mktree) : plumbing;;
409 mktag) : plumbing;;
410 pack-objects) : plumbing;;
411 pack-redundant) : plumbing;;
412 pack-refs) : plumbing;;
413 parse-remote) : plumbing;;
414 patch-id) : plumbing;;
415 peek-remote) : plumbing;;
a925c6f1
SP
416 prune) : plumbing;;
417 prune-packed) : plumbing;;
418 quiltimport) : import;;
f2bb9f88
SP
419 read-tree) : plumbing;;
420 receive-pack) : plumbing;;
2e3a430a 421 reflog) : plumbing;;
5c66d0d4 422 repo-config) : deprecated;;
f2bb9f88
SP
423 rerere) : plumbing;;
424 rev-list) : plumbing;;
425 rev-parse) : plumbing;;
426 runstatus) : plumbing;;
427 sh-setup) : internal;;
428 shell) : daemon;;
429 send-pack) : plumbing;;
430 show-index) : plumbing;;
431 ssh-*) : transport;;
432 stripspace) : plumbing;;
433 symbolic-ref) : plumbing;;
a925c6f1 434 tar-tree) : deprecated;;
f2bb9f88
SP
435 unpack-file) : plumbing;;
436 unpack-objects) : plumbing;;
a925c6f1 437 update-index) : plumbing;;
f2bb9f88
SP
438 update-ref) : plumbing;;
439 update-server-info) : daemon;;
440 upload-archive) : plumbing;;
441 upload-pack) : plumbing;;
442 write-tree) : plumbing;;
a925c6f1 443 verify-tag) : plumbing;;
f2bb9f88
SP
444 *) echo $i;;
445 esac
446 done
447}
1eb7e2f8
LM
448__git_porcelain_commandlist=
449__git_porcelain_commandlist="$(__git_porcelain_commands 2>/dev/null)"
f2bb9f88 450
367dce2a
DS
451__git_aliases ()
452{
56fc25f2 453 local i IFS=$'\n'
e0d10e1c 454 for i in $(git --git-dir="$(__gitdir)" config --list); do
56fc25f2
SP
455 case "$i" in
456 alias.*)
457 i="${i#alias.}"
458 echo "${i/=*/}"
459 ;;
460 esac
461 done
367dce2a
DS
462}
463
464__git_aliased_command ()
465{
873537fa 466 local word cmdline=$(git --git-dir="$(__gitdir)" \
e0d10e1c 467 config --get "alias.$1")
367dce2a
DS
468 for word in $cmdline; do
469 if [ "${word##-*}" ]; then
470 echo $word
471 return
472 fi
473 done
474}
475
3ff1320d
SG
476__git_find_subcommand ()
477{
478 local word subcommand c=1
479
480 while [ $c -lt $COMP_CWORD ]; do
481 word="${COMP_WORDS[c]}"
482 for subcommand in $1; do
483 if [ "$subcommand" = "$word" ]; then
484 echo "$subcommand"
485 return
486 fi
487 done
488 c=$((++c))
489 done
490}
491
d773c631
SG
492__git_has_doubledash ()
493{
494 local c=1
495 while [ $c -lt $COMP_CWORD ]; do
496 if [ "--" = "${COMP_WORDS[c]}" ]; then
497 return 0
498 fi
499 c=$((++c))
500 done
501 return 1
502}
503
7950659d 504__git_whitespacelist="nowarn warn error error-all fix"
88329195
SP
505
506_git_am ()
507{
28ed6e7b 508 local cur="${COMP_WORDS[COMP_CWORD]}" dir="$(__gitdir)"
51ef1daa 509 if [ -d "$dir"/rebase-apply ]; then
a31c00b0 510 __gitcomp "--skip --resolved --abort"
88329195
SP
511 return
512 fi
513 case "$cur" in
514 --whitespace=*)
b3391775 515 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
88329195
SP
516 return
517 ;;
518 --*)
b3391775 519 __gitcomp "
88329195
SP
520 --signoff --utf8 --binary --3way --interactive
521 --whitespace=
b3391775 522 "
88329195
SP
523 return
524 esac
525 COMPREPLY=()
526}
527
528_git_apply ()
529{
530 local cur="${COMP_WORDS[COMP_CWORD]}"
531 case "$cur" in
532 --whitespace=*)
b3391775 533 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
88329195
SP
534 return
535 ;;
536 --*)
b3391775 537 __gitcomp "
88329195
SP
538 --stat --numstat --summary --check --index
539 --cached --index-info --reverse --reject --unidiff-zero
540 --apply --no-add --exclude=
541 --whitespace= --inaccurate-eof --verbose
b3391775 542 "
88329195
SP
543 return
544 esac
545 COMPREPLY=()
546}
547
8435b548
SP
548_git_add ()
549{
d773c631
SG
550 __git_has_doubledash && return
551
8435b548
SP
552 local cur="${COMP_WORDS[COMP_CWORD]}"
553 case "$cur" in
554 --*)
1d284cba
SG
555 __gitcomp "
556 --interactive --refresh --patch --update --dry-run
557 --ignore-errors
558 "
8435b548
SP
559 return
560 esac
561 COMPREPLY=()
562}
563
b3191ce2
LM
564_git_archive ()
565{
566 local cur="${COMP_WORDS[COMP_CWORD]}"
567 case "$cur" in
568 --format=*)
569 __gitcomp "$(git archive --list)" "" "${cur##--format=}"
570 return
571 ;;
572 --remote=*)
573 __gitcomp "$(__git_remotes)" "" "${cur##--remote=}"
574 return
575 ;;
576 --*)
577 __gitcomp "
578 --format= --list --verbose
579 --prefix= --remote= --exec=
580 "
581 return
582 ;;
583 esac
584 __git_complete_file
585}
586
b2e69f62
SP
587_git_bisect ()
588{
d773c631
SG
589 __git_has_doubledash && return
590
bf11d461 591 local subcommands="start bad good skip reset visualize replay log run"
3ff1320d
SG
592 local subcommand="$(__git_find_subcommand "$subcommands")"
593 if [ -z "$subcommand" ]; then
594 __gitcomp "$subcommands"
b2e69f62
SP
595 return
596 fi
597
3ff1320d 598 case "$subcommand" in
bf11d461 599 bad|good|reset|skip)
b2e69f62
SP
600 __gitcomp "$(__git_refs)"
601 ;;
602 *)
603 COMPREPLY=()
604 ;;
605 esac
606}
607
690d8824
JH
608_git_branch ()
609{
b9217642
SG
610 local i c=1 only_local_ref="n" has_r="n"
611
612 while [ $c -lt $COMP_CWORD ]; do
613 i="${COMP_WORDS[c]}"
614 case "$i" in
615 -d|-m) only_local_ref="y" ;;
616 -r) has_r="y" ;;
617 esac
618 c=$((++c))
619 done
620
3b376b0c
SG
621 case "${COMP_WORDS[COMP_CWORD]}" in
622 --*=*) COMPREPLY=() ;;
623 --*)
624 __gitcomp "
625 --color --no-color --verbose --abbrev= --no-abbrev
50e61025 626 --track --no-track --contains --merged --no-merged
3b376b0c
SG
627 "
628 ;;
b9217642
SG
629 *)
630 if [ $only_local_ref = "y" -a $has_r = "n" ]; then
631 __gitcomp "$(__git_heads)"
632 else
633 __gitcomp "$(__git_refs)"
634 fi
635 ;;
3b376b0c 636 esac
690d8824
JH
637}
638
374a58c9
ML
639_git_bundle ()
640{
641 local mycword="$COMP_CWORD"
642 case "${COMP_WORDS[0]}" in
643 git)
644 local cmd="${COMP_WORDS[2]}"
645 mycword="$((mycword-1))"
646 ;;
647 git-bundle*)
648 local cmd="${COMP_WORDS[1]}"
649 ;;
650 esac
651 case "$mycword" in
652 1)
653 __gitcomp "create list-heads verify unbundle"
654 ;;
655 2)
656 # looking for a file
657 ;;
658 *)
659 case "$cmd" in
660 create)
661 __git_complete_revlist
662 ;;
663 esac
664 ;;
665 esac
666}
667
690d8824
JH
668_git_checkout ()
669{
c84bb14c
SG
670 __git_has_doubledash && return
671
b3391775 672 __gitcomp "$(__git_refs)"
690d8824
JH
673}
674
d8a9fea5
SP
675_git_cherry ()
676{
677 __gitcomp "$(__git_refs)"
678}
679
1273231e
SP
680_git_cherry_pick ()
681{
682 local cur="${COMP_WORDS[COMP_CWORD]}"
683 case "$cur" in
684 --*)
b3391775 685 __gitcomp "--edit --no-commit"
1273231e
SP
686 ;;
687 *)
b3391775 688 __gitcomp "$(__git_refs)"
1273231e
SP
689 ;;
690 esac
691}
692
4181c7e8
LM
693_git_clean ()
694{
695 __git_has_doubledash && return
696
697 local cur="${COMP_WORDS[COMP_CWORD]}"
698 case "$cur" in
699 --*)
700 __gitcomp "--dry-run --quiet"
701 return
702 ;;
703 esac
704 COMPREPLY=()
705}
706
3eb11012
LM
707_git_clone ()
708{
709 local cur="${COMP_WORDS[COMP_CWORD]}"
710 case "$cur" in
711 --*)
712 __gitcomp "
713 --local
714 --no-hardlinks
715 --shared
716 --reference
717 --quiet
718 --no-checkout
719 --bare
720 --mirror
721 --origin
722 --upload-pack
723 --template=
724 --depth
725 "
726 return
727 ;;
728 esac
729 COMPREPLY=()
730}
731
4548e855
SP
732_git_commit ()
733{
d773c631
SG
734 __git_has_doubledash && return
735
4548e855
SP
736 local cur="${COMP_WORDS[COMP_CWORD]}"
737 case "$cur" in
738 --*)
b3391775 739 __gitcomp "
4548e855
SP
740 --all --author= --signoff --verify --no-verify
741 --edit --amend --include --only
b3391775 742 "
4548e855
SP
743 return
744 esac
745 COMPREPLY=()
746}
747
217926c0
SP
748_git_describe ()
749{
cbb504c9
TR
750 local cur="${COMP_WORDS[COMP_CWORD]}"
751 case "$cur" in
752 --*)
753 __gitcomp "
754 --all --tags --contains --abbrev= --candidates=
755 --exact-match --debug --long --match --always
756 "
757 return
758 esac
217926c0
SP
759 __gitcomp "$(__git_refs)"
760}
761
690d8824
JH
762_git_diff ()
763{
d773c631
SG
764 __git_has_doubledash && return
765
b3a4f858
JS
766 local cur="${COMP_WORDS[COMP_CWORD]}"
767 case "$cur" in
768 --*)
769 __gitcomp "--cached --stat --numstat --shortstat --summary
770 --patch-with-stat --name-only --name-status --color
771 --no-color --color-words --no-renames --check
772 --full-index --binary --abbrev --diff-filter
773 --find-copies-harder --pickaxe-all --pickaxe-regex
774 --text --ignore-space-at-eol --ignore-space-change
775 --ignore-all-space --exit-code --quiet --ext-diff
aba201c6
PO
776 --no-ext-diff
777 --no-prefix --src-prefix= --dst-prefix=
f4574139 778 --base --ours --theirs
aba201c6 779 "
b3a4f858
JS
780 return
781 ;;
782 esac
690d8824
JH
783 __git_complete_file
784}
785
690d8824
JH
786_git_fetch ()
787{
788 local cur="${COMP_WORDS[COMP_CWORD]}"
789
790 case "${COMP_WORDS[0]},$COMP_CWORD" in
791 git-fetch*,1)
b3391775 792 __gitcomp "$(__git_remotes)"
690d8824
JH
793 ;;
794 git,2)
b3391775 795 __gitcomp "$(__git_remotes)"
690d8824
JH
796 ;;
797 *)
798 case "$cur" in
799 *:*)
db8a9ff0
SP
800 local pfx=""
801 case "$COMP_WORDBREAKS" in
802 *:*) : great ;;
803 *) pfx="${cur%%:*}:" ;;
804 esac
805 __gitcomp "$(__git_refs)" "$pfx" "${cur#*:}"
690d8824
JH
806 ;;
807 *)
808 local remote
809 case "${COMP_WORDS[0]}" in
810 git-fetch) remote="${COMP_WORDS[1]}" ;;
811 git) remote="${COMP_WORDS[2]}" ;;
812 esac
b3391775 813 __gitcomp "$(__git_refs2 "$remote")"
690d8824
JH
814 ;;
815 esac
816 ;;
817 esac
818}
819
f53352fb
SP
820_git_format_patch ()
821{
822 local cur="${COMP_WORDS[COMP_CWORD]}"
823 case "$cur" in
824 --*)
b3391775 825 __gitcomp "
f53352fb
SP
826 --stdout --attach --thread
827 --output-directory
828 --numbered --start-number
47e98eec 829 --numbered-files
f53352fb
SP
830 --keep-subject
831 --signoff
832 --in-reply-to=
833 --full-index --binary
ec804891 834 --not --all
be5f5bf0 835 --cover-letter
aba201c6 836 --no-prefix --src-prefix= --dst-prefix=
b3391775 837 "
f53352fb
SP
838 return
839 ;;
840 esac
841 __git_complete_revlist
842}
843
b26c8748
SP
844_git_gc ()
845{
846 local cur="${COMP_WORDS[COMP_CWORD]}"
847 case "$cur" in
848 --*)
47e98eec 849 __gitcomp "--prune --aggressive"
b26c8748
SP
850 return
851 ;;
852 esac
853 COMPREPLY=()
854}
855
c72e0db1
LM
856_git_grep ()
857{
858 __git_has_doubledash && return
859
860 local cur="${COMP_WORDS[COMP_CWORD]}"
861 case "$cur" in
862 --*)
863 __gitcomp "
864 --cached
865 --text --ignore-case --word-regexp --invert-match
866 --full-name
867 --extended-regexp --basic-regexp --fixed-strings
868 --files-with-matches --name-only
869 --files-without-match
870 --count
871 --and --or --not --all-match
872 "
873 return
874 ;;
875 esac
876 COMPREPLY=()
877}
878
1eb7e2f8
LM
879_git_help ()
880{
881 local cur="${COMP_WORDS[COMP_CWORD]}"
882 case "$cur" in
883 --*)
884 __gitcomp "--all --info --man --web"
885 return
886 ;;
887 esac
2946cccf
MG
888 __gitcomp "$(__git_all_commands)
889 attributes cli core-tutorial cvs-migration
890 diffcore gitk glossary hooks ignore modules
891 repository-layout tutorial tutorial-2
892 "
1eb7e2f8
LM
893}
894
5dad868b
LM
895_git_init ()
896{
897 local cur="${COMP_WORDS[COMP_CWORD]}"
898 case "$cur" in
899 --shared=*)
900 __gitcomp "
901 false true umask group all world everybody
902 " "" "${cur##--shared=}"
903 return
904 ;;
905 --*)
906 __gitcomp "--quiet --bare --template= --shared --shared="
907 return
908 ;;
909 esac
910 COMPREPLY=()
911}
912
b1bc1494
LM
913_git_ls_files ()
914{
915 __git_has_doubledash && return
916
917 local cur="${COMP_WORDS[COMP_CWORD]}"
918 case "$cur" in
919 --*)
920 __gitcomp "--cached --deleted --modified --others --ignored
921 --stage --directory --no-empty-directory --unmerged
922 --killed --exclude= --exclude-from=
923 --exclude-per-directory= --exclude-standard
924 --error-unmatch --with-tree= --full-name
925 --abbrev --ignored --exclude-per-directory
926 "
927 return
928 ;;
929 esac
930 COMPREPLY=()
931}
932
690d8824
JH
933_git_ls_remote ()
934{
b3391775 935 __gitcomp "$(__git_remotes)"
690d8824
JH
936}
937
938_git_ls_tree ()
939{
940 __git_complete_file
941}
942
943_git_log ()
944{
d773c631
SG
945 __git_has_doubledash && return
946
6e31b866
SP
947 local cur="${COMP_WORDS[COMP_CWORD]}"
948 case "$cur" in
949 --pretty=*)
b3391775 950 __gitcomp "
6e31b866 951 oneline short medium full fuller email raw
b3391775 952 " "" "${cur##--pretty=}"
6e31b866
SP
953 return
954 ;;
47e98eec
SP
955 --date=*)
956 __gitcomp "
957 relative iso8601 rfc2822 short local default
958 " "" "${cur##--date=}"
959 return
960 ;;
6e31b866 961 --*)
b3391775 962 __gitcomp "
6e31b866
SP
963 --max-count= --max-age= --since= --after=
964 --min-age= --before= --until=
8f87fae6 965 --root --topo-order --date-order --reverse
47e98eec 966 --no-merges --follow
6e31b866 967 --abbrev-commit --abbrev=
47e98eec 968 --relative-date --date=
6e31b866
SP
969 --author= --committer= --grep=
970 --all-match
8f87fae6 971 --pretty= --name-status --name-only --raw
ec804891 972 --not --all
7d37b5bf 973 --left-right --cherry-pick
20827d99 974 --graph
66aafad5
TL
975 --stat --numstat --shortstat
976 --decorate --diff-filter=
977 --color-words --walk-reflogs
e49b99a6 978 --parents --children --full-history
5a13c8f6 979 --merge
b3391775 980 "
6e31b866
SP
981 return
982 ;;
983 esac
f53352fb 984 __git_complete_revlist
690d8824
JH
985}
986
4ad91321
SP
987_git_merge ()
988{
989 local cur="${COMP_WORDS[COMP_CWORD]}"
ce1e39d2
SP
990 case "${COMP_WORDS[COMP_CWORD-1]}" in
991 -s|--strategy)
b3391775 992 __gitcomp "$(__git_merge_strategies)"
ce1e39d2
SP
993 return
994 esac
4ad91321 995 case "$cur" in
ce1e39d2 996 --strategy=*)
b3391775 997 __gitcomp "$(__git_merge_strategies)" "" "${cur##--strategy=}"
ce1e39d2
SP
998 return
999 ;;
4ad91321 1000 --*)
b3391775 1001 __gitcomp "
efb779f8 1002 --no-commit --no-stat --log --no-log --squash --strategy
b3391775 1003 "
4ad91321
SP
1004 return
1005 esac
b3391775 1006 __gitcomp "$(__git_refs)"
4ad91321
SP
1007}
1008
b4c72162
LM
1009_git_mergetool ()
1010{
1011 local cur="${COMP_WORDS[COMP_CWORD]}"
1012 case "$cur" in
1013 --tool=*)
1014 __gitcomp "
1015 kdiff3 tkdiff meld xxdiff emerge
1016 vimdiff gvimdiff ecmerge opendiff
1017 " "" "${cur##--tool=}"
1018 return
1019 ;;
1020 --*)
1021 __gitcomp "--tool="
1022 return
1023 ;;
1024 esac
1025 COMPREPLY=()
1026}
1027
690d8824
JH
1028_git_merge_base ()
1029{
b3391775 1030 __gitcomp "$(__git_refs)"
690d8824
JH
1031}
1032
1127c51c
LM
1033_git_mv ()
1034{
1035 local cur="${COMP_WORDS[COMP_CWORD]}"
1036 case "$cur" in
1037 --*)
1038 __gitcomp "--dry-run"
1039 return
1040 ;;
1041 esac
1042 COMPREPLY=()
1043}
1044
d33909bf
SP
1045_git_name_rev ()
1046{
b3391775 1047 __gitcomp "--tags --all --stdin"
d33909bf
SP
1048}
1049
690d8824
JH
1050_git_pull ()
1051{
1052 local cur="${COMP_WORDS[COMP_CWORD]}"
1053
1054 case "${COMP_WORDS[0]},$COMP_CWORD" in
1055 git-pull*,1)
b3391775 1056 __gitcomp "$(__git_remotes)"
690d8824
JH
1057 ;;
1058 git,2)
b3391775 1059 __gitcomp "$(__git_remotes)"
690d8824
JH
1060 ;;
1061 *)
1062 local remote
1063 case "${COMP_WORDS[0]}" in
1064 git-pull) remote="${COMP_WORDS[1]}" ;;
1065 git) remote="${COMP_WORDS[2]}" ;;
1066 esac
b3391775 1067 __gitcomp "$(__git_refs "$remote")"
690d8824
JH
1068 ;;
1069 esac
1070}
1071
1072_git_push ()
1073{
1074 local cur="${COMP_WORDS[COMP_CWORD]}"
1075
1076 case "${COMP_WORDS[0]},$COMP_CWORD" in
1077 git-push*,1)
b3391775 1078 __gitcomp "$(__git_remotes)"
690d8824
JH
1079 ;;
1080 git,2)
b3391775 1081 __gitcomp "$(__git_remotes)"
690d8824
JH
1082 ;;
1083 *)
1084 case "$cur" in
1085 *:*)
1086 local remote
1087 case "${COMP_WORDS[0]}" in
1088 git-push) remote="${COMP_WORDS[1]}" ;;
1089 git) remote="${COMP_WORDS[2]}" ;;
1090 esac
db8a9ff0
SP
1091
1092 local pfx=""
1093 case "$COMP_WORDBREAKS" in
1094 *:*) : great ;;
1095 *) pfx="${cur%%:*}:" ;;
1096 esac
1097
1098 __gitcomp "$(__git_refs "$remote")" "$pfx" "${cur#*:}"
690d8824 1099 ;;
161fea83
SP
1100 +*)
1101 __gitcomp "$(__git_refs)" + "${cur#+}"
1102 ;;
690d8824 1103 *)
92d7c8e3 1104 __gitcomp "$(__git_refs)"
690d8824
JH
1105 ;;
1106 esac
1107 ;;
1108 esac
1109}
1110
61d926a3
SP
1111_git_rebase ()
1112{
51fe1209 1113 local cur="${COMP_WORDS[COMP_CWORD]}" dir="$(__gitdir)"
51ef1daa 1114 if [ -d "$dir"/rebase-apply ] || [ -d "$dir"/rebase-merge ]; then
b3391775 1115 __gitcomp "--continue --skip --abort"
61d926a3
SP
1116 return
1117 fi
ce1e39d2
SP
1118 case "${COMP_WORDS[COMP_CWORD-1]}" in
1119 -s|--strategy)
b3391775 1120 __gitcomp "$(__git_merge_strategies)"
ce1e39d2
SP
1121 return
1122 esac
61d926a3 1123 case "$cur" in
ce1e39d2 1124 --strategy=*)
b3391775 1125 __gitcomp "$(__git_merge_strategies)" "" "${cur##--strategy=}"
ce1e39d2
SP
1126 return
1127 ;;
61d926a3 1128 --*)
d9e3b702 1129 __gitcomp "--onto --merge --strategy --interactive"
61d926a3
SP
1130 return
1131 esac
b3391775 1132 __gitcomp "$(__git_refs)"
61d926a3
SP
1133}
1134
25a1f374
TL
1135_git_send_email ()
1136{
1137 local cur="${COMP_WORDS[COMP_CWORD]}"
1138 case "$cur" in
1139 --*)
1140 __gitcomp "--bcc --cc --cc-cmd --chain-reply-to --compose
1141 --dry-run --envelope-sender --from --identity
1142 --in-reply-to --no-chain-reply-to --no-signed-off-by-cc
1143 --no-suppress-from --no-thread --quiet
1144 --signed-off-by-cc --smtp-pass --smtp-server
1145 --smtp-server-port --smtp-ssl --smtp-user --subject
1146 --suppress-cc --suppress-from --thread --to"
1147 return
1148 ;;
1149 esac
1150 COMPREPLY=()
1151}
1152
e0d10e1c 1153_git_config ()
5de40f59
SP
1154{
1155 local cur="${COMP_WORDS[COMP_CWORD]}"
1156 local prv="${COMP_WORDS[COMP_CWORD-1]}"
1157 case "$prv" in
1158 branch.*.remote)
78d4d6a2 1159 __gitcomp "$(__git_remotes)"
5de40f59
SP
1160 return
1161 ;;
1162 branch.*.merge)
78d4d6a2 1163 __gitcomp "$(__git_refs)"
5de40f59
SP
1164 return
1165 ;;
1166 remote.*.fetch)
1167 local remote="${prv#remote.}"
1168 remote="${remote%.fetch}"
78d4d6a2 1169 __gitcomp "$(__git_refs_remotes "$remote")"
5de40f59
SP
1170 return
1171 ;;
1172 remote.*.push)
1173 local remote="${prv#remote.}"
1174 remote="${remote%.push}"
78d4d6a2 1175 __gitcomp "$(git --git-dir="$(__gitdir)" \
5de40f59 1176 for-each-ref --format='%(refname):%(refname)' \
78d4d6a2
SP
1177 refs/heads)"
1178 return
1179 ;;
1180 pull.twohead|pull.octopus)
1181 __gitcomp "$(__git_merge_strategies)"
1182 return
1183 ;;
1184 color.branch|color.diff|color.status)
1185 __gitcomp "always never auto"
1186 return
1187 ;;
1188 color.*.*)
1189 __gitcomp "
1190 black red green yellow blue magenta cyan white
1191 bold dim ul blink reverse
1192 "
5de40f59
SP
1193 return
1194 ;;
1195 *.*)
1196 COMPREPLY=()
1197 return
1198 ;;
1199 esac
1200 case "$cur" in
1201 --*)
78d4d6a2 1202 __gitcomp "
47e98eec 1203 --global --system --file=
12977705 1204 --list --replace-all
5de40f59 1205 --get --get-all --get-regexp
1b71eb35 1206 --add --unset --unset-all
12977705 1207 --remove-section --rename-section
78d4d6a2 1208 "
5de40f59
SP
1209 return
1210 ;;
1211 branch.*.*)
1212 local pfx="${cur%.*}."
1213 cur="${cur##*.}"
78d4d6a2 1214 __gitcomp "remote merge" "$pfx" "$cur"
5de40f59
SP
1215 return
1216 ;;
1217 branch.*)
1218 local pfx="${cur%.*}."
1219 cur="${cur#*.}"
78d4d6a2 1220 __gitcomp "$(__git_heads)" "$pfx" "$cur" "."
5de40f59
SP
1221 return
1222 ;;
1223 remote.*.*)
1224 local pfx="${cur%.*}."
1225 cur="${cur##*.}"
12977705
SP
1226 __gitcomp "
1227 url fetch push skipDefaultUpdate
1228 receivepack uploadpack tagopt
1229 " "$pfx" "$cur"
5de40f59
SP
1230 return
1231 ;;
1232 remote.*)
1233 local pfx="${cur%.*}."
1234 cur="${cur#*.}"
78d4d6a2 1235 __gitcomp "$(__git_remotes)" "$pfx" "$cur" "."
5de40f59
SP
1236 return
1237 ;;
1238 esac
78d4d6a2 1239 __gitcomp "
5de40f59
SP
1240 apply.whitespace
1241 core.fileMode
1242 core.gitProxy
1243 core.ignoreStat
1244 core.preferSymlinkRefs
1245 core.logAllRefUpdates
47e98eec 1246 core.loosecompression
5de40f59
SP
1247 core.repositoryFormatVersion
1248 core.sharedRepository
1249 core.warnAmbiguousRefs
1250 core.compression
78d4d6a2
SP
1251 core.packedGitWindowSize
1252 core.packedGitLimit
2122591b 1253 clean.requireForce
78d4d6a2
SP
1254 color.branch
1255 color.branch.current
1256 color.branch.local
1257 color.branch.remote
1258 color.branch.plain
a159ca0c 1259 color.diff
78d4d6a2
SP
1260 color.diff.plain
1261 color.diff.meta
1262 color.diff.frag
1263 color.diff.old
1264 color.diff.new
1265 color.diff.commit
1266 color.diff.whitespace
a159ca0c 1267 color.pager
a159ca0c 1268 color.status
78d4d6a2
SP
1269 color.status.header
1270 color.status.added
1271 color.status.changed
1272 color.status.untracked
1273 diff.renameLimit
1274 diff.renames
1275 fetch.unpackLimit
1276 format.headers
47e98eec 1277 format.subjectprefix
78d4d6a2
SP
1278 gitcvs.enabled
1279 gitcvs.logfile
12977705 1280 gitcvs.allbinary
6aeeffd1
JE
1281 gitcvs.dbname gitcvs.dbdriver gitcvs.dbuser gitcvs.dbpass
1282 gitcvs.dbtablenameprefix
12977705 1283 gc.packrefs
78d4d6a2
SP
1284 gc.reflogexpire
1285 gc.reflogexpireunreachable
1286 gc.rerereresolved
1287 gc.rerereunresolved
5de40f59
SP
1288 http.sslVerify
1289 http.sslCert
1290 http.sslKey
1291 http.sslCAInfo
1292 http.sslCAPath
1293 http.maxRequests
78d4d6a2
SP
1294 http.lowSpeedLimit
1295 http.lowSpeedTime
5de40f59 1296 http.noEPSV
78d4d6a2
SP
1297 i18n.commitEncoding
1298 i18n.logOutputEncoding
1299 log.showroot
12977705 1300 merge.tool
78d4d6a2
SP
1301 merge.summary
1302 merge.verbosity
5de40f59 1303 pack.window
12977705 1304 pack.depth
47e98eec
SP
1305 pack.windowMemory
1306 pack.compression
1307 pack.deltaCacheSize
1308 pack.deltaCacheLimit
78d4d6a2
SP
1309 pull.octopus
1310 pull.twohead
5de40f59 1311 repack.useDeltaBaseOffset
78d4d6a2
SP
1312 showbranch.default
1313 tar.umask
1314 transfer.unpackLimit
5de40f59
SP
1315 receive.unpackLimit
1316 receive.denyNonFastForwards
78d4d6a2
SP
1317 user.name
1318 user.email
1319 user.signingkey
5de40f59 1320 branch. remote.
78d4d6a2 1321 "
5de40f59
SP
1322}
1323
88293c67
SP
1324_git_remote ()
1325{
3ff1320d
SG
1326 local subcommands="add rm show prune update"
1327 local subcommand="$(__git_find_subcommand "$subcommands")"
1328 if [ -z "$subcommand" ]; then
3903c618 1329 __gitcomp "$subcommands"
88293c67
SP
1330 return
1331 fi
1332
3ff1320d 1333 case "$subcommand" in
a3b811a4 1334 rm|show|prune)
88293c67
SP
1335 __gitcomp "$(__git_remotes)"
1336 ;;
fb72759b
SP
1337 update)
1338 local i c='' IFS=$'\n'
1339 for i in $(git --git-dir="$(__gitdir)" config --list); do
1340 case "$i" in
1341 remotes.*)
1342 i="${i#remotes.}"
1343 c="$c ${i/=*/}"
1344 ;;
1345 esac
1346 done
1347 __gitcomp "$c"
1348 ;;
88293c67
SP
1349 *)
1350 COMPREPLY=()
1351 ;;
1352 esac
1353}
1354
67e78c3b
SP
1355_git_reset ()
1356{
d773c631
SG
1357 __git_has_doubledash && return
1358
67e78c3b 1359 local cur="${COMP_WORDS[COMP_CWORD]}"
b3391775
SP
1360 case "$cur" in
1361 --*)
1362 __gitcomp "--mixed --hard --soft"
1363 return
1364 ;;
1365 esac
1366 __gitcomp "$(__git_refs)"
67e78c3b
SP
1367}
1368
a6c2be24
LM
1369_git_revert ()
1370{
1371 local cur="${COMP_WORDS[COMP_CWORD]}"
1372 case "$cur" in
1373 --*)
1374 __gitcomp "--edit --mainline --no-edit --no-commit --signoff"
1375 return
1376 ;;
1377 esac
1378 COMPREPLY=()
1379}
1380
08c701d4
LM
1381_git_rm ()
1382{
1383 __git_has_doubledash && return
1384
1385 local cur="${COMP_WORDS[COMP_CWORD]}"
1386 case "$cur" in
1387 --*)
1388 __gitcomp "--cached --dry-run --ignore-unmatch --quiet"
1389 return
1390 ;;
1391 esac
1392 COMPREPLY=()
1393}
1394
1fd6bec9
SP
1395_git_shortlog ()
1396{
d773c631
SG
1397 __git_has_doubledash && return
1398
1fd6bec9
SP
1399 local cur="${COMP_WORDS[COMP_CWORD]}"
1400 case "$cur" in
1401 --*)
1402 __gitcomp "
1403 --max-count= --max-age= --since= --after=
1404 --min-age= --before= --until=
1405 --no-merges
1406 --author= --committer= --grep=
1407 --all-match
1408 --not --all
1409 --numbered --summary
1410 "
1411 return
1412 ;;
1413 esac
1414 __git_complete_revlist
1415}
1416
90131924
SP
1417_git_show ()
1418{
1419 local cur="${COMP_WORDS[COMP_CWORD]}"
1420 case "$cur" in
1421 --pretty=*)
b3391775 1422 __gitcomp "
90131924 1423 oneline short medium full fuller email raw
b3391775 1424 " "" "${cur##--pretty=}"
90131924
SP
1425 return
1426 ;;
1427 --*)
b3391775 1428 __gitcomp "--pretty="
90131924
SP
1429 return
1430 ;;
1431 esac
1432 __git_complete_file
1433}
1434
2ca880fe
TR
1435_git_show_branch ()
1436{
1437 local cur="${COMP_WORDS[COMP_CWORD]}"
1438 case "$cur" in
1439 --*)
1440 __gitcomp "
1441 --all --remotes --topo-order --current --more=
1442 --list --independent --merge-base --no-name
1443 --sha1-name --topics --reflog
1444 "
1445 return
1446 ;;
1447 esac
1448 __git_complete_revlist
1449}
1450
7fd53fce
JH
1451_git_stash ()
1452{
95d43780 1453 local subcommands='save list show apply clear drop pop create branch'
7bedebca
SG
1454 local subcommand="$(__git_find_subcommand "$subcommands")"
1455 if [ -z "$subcommand" ]; then
3ff1320d 1456 __gitcomp "$subcommands"
7bedebca
SG
1457 else
1458 local cur="${COMP_WORDS[COMP_CWORD]}"
1459 case "$subcommand,$cur" in
1460 save,--*)
1461 __gitcomp "--keep-index"
1462 ;;
95d43780
LM
1463 apply,--*)
1464 __gitcomp "--index"
1465 ;;
5a7ebd4f 1466 show,--*|drop,--*|pop,--*|branch,--*)
95d43780
LM
1467 COMPREPLY=()
1468 ;;
1469 show,*|apply,*|drop,*|pop,*|branch,*)
1470 __gitcomp "$(git --git-dir="$(__gitdir)" stash list \
1471 | sed -n -e 's/:.*//p')"
1472 ;;
7bedebca
SG
1473 *)
1474 COMPREPLY=()
1475 ;;
1476 esac
3ff1320d 1477 fi
7fd53fce
JH
1478}
1479
be86f7a0
SP
1480_git_submodule ()
1481{
d773c631
SG
1482 __git_has_doubledash && return
1483
3ff1320d
SG
1484 local subcommands="add status init update"
1485 if [ -z "$(__git_find_subcommand "$subcommands")" ]; then
be86f7a0
SP
1486 local cur="${COMP_WORDS[COMP_CWORD]}"
1487 case "$cur" in
1488 --*)
1489 __gitcomp "--quiet --cached"
1490 ;;
1491 *)
3ff1320d 1492 __gitcomp "$subcommands"
be86f7a0
SP
1493 ;;
1494 esac
1495 return
1496 fi
1497}
1498
47f6ee28
SG
1499_git_svn ()
1500{
1501 local subcommands="
1502 init fetch clone rebase dcommit log find-rev
1503 set-tree commit-diff info create-ignore propget
1504 proplist show-ignore show-externals
1505 "
1506 local subcommand="$(__git_find_subcommand "$subcommands")"
1507 if [ -z "$subcommand" ]; then
1508 __gitcomp "$subcommands"
1509 else
1510 local remote_opts="--username= --config-dir= --no-auth-cache"
1511 local fc_opts="
1512 --follow-parent --authors-file= --repack=
1513 --no-metadata --use-svm-props --use-svnsync-props
1514 --log-window-size= --no-checkout --quiet
1515 --repack-flags --user-log-author $remote_opts
1516 "
1517 local init_opts="
1518 --template= --shared= --trunk= --tags=
1519 --branches= --stdlayout --minimize-url
1520 --no-metadata --use-svm-props --use-svnsync-props
1521 --rewrite-root= $remote_opts
1522 "
1523 local cmt_opts="
1524 --edit --rmdir --find-copies-harder --copy-similarity=
1525 "
1526
1527 local cur="${COMP_WORDS[COMP_CWORD]}"
1528 case "$subcommand,$cur" in
1529 fetch,--*)
1530 __gitcomp "--revision= --fetch-all $fc_opts"
1531 ;;
1532 clone,--*)
1533 __gitcomp "--revision= $fc_opts $init_opts"
1534 ;;
1535 init,--*)
1536 __gitcomp "$init_opts"
1537 ;;
1538 dcommit,--*)
1539 __gitcomp "
1540 --merge --strategy= --verbose --dry-run
1541 --fetch-all --no-rebase $cmt_opts $fc_opts
1542 "
1543 ;;
1544 set-tree,--*)
1545 __gitcomp "--stdin $cmt_opts $fc_opts"
1546 ;;
1547 create-ignore,--*|propget,--*|proplist,--*|show-ignore,--*|\
1548 show-externals,--*)
1549 __gitcomp "--revision="
1550 ;;
1551 log,--*)
1552 __gitcomp "
1553 --limit= --revision= --verbose --incremental
1554 --oneline --show-commit --non-recursive
1555 --authors-file=
1556 "
1557 ;;
1558 rebase,--*)
1559 __gitcomp "
1560 --merge --verbose --strategy= --local
1561 --fetch-all $fc_opts
1562 "
1563 ;;
1564 commit-diff,--*)
1565 __gitcomp "--message= --file= --revision= $cmt_opts"
1566 ;;
1567 info,--*)
1568 __gitcomp "--url"
1569 ;;
1570 *)
1571 COMPREPLY=()
1572 ;;
1573 esac
1574 fi
1575}
1576
88e21dc7
SP
1577_git_tag ()
1578{
1579 local i c=1 f=0
1580 while [ $c -lt $COMP_CWORD ]; do
1581 i="${COMP_WORDS[c]}"
1582 case "$i" in
1583 -d|-v)
1584 __gitcomp "$(__git_tags)"
1585 return
1586 ;;
1587 -f)
1588 f=1
1589 ;;
1590 esac
1591 c=$((++c))
1592 done
1593
1594 case "${COMP_WORDS[COMP_CWORD-1]}" in
1595 -m|-F)
1596 COMPREPLY=()
1597 ;;
1598 -*|tag|git-tag)
1599 if [ $f = 1 ]; then
1600 __gitcomp "$(__git_tags)"
1601 else
1602 COMPREPLY=()
1603 fi
1604 ;;
1605 *)
1606 __gitcomp "$(__git_refs)"
1607 ;;
1608 esac
1609}
1610
690d8824
JH
1611_git ()
1612{
873537fa
SP
1613 local i c=1 command __git_dir
1614
1615 while [ $c -lt $COMP_CWORD ]; do
1616 i="${COMP_WORDS[c]}"
1617 case "$i" in
1618 --git-dir=*) __git_dir="${i#--git-dir=}" ;;
1619 --bare) __git_dir="." ;;
1eb7e2f8
LM
1620 --version|-p|--paginate) ;;
1621 --help) command="help"; break ;;
873537fa
SP
1622 *) command="$i"; break ;;
1623 esac
1624 c=$((++c))
1625 done
1626
1d17b22e 1627 if [ -z "$command" ]; then
72e5e989
SP
1628 case "${COMP_WORDS[COMP_CWORD]}" in
1629 --*=*) COMPREPLY=() ;;
47e98eec 1630 --*) __gitcomp "
ce5a2c95 1631 --paginate
47e98eec
SP
1632 --no-pager
1633 --git-dir=
1634 --bare
1635 --version
1636 --exec-path
ce5a2c95
TL
1637 --work-tree=
1638 --help
47e98eec
SP
1639 "
1640 ;;
1eb7e2f8 1641 *) __gitcomp "$(__git_porcelain_commands) $(__git_aliases)" ;;
72e5e989
SP
1642 esac
1643 return
873537fa 1644 fi
367dce2a 1645
873537fa
SP
1646 local expansion=$(__git_aliased_command "$command")
1647 [ "$expansion" ] && command="$expansion"
367dce2a 1648
873537fa 1649 case "$command" in
88329195 1650 am) _git_am ;;
8435b548 1651 add) _git_add ;;
88329195 1652 apply) _git_apply ;;
b3191ce2 1653 archive) _git_archive ;;
b2e69f62 1654 bisect) _git_bisect ;;
374a58c9 1655 bundle) _git_bundle ;;
873537fa 1656 branch) _git_branch ;;
873537fa 1657 checkout) _git_checkout ;;
d8a9fea5 1658 cherry) _git_cherry ;;
1273231e 1659 cherry-pick) _git_cherry_pick ;;
4181c7e8 1660 clean) _git_clean ;;
3eb11012 1661 clone) _git_clone ;;
4548e855 1662 commit) _git_commit ;;
e0d10e1c 1663 config) _git_config ;;
217926c0 1664 describe) _git_describe ;;
873537fa 1665 diff) _git_diff ;;
873537fa 1666 fetch) _git_fetch ;;
f53352fb 1667 format-patch) _git_format_patch ;;
b26c8748 1668 gc) _git_gc ;;
c72e0db1 1669 grep) _git_grep ;;
1eb7e2f8 1670 help) _git_help ;;
5dad868b 1671 init) _git_init ;;
873537fa 1672 log) _git_log ;;
b1bc1494 1673 ls-files) _git_ls_files ;;
873537fa
SP
1674 ls-remote) _git_ls_remote ;;
1675 ls-tree) _git_ls_tree ;;
4ad91321 1676 merge) _git_merge;;
b4c72162 1677 mergetool) _git_mergetool;;
873537fa 1678 merge-base) _git_merge_base ;;
1127c51c 1679 mv) _git_mv ;;
d33909bf 1680 name-rev) _git_name_rev ;;
873537fa
SP
1681 pull) _git_pull ;;
1682 push) _git_push ;;
61d926a3 1683 rebase) _git_rebase ;;
88293c67 1684 remote) _git_remote ;;
873537fa 1685 reset) _git_reset ;;
a6c2be24 1686 revert) _git_revert ;;
08c701d4 1687 rm) _git_rm ;;
25a1f374 1688 send-email) _git_send_email ;;
1fd6bec9 1689 shortlog) _git_shortlog ;;
90131924 1690 show) _git_show ;;
2ca880fe 1691 show-branch) _git_show_branch ;;
7fd53fce 1692 stash) _git_stash ;;
be86f7a0 1693 submodule) _git_submodule ;;
47f6ee28 1694 svn) _git_svn ;;
88e21dc7 1695 tag) _git_tag ;;
873537fa
SP
1696 whatchanged) _git_log ;;
1697 *) COMPREPLY=() ;;
1698 esac
690d8824
JH
1699}
1700
1701_gitk ()
1702{
d773c631
SG
1703 __git_has_doubledash && return
1704
690d8824 1705 local cur="${COMP_WORDS[COMP_CWORD]}"
07ba53f7
RQ
1706 local g="$(git rev-parse --git-dir 2>/dev/null)"
1707 local merge=""
1708 if [ -f $g/MERGE_HEAD ]; then
1709 merge="--merge"
1710 fi
b3391775
SP
1711 case "$cur" in
1712 --*)
07ba53f7 1713 __gitcomp "--not --all $merge"
b3391775
SP
1714 return
1715 ;;
1716 esac
ec804891 1717 __git_complete_revlist
690d8824
JH
1718}
1719
1720complete -o default -o nospace -F _git git
b3391775 1721complete -o default -o nospace -F _gitk gitk
690d8824
JH
1722
1723# The following are necessary only for Cygwin, and only are needed
1724# when the user has tab-completed the executable name and consequently
1725# included the '.exe' suffix.
1726#
76c3eb51 1727if [ Cygwin = "$(uname -o 2>/dev/null)" ]; then
144d33de 1728complete -o default -o nospace -F _git git.exe
76c3eb51 1729fi