completion: add {gui,diff,merge}tool, man, and pager config variables
[git/gitweb.git] / contrib / completion / git-completion.bash
blobec02b06cf2ba2a66da8bc8414f63c931e3a2c4f2
1 #!bash
3 # bash completion support for core Git.
5 # Copyright (C) 2006,2007 Shawn O. Pearce <spearce@spearce.org>
6 # Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/).
7 # Distributed under the GNU General Public License, version 2.0.
9 # The contained completion routines provide support for completing:
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
16 # *) common --long-options
18 # To use these routines:
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
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.
30 # 4) Consider changing your PS1 to also show the current branch:
31 # PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ '
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.
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.
43 # To submit patches:
45 # *) Read Documentation/SubmittingPatches
46 # *) Send all patches to the current maintainer:
48 # "Shawn O. Pearce" <spearce@spearce.org>
50 # *) Always CC the Git mailing list:
52 # git@vger.kernel.org
55 case "$COMP_WORDBREAKS" in
56 *:*) : great ;;
57 *) COMP_WORDBREAKS="$COMP_WORDBREAKS:"
58 esac
60 # __gitdir accepts 0 or 1 arguments (i.e., location)
61 # returns location of .git repo
62 __gitdir ()
64 if [ -z "${1-}" ]; then
65 if [ -n "${__git_dir-}" ]; then
66 echo "$__git_dir"
67 elif [ -d .git ]; then
68 echo .git
69 else
70 git rev-parse --git-dir 2>/dev/null
72 elif [ -d "$1/.git" ]; then
73 echo "$1/.git"
74 else
75 echo "$1"
79 # __git_ps1 accepts 0 or 1 arguments (i.e., format string)
80 # returns text to add to bash PS1 prompt (includes branch name)
81 __git_ps1 ()
83 local g="$(__gitdir)"
84 if [ -n "$g" ]; then
85 local r
86 local b
87 if [ -d "$g/rebase-apply" ]; then
88 if [ -f "$g/rebase-apply/rebasing" ]; then
89 r="|REBASE"
90 elif [ -f "$g/rebase-apply/applying" ]; then
91 r="|AM"
92 else
93 r="|AM/REBASE"
95 b="$(git symbolic-ref HEAD 2>/dev/null)"
96 elif [ -f "$g/rebase-merge/interactive" ]; then
97 r="|REBASE-i"
98 b="$(cat "$g/rebase-merge/head-name")"
99 elif [ -d "$g/rebase-merge" ]; then
100 r="|REBASE-m"
101 b="$(cat "$g/rebase-merge/head-name")"
102 elif [ -f "$g/MERGE_HEAD" ]; then
103 r="|MERGING"
104 b="$(git symbolic-ref HEAD 2>/dev/null)"
105 else
106 if [ -f "$g/BISECT_LOG" ]; then
107 r="|BISECTING"
109 if ! b="$(git symbolic-ref HEAD 2>/dev/null)"; then
110 if ! b="$(git describe --exact-match HEAD 2>/dev/null)"; then
111 if [ -r "$g/HEAD" ]; then
112 b="$(cut -c1-7 "$g/HEAD")..."
118 local w
119 local i
120 local c
122 if [ "true" = "$(git rev-parse --is-inside-git-dir 2>/dev/null)" ]; then
123 if [ "true" = "$(git config --bool core.bare 2>/dev/null)" ]; then
124 c="BARE:"
125 else
126 b="GIT_DIR!"
128 elif [ "true" = "$(git rev-parse --is-inside-work-tree 2>/dev/null)" ]; then
129 if [ -n "${GIT_PS1_SHOWDIRTYSTATE-}" ]; then
130 if [ "$(git config --bool bash.showDirtyState)" != "false" ]; then
131 git diff --no-ext-diff --ignore-submodules \
132 --quiet --exit-code || w="*"
133 if git rev-parse --quiet --verify HEAD >/dev/null; then
134 git diff-index --cached --quiet \
135 --ignore-submodules HEAD -- || i="+"
136 else
137 i="#"
143 if [ -n "$b" ]; then
144 if [ -n "${1-}" ]; then
145 printf "$1" "$c${b##refs/heads/}$w$i$r"
146 else
147 printf " (%s)" "$c${b##refs/heads/}$w$i$r"
153 # __gitcomp_1 requires 2 arguments
154 __gitcomp_1 ()
156 local c IFS=' '$'\t'$'\n'
157 for c in $1; do
158 case "$c$2" in
159 --*=*) printf %s$'\n' "$c$2" ;;
160 *.) printf %s$'\n' "$c$2" ;;
161 *) printf %s$'\n' "$c$2 " ;;
162 esac
163 done
166 # __gitcomp accepts 1, 2, 3, or 4 arguments
167 # generates completion reply with compgen
168 __gitcomp ()
170 local cur="${COMP_WORDS[COMP_CWORD]}"
171 if [ $# -gt 2 ]; then
172 cur="$3"
174 case "$cur" in
175 --*=)
176 COMPREPLY=()
179 local IFS=$'\n'
180 COMPREPLY=($(compgen -P "${2-}" \
181 -W "$(__gitcomp_1 "${1-}" "${4-}")" \
182 -- "$cur"))
184 esac
187 # __git_heads accepts 0 or 1 arguments (to pass to __gitdir)
188 __git_heads ()
190 local cmd i is_hash=y dir="$(__gitdir "${1-}")"
191 if [ -d "$dir" ]; then
192 git --git-dir="$dir" for-each-ref --format='%(refname:short)' \
193 refs/heads
194 return
196 for i in $(git ls-remote "${1-}" 2>/dev/null); do
197 case "$is_hash,$i" in
198 y,*) is_hash=n ;;
199 n,*^{}) is_hash=y ;;
200 n,refs/heads/*) is_hash=y; echo "${i#refs/heads/}" ;;
201 n,*) is_hash=y; echo "$i" ;;
202 esac
203 done
206 # __git_tags accepts 0 or 1 arguments (to pass to __gitdir)
207 __git_tags ()
209 local cmd i is_hash=y dir="$(__gitdir "${1-}")"
210 if [ -d "$dir" ]; then
211 git --git-dir="$dir" for-each-ref --format='%(refname:short)' \
212 refs/tags
213 return
215 for i in $(git ls-remote "${1-}" 2>/dev/null); do
216 case "$is_hash,$i" in
217 y,*) is_hash=n ;;
218 n,*^{}) is_hash=y ;;
219 n,refs/tags/*) is_hash=y; echo "${i#refs/tags/}" ;;
220 n,*) is_hash=y; echo "$i" ;;
221 esac
222 done
225 # __git_refs accepts 0 or 1 arguments (to pass to __gitdir)
226 __git_refs ()
228 local i is_hash=y dir="$(__gitdir "${1-}")"
229 local cur="${COMP_WORDS[COMP_CWORD]}" format refs
230 if [ -d "$dir" ]; then
231 case "$cur" in
232 refs|refs/*)
233 format="refname"
234 refs="${cur%/*}"
237 if [ -e "$dir/HEAD" ]; then echo HEAD; fi
238 format="refname:short"
239 refs="refs/tags refs/heads refs/remotes"
241 esac
242 git --git-dir="$dir" for-each-ref --format="%($format)" \
243 $refs
244 return
246 for i in $(git ls-remote "$dir" 2>/dev/null); do
247 case "$is_hash,$i" in
248 y,*) is_hash=n ;;
249 n,*^{}) is_hash=y ;;
250 n,refs/tags/*) is_hash=y; echo "${i#refs/tags/}" ;;
251 n,refs/heads/*) is_hash=y; echo "${i#refs/heads/}" ;;
252 n,refs/remotes/*) is_hash=y; echo "${i#refs/remotes/}" ;;
253 n,*) is_hash=y; echo "$i" ;;
254 esac
255 done
258 # __git_refs2 requires 1 argument (to pass to __git_refs)
259 __git_refs2 ()
261 local i
262 for i in $(__git_refs "$1"); do
263 echo "$i:$i"
264 done
267 # __git_refs_remotes requires 1 argument (to pass to ls-remote)
268 __git_refs_remotes ()
270 local cmd i is_hash=y
271 for i in $(git ls-remote "$1" 2>/dev/null); do
272 case "$is_hash,$i" in
273 n,refs/heads/*)
274 is_hash=y
275 echo "$i:refs/remotes/$1/${i#refs/heads/}"
277 y,*) is_hash=n ;;
278 n,*^{}) is_hash=y ;;
279 n,refs/tags/*) is_hash=y;;
280 n,*) is_hash=y; ;;
281 esac
282 done
285 __git_remotes ()
287 local i ngoff IFS=$'\n' d="$(__gitdir)"
288 shopt -q nullglob || ngoff=1
289 shopt -s nullglob
290 for i in "$d/remotes"/*; do
291 echo ${i#$d/remotes/}
292 done
293 [ "$ngoff" ] && shopt -u nullglob
294 for i in $(git --git-dir="$d" config --list); do
295 case "$i" in
296 remote.*.url=*)
297 i="${i#remote.}"
298 echo "${i/.url=*/}"
300 esac
301 done
304 __git_merge_strategies ()
306 if [ -n "${__git_merge_strategylist-}" ]; then
307 echo "$__git_merge_strategylist"
308 return
310 git merge -s help 2>&1 |
311 sed -n -e '/[Aa]vailable strategies are: /,/^$/{
312 s/\.$//
313 s/.*://
314 s/^[ ]*//
315 s/[ ]*$//
319 __git_merge_strategylist=
320 __git_merge_strategylist=$(__git_merge_strategies 2>/dev/null)
322 __git_complete_file ()
324 local pfx ls ref cur="${COMP_WORDS[COMP_CWORD]}"
325 case "$cur" in
326 ?*:*)
327 ref="${cur%%:*}"
328 cur="${cur#*:}"
329 case "$cur" in
330 ?*/*)
331 pfx="${cur%/*}"
332 cur="${cur##*/}"
333 ls="$ref:$pfx"
334 pfx="$pfx/"
337 ls="$ref"
339 esac
341 case "$COMP_WORDBREAKS" in
342 *:*) : great ;;
343 *) pfx="$ref:$pfx" ;;
344 esac
346 local IFS=$'\n'
347 COMPREPLY=($(compgen -P "$pfx" \
348 -W "$(git --git-dir="$(__gitdir)" ls-tree "$ls" \
349 | sed '/^100... blob /{
350 s,^.* ,,
351 s,$, ,
353 /^120000 blob /{
354 s,^.* ,,
355 s,$, ,
357 /^040000 tree /{
358 s,^.* ,,
359 s,$,/,
361 s/^.* //')" \
362 -- "$cur"))
365 __gitcomp "$(__git_refs)"
367 esac
370 __git_complete_revlist ()
372 local pfx cur="${COMP_WORDS[COMP_CWORD]}"
373 case "$cur" in
374 *...*)
375 pfx="${cur%...*}..."
376 cur="${cur#*...}"
377 __gitcomp "$(__git_refs)" "$pfx" "$cur"
379 *..*)
380 pfx="${cur%..*}.."
381 cur="${cur#*..}"
382 __gitcomp "$(__git_refs)" "$pfx" "$cur"
385 __gitcomp "$(__git_refs)"
387 esac
390 __git_complete_remote_or_refspec ()
392 local cmd="${COMP_WORDS[1]}"
393 local cur="${COMP_WORDS[COMP_CWORD]}"
394 local i c=2 remote="" pfx="" lhs=1 no_complete_refspec=0
395 while [ $c -lt $COMP_CWORD ]; do
396 i="${COMP_WORDS[c]}"
397 case "$i" in
398 --all|--mirror) [ "$cmd" = "push" ] && no_complete_refspec=1 ;;
399 -*) ;;
400 *) remote="$i"; break ;;
401 esac
402 c=$((++c))
403 done
404 if [ -z "$remote" ]; then
405 __gitcomp "$(__git_remotes)"
406 return
408 if [ $no_complete_refspec = 1 ]; then
409 COMPREPLY=()
410 return
412 [ "$remote" = "." ] && remote=
413 case "$cur" in
414 *:*)
415 case "$COMP_WORDBREAKS" in
416 *:*) : great ;;
417 *) pfx="${cur%%:*}:" ;;
418 esac
419 cur="${cur#*:}"
420 lhs=0
423 pfx="+"
424 cur="${cur#+}"
426 esac
427 case "$cmd" in
428 fetch)
429 if [ $lhs = 1 ]; then
430 __gitcomp "$(__git_refs2 "$remote")" "$pfx" "$cur"
431 else
432 __gitcomp "$(__git_refs)" "$pfx" "$cur"
435 pull)
436 if [ $lhs = 1 ]; then
437 __gitcomp "$(__git_refs "$remote")" "$pfx" "$cur"
438 else
439 __gitcomp "$(__git_refs)" "$pfx" "$cur"
442 push)
443 if [ $lhs = 1 ]; then
444 __gitcomp "$(__git_refs)" "$pfx" "$cur"
445 else
446 __gitcomp "$(__git_refs "$remote")" "$pfx" "$cur"
449 esac
452 __git_complete_strategy ()
454 case "${COMP_WORDS[COMP_CWORD-1]}" in
455 -s|--strategy)
456 __gitcomp "$(__git_merge_strategies)"
457 return 0
458 esac
459 local cur="${COMP_WORDS[COMP_CWORD]}"
460 case "$cur" in
461 --strategy=*)
462 __gitcomp "$(__git_merge_strategies)" "" "${cur##--strategy=}"
463 return 0
465 esac
466 return 1
469 __git_all_commands ()
471 if [ -n "${__git_all_commandlist-}" ]; then
472 echo "$__git_all_commandlist"
473 return
475 local i IFS=" "$'\n'
476 for i in $(git help -a|egrep '^ ')
478 case $i in
479 *--*) : helper pattern;;
480 *) echo $i;;
481 esac
482 done
484 __git_all_commandlist=
485 __git_all_commandlist="$(__git_all_commands 2>/dev/null)"
487 __git_porcelain_commands ()
489 if [ -n "${__git_porcelain_commandlist-}" ]; then
490 echo "$__git_porcelain_commandlist"
491 return
493 local i IFS=" "$'\n'
494 for i in "help" $(__git_all_commands)
496 case $i in
497 *--*) : helper pattern;;
498 applymbox) : ask gittus;;
499 applypatch) : ask gittus;;
500 archimport) : import;;
501 cat-file) : plumbing;;
502 check-attr) : plumbing;;
503 check-ref-format) : plumbing;;
504 checkout-index) : plumbing;;
505 commit-tree) : plumbing;;
506 count-objects) : infrequent;;
507 cvsexportcommit) : export;;
508 cvsimport) : import;;
509 cvsserver) : daemon;;
510 daemon) : daemon;;
511 diff-files) : plumbing;;
512 diff-index) : plumbing;;
513 diff-tree) : plumbing;;
514 fast-import) : import;;
515 fast-export) : export;;
516 fsck-objects) : plumbing;;
517 fetch-pack) : plumbing;;
518 fmt-merge-msg) : plumbing;;
519 for-each-ref) : plumbing;;
520 hash-object) : plumbing;;
521 http-*) : transport;;
522 index-pack) : plumbing;;
523 init-db) : deprecated;;
524 local-fetch) : plumbing;;
525 lost-found) : infrequent;;
526 ls-files) : plumbing;;
527 ls-remote) : plumbing;;
528 ls-tree) : plumbing;;
529 mailinfo) : plumbing;;
530 mailsplit) : plumbing;;
531 merge-*) : plumbing;;
532 mktree) : plumbing;;
533 mktag) : plumbing;;
534 pack-objects) : plumbing;;
535 pack-redundant) : plumbing;;
536 pack-refs) : plumbing;;
537 parse-remote) : plumbing;;
538 patch-id) : plumbing;;
539 peek-remote) : plumbing;;
540 prune) : plumbing;;
541 prune-packed) : plumbing;;
542 quiltimport) : import;;
543 read-tree) : plumbing;;
544 receive-pack) : plumbing;;
545 reflog) : plumbing;;
546 repo-config) : deprecated;;
547 rerere) : plumbing;;
548 rev-list) : plumbing;;
549 rev-parse) : plumbing;;
550 runstatus) : plumbing;;
551 sh-setup) : internal;;
552 shell) : daemon;;
553 show-ref) : plumbing;;
554 send-pack) : plumbing;;
555 show-index) : plumbing;;
556 ssh-*) : transport;;
557 stripspace) : plumbing;;
558 symbolic-ref) : plumbing;;
559 tar-tree) : deprecated;;
560 unpack-file) : plumbing;;
561 unpack-objects) : plumbing;;
562 update-index) : plumbing;;
563 update-ref) : plumbing;;
564 update-server-info) : daemon;;
565 upload-archive) : plumbing;;
566 upload-pack) : plumbing;;
567 write-tree) : plumbing;;
568 var) : infrequent;;
569 verify-pack) : infrequent;;
570 verify-tag) : plumbing;;
571 *) echo $i;;
572 esac
573 done
575 __git_porcelain_commandlist=
576 __git_porcelain_commandlist="$(__git_porcelain_commands 2>/dev/null)"
578 __git_aliases ()
580 local i IFS=$'\n'
581 for i in $(git --git-dir="$(__gitdir)" config --list); do
582 case "$i" in
583 alias.*)
584 i="${i#alias.}"
585 echo "${i/=*/}"
587 esac
588 done
591 # __git_aliased_command requires 1 argument
592 __git_aliased_command ()
594 local word cmdline=$(git --git-dir="$(__gitdir)" \
595 config --get "alias.$1")
596 for word in $cmdline; do
597 if [ "${word##-*}" ]; then
598 echo $word
599 return
601 done
604 # __git_find_subcommand requires 1 argument
605 __git_find_subcommand ()
607 local word subcommand c=1
609 while [ $c -lt $COMP_CWORD ]; do
610 word="${COMP_WORDS[c]}"
611 for subcommand in $1; do
612 if [ "$subcommand" = "$word" ]; then
613 echo "$subcommand"
614 return
616 done
617 c=$((++c))
618 done
621 __git_has_doubledash ()
623 local c=1
624 while [ $c -lt $COMP_CWORD ]; do
625 if [ "--" = "${COMP_WORDS[c]}" ]; then
626 return 0
628 c=$((++c))
629 done
630 return 1
633 __git_whitespacelist="nowarn warn error error-all fix"
635 _git_am ()
637 local cur="${COMP_WORDS[COMP_CWORD]}" dir="$(__gitdir)"
638 if [ -d "$dir"/rebase-apply ]; then
639 __gitcomp "--skip --resolved --abort"
640 return
642 case "$cur" in
643 --whitespace=*)
644 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
645 return
647 --*)
648 __gitcomp "
649 --3way --committer-date-is-author-date --ignore-date
650 --interactive --keep --no-utf8 --signoff --utf8
651 --whitespace=
653 return
654 esac
655 COMPREPLY=()
658 _git_apply ()
660 local cur="${COMP_WORDS[COMP_CWORD]}"
661 case "$cur" in
662 --whitespace=*)
663 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
664 return
666 --*)
667 __gitcomp "
668 --stat --numstat --summary --check --index
669 --cached --index-info --reverse --reject --unidiff-zero
670 --apply --no-add --exclude=
671 --whitespace= --inaccurate-eof --verbose
673 return
674 esac
675 COMPREPLY=()
678 _git_add ()
680 __git_has_doubledash && return
682 local cur="${COMP_WORDS[COMP_CWORD]}"
683 case "$cur" in
684 --*)
685 __gitcomp "
686 --interactive --refresh --patch --update --dry-run
687 --ignore-errors --intent-to-add
689 return
690 esac
691 COMPREPLY=()
694 _git_archive ()
696 local cur="${COMP_WORDS[COMP_CWORD]}"
697 case "$cur" in
698 --format=*)
699 __gitcomp "$(git archive --list)" "" "${cur##--format=}"
700 return
702 --remote=*)
703 __gitcomp "$(__git_remotes)" "" "${cur##--remote=}"
704 return
706 --*)
707 __gitcomp "
708 --format= --list --verbose
709 --prefix= --remote= --exec=
711 return
713 esac
714 __git_complete_file
717 _git_bisect ()
719 __git_has_doubledash && return
721 local subcommands="start bad good skip reset visualize replay log run"
722 local subcommand="$(__git_find_subcommand "$subcommands")"
723 if [ -z "$subcommand" ]; then
724 __gitcomp "$subcommands"
725 return
728 case "$subcommand" in
729 bad|good|reset|skip)
730 __gitcomp "$(__git_refs)"
733 COMPREPLY=()
735 esac
738 _git_branch ()
740 local i c=1 only_local_ref="n" has_r="n"
742 while [ $c -lt $COMP_CWORD ]; do
743 i="${COMP_WORDS[c]}"
744 case "$i" in
745 -d|-m) only_local_ref="y" ;;
746 -r) has_r="y" ;;
747 esac
748 c=$((++c))
749 done
751 case "${COMP_WORDS[COMP_CWORD]}" in
752 --*)
753 __gitcomp "
754 --color --no-color --verbose --abbrev= --no-abbrev
755 --track --no-track --contains --merged --no-merged
759 if [ $only_local_ref = "y" -a $has_r = "n" ]; then
760 __gitcomp "$(__git_heads)"
761 else
762 __gitcomp "$(__git_refs)"
765 esac
768 _git_bundle ()
770 local cmd="${COMP_WORDS[2]}"
771 case "$COMP_CWORD" in
773 __gitcomp "create list-heads verify unbundle"
776 # looking for a file
779 case "$cmd" in
780 create)
781 __git_complete_revlist
783 esac
785 esac
788 _git_checkout ()
790 __git_has_doubledash && return
792 __gitcomp "$(__git_refs)"
795 _git_cherry ()
797 __gitcomp "$(__git_refs)"
800 _git_cherry_pick ()
802 local cur="${COMP_WORDS[COMP_CWORD]}"
803 case "$cur" in
804 --*)
805 __gitcomp "--edit --no-commit"
808 __gitcomp "$(__git_refs)"
810 esac
813 _git_clean ()
815 __git_has_doubledash && return
817 local cur="${COMP_WORDS[COMP_CWORD]}"
818 case "$cur" in
819 --*)
820 __gitcomp "--dry-run --quiet"
821 return
823 esac
824 COMPREPLY=()
827 _git_clone ()
829 local cur="${COMP_WORDS[COMP_CWORD]}"
830 case "$cur" in
831 --*)
832 __gitcomp "
833 --local
834 --no-hardlinks
835 --shared
836 --reference
837 --quiet
838 --no-checkout
839 --bare
840 --mirror
841 --origin
842 --upload-pack
843 --template=
844 --depth
846 return
848 esac
849 COMPREPLY=()
852 _git_commit ()
854 __git_has_doubledash && return
856 local cur="${COMP_WORDS[COMP_CWORD]}"
857 case "$cur" in
858 --*)
859 __gitcomp "
860 --all --author= --signoff --verify --no-verify
861 --edit --amend --include --only --interactive
863 return
864 esac
865 COMPREPLY=()
868 _git_describe ()
870 local cur="${COMP_WORDS[COMP_CWORD]}"
871 case "$cur" in
872 --*)
873 __gitcomp "
874 --all --tags --contains --abbrev= --candidates=
875 --exact-match --debug --long --match --always
877 return
878 esac
879 __gitcomp "$(__git_refs)"
882 __git_diff_common_options="--stat --numstat --shortstat --summary
883 --patch-with-stat --name-only --name-status --color
884 --no-color --color-words --no-renames --check
885 --full-index --binary --abbrev --diff-filter=
886 --find-copies-harder
887 --text --ignore-space-at-eol --ignore-space-change
888 --ignore-all-space --exit-code --quiet --ext-diff
889 --no-ext-diff
890 --no-prefix --src-prefix= --dst-prefix=
891 --inter-hunk-context=
892 --patience
893 --raw
896 _git_diff ()
898 __git_has_doubledash && return
900 local cur="${COMP_WORDS[COMP_CWORD]}"
901 case "$cur" in
902 --*)
903 __gitcomp "--cached --staged --pickaxe-all --pickaxe-regex
904 --base --ours --theirs
905 $__git_diff_common_options
907 return
909 esac
910 __git_complete_file
913 __git_mergetools_common="diffuse ecmerge emerge kdiff3 meld opendiff
914 tkdiff vimdiff gvimdiff xxdiff
917 _git_difftool ()
919 local cur="${COMP_WORDS[COMP_CWORD]}"
920 case "$cur" in
921 --tool=*)
922 __gitcomp "$__git_mergetools_common kompare" "" "${cur##--tool=}"
923 return
925 --*)
926 __gitcomp "--tool="
927 return
929 esac
930 COMPREPLY=()
933 __git_fetch_options="
934 --quiet --verbose --append --upload-pack --force --keep --depth=
935 --tags --no-tags
938 _git_fetch ()
940 local cur="${COMP_WORDS[COMP_CWORD]}"
941 case "$cur" in
942 --*)
943 __gitcomp "$__git_fetch_options"
944 return
946 esac
947 __git_complete_remote_or_refspec
950 _git_format_patch ()
952 local cur="${COMP_WORDS[COMP_CWORD]}"
953 case "$cur" in
954 --thread=*)
955 __gitcomp "
956 deep shallow
957 " "" "${cur##--thread=}"
958 return
960 --*)
961 __gitcomp "
962 --stdout --attach --no-attach --thread --thread=
963 --output-directory
964 --numbered --start-number
965 --numbered-files
966 --keep-subject
967 --signoff
968 --in-reply-to= --cc=
969 --full-index --binary
970 --not --all
971 --cover-letter
972 --no-prefix --src-prefix= --dst-prefix=
973 --inline --suffix= --ignore-if-in-upstream
974 --subject-prefix=
976 return
978 esac
979 __git_complete_revlist
982 _git_fsck ()
984 local cur="${COMP_WORDS[COMP_CWORD]}"
985 case "$cur" in
986 --*)
987 __gitcomp "
988 --tags --root --unreachable --cache --no-reflogs --full
989 --strict --verbose --lost-found
991 return
993 esac
994 COMPREPLY=()
997 _git_gc ()
999 local cur="${COMP_WORDS[COMP_CWORD]}"
1000 case "$cur" in
1001 --*)
1002 __gitcomp "--prune --aggressive"
1003 return
1005 esac
1006 COMPREPLY=()
1009 _git_grep ()
1011 __git_has_doubledash && return
1013 local cur="${COMP_WORDS[COMP_CWORD]}"
1014 case "$cur" in
1015 --*)
1016 __gitcomp "
1017 --cached
1018 --text --ignore-case --word-regexp --invert-match
1019 --full-name
1020 --extended-regexp --basic-regexp --fixed-strings
1021 --files-with-matches --name-only
1022 --files-without-match
1023 --count
1024 --and --or --not --all-match
1026 return
1028 esac
1029 COMPREPLY=()
1032 _git_help ()
1034 local cur="${COMP_WORDS[COMP_CWORD]}"
1035 case "$cur" in
1036 --*)
1037 __gitcomp "--all --info --man --web"
1038 return
1040 esac
1041 __gitcomp "$(__git_all_commands)
1042 attributes cli core-tutorial cvs-migration
1043 diffcore gitk glossary hooks ignore modules
1044 repository-layout tutorial tutorial-2
1045 workflows
1049 _git_init ()
1051 local cur="${COMP_WORDS[COMP_CWORD]}"
1052 case "$cur" in
1053 --shared=*)
1054 __gitcomp "
1055 false true umask group all world everybody
1056 " "" "${cur##--shared=}"
1057 return
1059 --*)
1060 __gitcomp "--quiet --bare --template= --shared --shared="
1061 return
1063 esac
1064 COMPREPLY=()
1067 _git_ls_files ()
1069 __git_has_doubledash && return
1071 local cur="${COMP_WORDS[COMP_CWORD]}"
1072 case "$cur" in
1073 --*)
1074 __gitcomp "--cached --deleted --modified --others --ignored
1075 --stage --directory --no-empty-directory --unmerged
1076 --killed --exclude= --exclude-from=
1077 --exclude-per-directory= --exclude-standard
1078 --error-unmatch --with-tree= --full-name
1079 --abbrev --ignored --exclude-per-directory
1081 return
1083 esac
1084 COMPREPLY=()
1087 _git_ls_remote ()
1089 __gitcomp "$(__git_remotes)"
1092 _git_ls_tree ()
1094 __git_complete_file
1097 # Options that go well for log, shortlog and gitk
1098 __git_log_common_options="
1099 --not --all
1100 --branches --tags --remotes
1101 --first-parent --no-merges
1102 --max-count=
1103 --max-age= --since= --after=
1104 --min-age= --until= --before=
1106 # Options that go well for log and gitk (not shortlog)
1107 __git_log_gitk_options="
1108 --dense --sparse --full-history
1109 --simplify-merges --simplify-by-decoration
1110 --left-right
1112 # Options that go well for log and shortlog (not gitk)
1113 __git_log_shortlog_options="
1114 --author= --committer= --grep=
1115 --all-match
1118 __git_log_pretty_formats="oneline short medium full fuller email raw format:"
1120 _git_log ()
1122 __git_has_doubledash && return
1124 local cur="${COMP_WORDS[COMP_CWORD]}"
1125 local g="$(git rev-parse --git-dir 2>/dev/null)"
1126 local merge=""
1127 if [ -f "$g/MERGE_HEAD" ]; then
1128 merge="--merge"
1130 case "$cur" in
1131 --pretty=*)
1132 __gitcomp "$__git_log_pretty_formats
1133 " "" "${cur##--pretty=}"
1134 return
1136 --format=*)
1137 __gitcomp "$__git_log_pretty_formats
1138 " "" "${cur##--format=}"
1139 return
1141 --date=*)
1142 __gitcomp "
1143 relative iso8601 rfc2822 short local default
1144 " "" "${cur##--date=}"
1145 return
1147 --*)
1148 __gitcomp "
1149 $__git_log_common_options
1150 $__git_log_shortlog_options
1151 $__git_log_gitk_options
1152 --root --topo-order --date-order --reverse
1153 --follow
1154 --abbrev-commit --abbrev=
1155 --relative-date --date=
1156 --pretty= --format= --oneline
1157 --cherry-pick
1158 --graph
1159 --decorate
1160 --walk-reflogs
1161 --parents --children
1162 $merge
1163 $__git_diff_common_options
1164 --pickaxe-all --pickaxe-regex
1166 return
1168 esac
1169 __git_complete_revlist
1172 __git_merge_options="
1173 --no-commit --no-stat --log --no-log --squash --strategy
1174 --commit --stat --no-squash --ff --no-ff
1177 _git_merge ()
1179 __git_complete_strategy && return
1181 local cur="${COMP_WORDS[COMP_CWORD]}"
1182 case "$cur" in
1183 --*)
1184 __gitcomp "$__git_merge_options"
1185 return
1186 esac
1187 __gitcomp "$(__git_refs)"
1190 _git_mergetool ()
1192 local cur="${COMP_WORDS[COMP_CWORD]}"
1193 case "$cur" in
1194 --tool=*)
1195 __gitcomp "$__git_mergetools_common tortoisemerge" "" "${cur##--tool=}"
1196 return
1198 --*)
1199 __gitcomp "--tool="
1200 return
1202 esac
1203 COMPREPLY=()
1206 _git_merge_base ()
1208 __gitcomp "$(__git_refs)"
1211 _git_mv ()
1213 local cur="${COMP_WORDS[COMP_CWORD]}"
1214 case "$cur" in
1215 --*)
1216 __gitcomp "--dry-run"
1217 return
1219 esac
1220 COMPREPLY=()
1223 _git_name_rev ()
1225 __gitcomp "--tags --all --stdin"
1228 _git_pull ()
1230 __git_complete_strategy && return
1232 local cur="${COMP_WORDS[COMP_CWORD]}"
1233 case "$cur" in
1234 --*)
1235 __gitcomp "
1236 --rebase --no-rebase
1237 $__git_merge_options
1238 $__git_fetch_options
1240 return
1242 esac
1243 __git_complete_remote_or_refspec
1246 _git_push ()
1248 local cur="${COMP_WORDS[COMP_CWORD]}"
1249 case "${COMP_WORDS[COMP_CWORD-1]}" in
1250 --repo)
1251 __gitcomp "$(__git_remotes)"
1252 return
1253 esac
1254 case "$cur" in
1255 --repo=*)
1256 __gitcomp "$(__git_remotes)" "" "${cur##--repo=}"
1257 return
1259 --*)
1260 __gitcomp "
1261 --all --mirror --tags --dry-run --force --verbose
1262 --receive-pack= --repo=
1264 return
1266 esac
1267 __git_complete_remote_or_refspec
1270 _git_rebase ()
1272 local cur="${COMP_WORDS[COMP_CWORD]}" dir="$(__gitdir)"
1273 if [ -d "$dir"/rebase-apply ] || [ -d "$dir"/rebase-merge ]; then
1274 __gitcomp "--continue --skip --abort"
1275 return
1277 __git_complete_strategy && return
1278 case "$cur" in
1279 --*)
1280 __gitcomp "--onto --merge --strategy --interactive"
1281 return
1282 esac
1283 __gitcomp "$(__git_refs)"
1286 _git_send_email ()
1288 local cur="${COMP_WORDS[COMP_CWORD]}"
1289 case "$cur" in
1290 --*)
1291 __gitcomp "--annotate --bcc --cc --cc-cmd --chain-reply-to
1292 --compose --dry-run --envelope-sender --from --identity
1293 --in-reply-to --no-chain-reply-to --no-signed-off-by-cc
1294 --no-suppress-from --no-thread --quiet
1295 --signed-off-by-cc --smtp-pass --smtp-server
1296 --smtp-server-port --smtp-ssl --smtp-user --subject
1297 --suppress-cc --suppress-from --thread --to
1298 --validate --no-validate"
1299 return
1301 esac
1302 COMPREPLY=()
1305 _git_config ()
1307 local cur="${COMP_WORDS[COMP_CWORD]}"
1308 local prv="${COMP_WORDS[COMP_CWORD-1]}"
1309 case "$prv" in
1310 branch.*.remote)
1311 __gitcomp "$(__git_remotes)"
1312 return
1314 branch.*.merge)
1315 __gitcomp "$(__git_refs)"
1316 return
1318 remote.*.fetch)
1319 local remote="${prv#remote.}"
1320 remote="${remote%.fetch}"
1321 __gitcomp "$(__git_refs_remotes "$remote")"
1322 return
1324 remote.*.push)
1325 local remote="${prv#remote.}"
1326 remote="${remote%.push}"
1327 __gitcomp "$(git --git-dir="$(__gitdir)" \
1328 for-each-ref --format='%(refname):%(refname)' \
1329 refs/heads)"
1330 return
1332 pull.twohead|pull.octopus)
1333 __gitcomp "$(__git_merge_strategies)"
1334 return
1336 color.branch|color.diff|color.interactive|color.status|color.ui)
1337 __gitcomp "always never auto"
1338 return
1340 color.pager)
1341 __gitcomp "false true"
1342 return
1344 color.*.*)
1345 __gitcomp "
1346 normal black red green yellow blue magenta cyan white
1347 bold dim ul blink reverse
1349 return
1351 *.*)
1352 COMPREPLY=()
1353 return
1355 esac
1356 case "$cur" in
1357 --*)
1358 __gitcomp "
1359 --global --system --file=
1360 --list --replace-all
1361 --get --get-all --get-regexp
1362 --add --unset --unset-all
1363 --remove-section --rename-section
1365 return
1367 branch.*.*)
1368 local pfx="${cur%.*}."
1369 cur="${cur##*.}"
1370 __gitcomp "remote merge mergeoptions" "$pfx" "$cur"
1371 return
1373 branch.*)
1374 local pfx="${cur%.*}."
1375 cur="${cur#*.}"
1376 __gitcomp "$(__git_heads)" "$pfx" "$cur" "."
1377 return
1379 guitool.*.*)
1380 local pfx="${cur%.*}."
1381 cur="${cur##*.}"
1382 __gitcomp "
1383 argprompt cmd confirm needsfile noconsole norescan
1384 prompt revprompt revunmerged title
1385 " "$pfx" "$cur"
1386 return
1388 difftool.*.*)
1389 local pfx="${cur%.*}."
1390 cur="${cur##*.}"
1391 __gitcomp "cmd path" "$pfx" "$cur"
1392 return
1394 man.*.*)
1395 local pfx="${cur%.*}."
1396 cur="${cur##*.}"
1397 __gitcomp "cmd path" "$pfx" "$cur"
1398 return
1400 mergetool.*.*)
1401 local pfx="${cur%.*}."
1402 cur="${cur##*.}"
1403 __gitcomp "cmd path trustExitCode" "$pfx" "$cur"
1404 return
1406 pager.*)
1407 local pfx="${cur%.*}."
1408 cur="${cur#*.}"
1409 __gitcomp "$(__git_all_commands)" "$pfx" "$cur"
1410 return
1412 remote.*.*)
1413 local pfx="${cur%.*}."
1414 cur="${cur##*.}"
1415 __gitcomp "
1416 url proxy fetch push mirror skipDefaultUpdate
1417 receivepack uploadpack tagopt
1418 " "$pfx" "$cur"
1419 return
1421 remote.*)
1422 local pfx="${cur%.*}."
1423 cur="${cur#*.}"
1424 __gitcomp "$(__git_remotes)" "$pfx" "$cur" "."
1425 return
1427 url.*.*)
1428 local pfx="${cur%.*}."
1429 cur="${cur##*.}"
1430 __gitcomp "insteadof" "$pfx" "$cur"
1431 return
1433 esac
1434 __gitcomp "
1435 alias.
1436 apply.whitespace
1437 branch.autosetupmerge
1438 branch.autosetuprebase
1439 clean.requireForce
1440 color.branch
1441 color.branch.current
1442 color.branch.local
1443 color.branch.plain
1444 color.branch.remote
1445 color.diff
1446 color.diff.commit
1447 color.diff.frag
1448 color.diff.meta
1449 color.diff.new
1450 color.diff.old
1451 color.diff.plain
1452 color.diff.whitespace
1453 color.grep
1454 color.grep.external
1455 color.grep.match
1456 color.interactive
1457 color.interactive.header
1458 color.interactive.help
1459 color.interactive.prompt
1460 color.pager
1461 color.status
1462 color.status.added
1463 color.status.changed
1464 color.status.header
1465 color.status.nobranch
1466 color.status.untracked
1467 color.status.updated
1468 color.ui
1469 commit.template
1470 core.autocrlf
1471 core.bare
1472 core.compression
1473 core.createObject
1474 core.deltaBaseCacheLimit
1475 core.editor
1476 core.excludesfile
1477 core.fileMode
1478 core.fsyncobjectfiles
1479 core.gitProxy
1480 core.ignoreCygwinFSTricks
1481 core.ignoreStat
1482 core.logAllRefUpdates
1483 core.loosecompression
1484 core.packedGitLimit
1485 core.packedGitWindowSize
1486 core.pager
1487 core.preferSymlinkRefs
1488 core.preloadindex
1489 core.quotepath
1490 core.repositoryFormatVersion
1491 core.safecrlf
1492 core.sharedRepository
1493 core.symlinks
1494 core.trustctime
1495 core.warnAmbiguousRefs
1496 core.whitespace
1497 core.worktree
1498 diff.autorefreshindex
1499 diff.external
1500 diff.mnemonicprefix
1501 diff.renameLimit
1502 diff.renameLimit.
1503 diff.renames
1504 diff.suppressBlankEmpty
1505 diff.tool
1506 diff.wordRegex
1507 difftool.
1508 difftool.prompt
1509 fetch.unpackLimit
1510 format.attach
1511 format.cc
1512 format.headers
1513 format.numbered
1514 format.pretty
1515 format.signoff
1516 format.subjectprefix
1517 format.suffix
1518 format.thread
1519 gc.aggressiveWindow
1520 gc.auto
1521 gc.autopacklimit
1522 gc.packrefs
1523 gc.pruneexpire
1524 gc.reflogexpire
1525 gc.reflogexpireunreachable
1526 gc.rerereresolved
1527 gc.rerereunresolved
1528 gitcvs.allbinary
1529 gitcvs.commitmsgannotation
1530 gitcvs.dbTableNamePrefix
1531 gitcvs.dbdriver
1532 gitcvs.dbname
1533 gitcvs.dbpass
1534 gitcvs.dbuser
1535 gitcvs.enabled
1536 gitcvs.logfile
1537 gitcvs.usecrlfattr
1538 guitool.
1539 gui.blamehistoryctx
1540 gui.commitmsgwidth
1541 gui.copyblamethreshold
1542 gui.diffcontext
1543 gui.encoding
1544 gui.fastcopyblame
1545 gui.matchtrackingbranch
1546 gui.newbranchtemplate
1547 gui.pruneduringfetch
1548 gui.spellingdictionary
1549 gui.trustmtime
1550 help.autocorrect
1551 help.browser
1552 help.format
1553 http.lowSpeedLimit
1554 http.lowSpeedTime
1555 http.maxRequests
1556 http.noEPSV
1557 http.proxy
1558 http.sslCAInfo
1559 http.sslCAPath
1560 http.sslCert
1561 http.sslKey
1562 http.sslVerify
1563 i18n.commitEncoding
1564 i18n.logOutputEncoding
1565 imap.folder
1566 imap.host
1567 imap.pass
1568 imap.port
1569 imap.preformattedHTML
1570 imap.sslverify
1571 imap.tunnel
1572 imap.user
1573 instaweb.browser
1574 instaweb.httpd
1575 instaweb.local
1576 instaweb.modulepath
1577 instaweb.port
1578 interactive.singlekey
1579 log.date
1580 log.showroot
1581 mailmap.file
1582 man.
1583 man.viewer
1584 merge.conflictstyle
1585 merge.log
1586 merge.renameLimit
1587 merge.stat
1588 merge.tool
1589 merge.verbosity
1590 mergetool.
1591 mergetool.keepBackup
1592 mergetool.prompt
1593 pack.compression
1594 pack.deltaCacheLimit
1595 pack.deltaCacheSize
1596 pack.depth
1597 pack.indexVersion
1598 pack.packSizeLimit
1599 pack.threads
1600 pack.window
1601 pack.windowMemory
1602 pager.
1603 pull.octopus
1604 pull.twohead
1605 push.default
1606 rebase.stat
1607 receive.denyCurrentBranch
1608 receive.denyDeletes
1609 receive.denyNonFastForwards
1610 receive.fsckObjects
1611 receive.unpackLimit
1612 repack.usedeltabaseoffset
1613 rerere.autoupdate
1614 rerere.enabled
1615 sendemail.aliasesfile
1616 sendemail.aliasesfiletype
1617 sendemail.bcc
1618 sendemail.cc
1619 sendemail.cccmd
1620 sendemail.chainreplyto
1621 sendemail.confirm
1622 sendemail.envelopesender
1623 sendemail.multiedit
1624 sendemail.signedoffbycc
1625 sendemail.smtpencryption
1626 sendemail.smtppass
1627 sendemail.smtpserver
1628 sendemail.smtpserverport
1629 sendemail.smtpuser
1630 sendemail.suppresscc
1631 sendemail.suppressfrom
1632 sendemail.thread
1633 sendemail.to
1634 sendemail.validate
1635 showbranch.default
1636 status.relativePaths
1637 status.showUntrackedFiles
1638 tar.umask
1639 transfer.unpackLimit
1640 url.
1641 user.email
1642 user.name
1643 user.signingkey
1644 web.browser
1645 branch. remote.
1649 _git_remote ()
1651 local subcommands="add rename rm show prune update set-head"
1652 local subcommand="$(__git_find_subcommand "$subcommands")"
1653 if [ -z "$subcommand" ]; then
1654 __gitcomp "$subcommands"
1655 return
1658 case "$subcommand" in
1659 rename|rm|show|prune)
1660 __gitcomp "$(__git_remotes)"
1662 update)
1663 local i c='' IFS=$'\n'
1664 for i in $(git --git-dir="$(__gitdir)" config --list); do
1665 case "$i" in
1666 remotes.*)
1667 i="${i#remotes.}"
1668 c="$c ${i/=*/}"
1670 esac
1671 done
1672 __gitcomp "$c"
1675 COMPREPLY=()
1677 esac
1680 _git_reset ()
1682 __git_has_doubledash && return
1684 local cur="${COMP_WORDS[COMP_CWORD]}"
1685 case "$cur" in
1686 --*)
1687 __gitcomp "--merge --mixed --hard --soft"
1688 return
1690 esac
1691 __gitcomp "$(__git_refs)"
1694 _git_revert ()
1696 local cur="${COMP_WORDS[COMP_CWORD]}"
1697 case "$cur" in
1698 --*)
1699 __gitcomp "--edit --mainline --no-edit --no-commit --signoff"
1700 return
1702 esac
1703 __gitcomp "$(__git_refs)"
1706 _git_rm ()
1708 __git_has_doubledash && return
1710 local cur="${COMP_WORDS[COMP_CWORD]}"
1711 case "$cur" in
1712 --*)
1713 __gitcomp "--cached --dry-run --ignore-unmatch --quiet"
1714 return
1716 esac
1717 COMPREPLY=()
1720 _git_shortlog ()
1722 __git_has_doubledash && return
1724 local cur="${COMP_WORDS[COMP_CWORD]}"
1725 case "$cur" in
1726 --*)
1727 __gitcomp "
1728 $__git_log_common_options
1729 $__git_log_shortlog_options
1730 --numbered --summary
1732 return
1734 esac
1735 __git_complete_revlist
1738 _git_show ()
1740 __git_has_doubledash && return
1742 local cur="${COMP_WORDS[COMP_CWORD]}"
1743 case "$cur" in
1744 --pretty=*)
1745 __gitcomp "$__git_log_pretty_formats
1746 " "" "${cur##--pretty=}"
1747 return
1749 --format=*)
1750 __gitcomp "$__git_log_pretty_formats
1751 " "" "${cur##--format=}"
1752 return
1754 --*)
1755 __gitcomp "--pretty= --format=
1756 $__git_diff_common_options
1758 return
1760 esac
1761 __git_complete_file
1764 _git_show_branch ()
1766 local cur="${COMP_WORDS[COMP_CWORD]}"
1767 case "$cur" in
1768 --*)
1769 __gitcomp "
1770 --all --remotes --topo-order --current --more=
1771 --list --independent --merge-base --no-name
1772 --sha1-name --topics --reflog
1774 return
1776 esac
1777 __git_complete_revlist
1780 _git_stash ()
1782 local subcommands='save list show apply clear drop pop create branch'
1783 local subcommand="$(__git_find_subcommand "$subcommands")"
1784 if [ -z "$subcommand" ]; then
1785 __gitcomp "$subcommands"
1786 else
1787 local cur="${COMP_WORDS[COMP_CWORD]}"
1788 case "$subcommand,$cur" in
1789 save,--*)
1790 __gitcomp "--keep-index"
1792 apply,--*)
1793 __gitcomp "--index"
1795 show,--*|drop,--*|pop,--*|branch,--*)
1796 COMPREPLY=()
1798 show,*|apply,*|drop,*|pop,*|branch,*)
1799 __gitcomp "$(git --git-dir="$(__gitdir)" stash list \
1800 | sed -n -e 's/:.*//p')"
1803 COMPREPLY=()
1805 esac
1809 _git_submodule ()
1811 __git_has_doubledash && return
1813 local subcommands="add status init update summary foreach sync"
1814 if [ -z "$(__git_find_subcommand "$subcommands")" ]; then
1815 local cur="${COMP_WORDS[COMP_CWORD]}"
1816 case "$cur" in
1817 --*)
1818 __gitcomp "--quiet --cached"
1821 __gitcomp "$subcommands"
1823 esac
1824 return
1828 _git_svn ()
1830 local subcommands="
1831 init fetch clone rebase dcommit log find-rev
1832 set-tree commit-diff info create-ignore propget
1833 proplist show-ignore show-externals branch tag blame
1834 migrate
1836 local subcommand="$(__git_find_subcommand "$subcommands")"
1837 if [ -z "$subcommand" ]; then
1838 __gitcomp "$subcommands"
1839 else
1840 local remote_opts="--username= --config-dir= --no-auth-cache"
1841 local fc_opts="
1842 --follow-parent --authors-file= --repack=
1843 --no-metadata --use-svm-props --use-svnsync-props
1844 --log-window-size= --no-checkout --quiet
1845 --repack-flags --use-log-author --localtime
1846 --ignore-paths= $remote_opts
1848 local init_opts="
1849 --template= --shared= --trunk= --tags=
1850 --branches= --stdlayout --minimize-url
1851 --no-metadata --use-svm-props --use-svnsync-props
1852 --rewrite-root= --prefix= --use-log-author
1853 --add-author-from $remote_opts
1855 local cmt_opts="
1856 --edit --rmdir --find-copies-harder --copy-similarity=
1859 local cur="${COMP_WORDS[COMP_CWORD]}"
1860 case "$subcommand,$cur" in
1861 fetch,--*)
1862 __gitcomp "--revision= --fetch-all $fc_opts"
1864 clone,--*)
1865 __gitcomp "--revision= $fc_opts $init_opts"
1867 init,--*)
1868 __gitcomp "$init_opts"
1870 dcommit,--*)
1871 __gitcomp "
1872 --merge --strategy= --verbose --dry-run
1873 --fetch-all --no-rebase --commit-url
1874 --revision $cmt_opts $fc_opts
1877 set-tree,--*)
1878 __gitcomp "--stdin $cmt_opts $fc_opts"
1880 create-ignore,--*|propget,--*|proplist,--*|show-ignore,--*|\
1881 show-externals,--*)
1882 __gitcomp "--revision="
1884 log,--*)
1885 __gitcomp "
1886 --limit= --revision= --verbose --incremental
1887 --oneline --show-commit --non-recursive
1888 --authors-file= --color
1891 rebase,--*)
1892 __gitcomp "
1893 --merge --verbose --strategy= --local
1894 --fetch-all --dry-run $fc_opts
1897 commit-diff,--*)
1898 __gitcomp "--message= --file= --revision= $cmt_opts"
1900 info,--*)
1901 __gitcomp "--url"
1903 branch,--*)
1904 __gitcomp "--dry-run --message --tag"
1906 tag,--*)
1907 __gitcomp "--dry-run --message"
1909 blame,--*)
1910 __gitcomp "--git-format"
1912 migrate,--*)
1913 __gitcomp "
1914 --config-dir= --ignore-paths= --minimize
1915 --no-auth-cache --username=
1919 COMPREPLY=()
1921 esac
1925 _git_tag ()
1927 local i c=1 f=0
1928 while [ $c -lt $COMP_CWORD ]; do
1929 i="${COMP_WORDS[c]}"
1930 case "$i" in
1931 -d|-v)
1932 __gitcomp "$(__git_tags)"
1933 return
1938 esac
1939 c=$((++c))
1940 done
1942 case "${COMP_WORDS[COMP_CWORD-1]}" in
1943 -m|-F)
1944 COMPREPLY=()
1946 -*|tag)
1947 if [ $f = 1 ]; then
1948 __gitcomp "$(__git_tags)"
1949 else
1950 COMPREPLY=()
1954 __gitcomp "$(__git_refs)"
1956 esac
1959 _git ()
1961 local i c=1 command __git_dir
1963 while [ $c -lt $COMP_CWORD ]; do
1964 i="${COMP_WORDS[c]}"
1965 case "$i" in
1966 --git-dir=*) __git_dir="${i#--git-dir=}" ;;
1967 --bare) __git_dir="." ;;
1968 --version|-p|--paginate) ;;
1969 --help) command="help"; break ;;
1970 *) command="$i"; break ;;
1971 esac
1972 c=$((++c))
1973 done
1975 if [ -z "$command" ]; then
1976 case "${COMP_WORDS[COMP_CWORD]}" in
1977 --*) __gitcomp "
1978 --paginate
1979 --no-pager
1980 --git-dir=
1981 --bare
1982 --version
1983 --exec-path
1984 --html-path
1985 --work-tree=
1986 --help
1989 *) __gitcomp "$(__git_porcelain_commands) $(__git_aliases)" ;;
1990 esac
1991 return
1994 local expansion=$(__git_aliased_command "$command")
1995 [ "$expansion" ] && command="$expansion"
1997 case "$command" in
1998 am) _git_am ;;
1999 add) _git_add ;;
2000 apply) _git_apply ;;
2001 archive) _git_archive ;;
2002 bisect) _git_bisect ;;
2003 bundle) _git_bundle ;;
2004 branch) _git_branch ;;
2005 checkout) _git_checkout ;;
2006 cherry) _git_cherry ;;
2007 cherry-pick) _git_cherry_pick ;;
2008 clean) _git_clean ;;
2009 clone) _git_clone ;;
2010 commit) _git_commit ;;
2011 config) _git_config ;;
2012 describe) _git_describe ;;
2013 diff) _git_diff ;;
2014 difftool) _git_difftool ;;
2015 fetch) _git_fetch ;;
2016 format-patch) _git_format_patch ;;
2017 fsck) _git_fsck ;;
2018 gc) _git_gc ;;
2019 grep) _git_grep ;;
2020 help) _git_help ;;
2021 init) _git_init ;;
2022 log) _git_log ;;
2023 ls-files) _git_ls_files ;;
2024 ls-remote) _git_ls_remote ;;
2025 ls-tree) _git_ls_tree ;;
2026 merge) _git_merge;;
2027 mergetool) _git_mergetool;;
2028 merge-base) _git_merge_base ;;
2029 mv) _git_mv ;;
2030 name-rev) _git_name_rev ;;
2031 pull) _git_pull ;;
2032 push) _git_push ;;
2033 rebase) _git_rebase ;;
2034 remote) _git_remote ;;
2035 reset) _git_reset ;;
2036 revert) _git_revert ;;
2037 rm) _git_rm ;;
2038 send-email) _git_send_email ;;
2039 shortlog) _git_shortlog ;;
2040 show) _git_show ;;
2041 show-branch) _git_show_branch ;;
2042 stash) _git_stash ;;
2043 stage) _git_add ;;
2044 submodule) _git_submodule ;;
2045 svn) _git_svn ;;
2046 tag) _git_tag ;;
2047 whatchanged) _git_log ;;
2048 *) COMPREPLY=() ;;
2049 esac
2052 _gitk ()
2054 __git_has_doubledash && return
2056 local cur="${COMP_WORDS[COMP_CWORD]}"
2057 local g="$(__gitdir)"
2058 local merge=""
2059 if [ -f "$g/MERGE_HEAD" ]; then
2060 merge="--merge"
2062 case "$cur" in
2063 --*)
2064 __gitcomp "
2065 $__git_log_common_options
2066 $__git_log_gitk_options
2067 $merge
2069 return
2071 esac
2072 __git_complete_revlist
2075 complete -o bashdefault -o default -o nospace -F _git git 2>/dev/null \
2076 || complete -o default -o nospace -F _git git
2077 complete -o bashdefault -o default -o nospace -F _gitk gitk 2>/dev/null \
2078 || complete -o default -o nospace -F _gitk gitk
2080 # The following are necessary only for Cygwin, and only are needed
2081 # when the user has tab-completed the executable name and consequently
2082 # included the '.exe' suffix.
2084 if [ Cygwin = "$(uname -o 2>/dev/null)" ]; then
2085 complete -o bashdefault -o default -o nospace -F _git git.exe 2>/dev/null \
2086 || complete -o default -o nospace -F _git git.exe