bash: use __gitdir when completing 'git rebase' options
[git/jnareb-git.git] / contrib / completion / git-completion.bash
blobfc108e48288874dcaa3e2943dd7cca16ae453697
2 # bash completion support for core Git.
4 # Copyright (C) 2006,2007 Shawn O. Pearce <spearce@spearce.org>
5 # Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/).
6 # Distributed under the GNU General Public License, version 2.0.
8 # The contained completion routines provide support for completing:
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
15 # *) common --long-options
17 # To use these routines:
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
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.
29 # 4) Consider changing your PS1 to also show the current branch:
30 # PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ '
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.
36 # To submit patches:
38 # *) Read Documentation/SubmittingPatches
39 # *) Send all patches to the current maintainer:
41 # "Shawn O. Pearce" <spearce@spearce.org>
43 # *) Always CC the Git mailing list:
45 # git@vger.kernel.org
48 __gitdir ()
50 if [ -z "$1" ]; then
51 if [ -n "$__git_dir" ]; then
52 echo "$__git_dir"
53 elif [ -d .git ]; then
54 echo .git
55 else
56 git rev-parse --git-dir 2>/dev/null
58 elif [ -d "$1/.git" ]; then
59 echo "$1/.git"
60 else
61 echo "$1"
65 __git_ps1 ()
67 local g="$(git rev-parse --git-dir 2>/dev/null)"
68 if [ -n "$g" ]; then
69 local r
70 local b
71 if [ -d "$g/../.dotest" ]
72 then
73 if test -f "$g/../.dotest/rebasing"
74 then
75 r="|REBASE"
76 elif test -f "$g/../.dotest/applying"
77 then
78 r="|AM"
79 else
80 r="|AM/REBASE"
82 b="$(git symbolic-ref HEAD 2>/dev/null)"
83 elif [ -f "$g/.dotest-merge/interactive" ]
84 then
85 r="|REBASE-i"
86 b="$(cat "$g/.dotest-merge/head-name")"
87 elif [ -d "$g/.dotest-merge" ]
88 then
89 r="|REBASE-m"
90 b="$(cat "$g/.dotest-merge/head-name")"
91 elif [ -f "$g/MERGE_HEAD" ]
92 then
93 r="|MERGING"
94 b="$(git symbolic-ref HEAD 2>/dev/null)"
95 else
96 if [ -f "$g/BISECT_LOG" ]
97 then
98 r="|BISECTING"
100 if ! b="$(git symbolic-ref HEAD 2>/dev/null)"
101 then
102 if ! b="$(git describe --exact-match HEAD 2>/dev/null)"
103 then
104 b="$(cut -c1-7 "$g/HEAD")..."
109 if [ -n "$1" ]; then
110 printf "$1" "${b##refs/heads/}$r"
111 else
112 printf " (%s)" "${b##refs/heads/}$r"
117 __gitcomp ()
119 local all c s=$'\n' IFS=' '$'\t'$'\n'
120 local cur="${COMP_WORDS[COMP_CWORD]}"
121 if [ $# -gt 2 ]; then
122 cur="$3"
124 for c in $1; do
125 case "$c$4" in
126 --*=*) all="$all$c$4$s" ;;
127 *.) all="$all$c$4$s" ;;
128 *) all="$all$c$4 $s" ;;
129 esac
130 done
131 IFS=$s
132 COMPREPLY=($(compgen -P "$2" -W "$all" -- "$cur"))
133 return
136 __git_heads ()
138 local cmd i is_hash=y dir="$(__gitdir "$1")"
139 if [ -d "$dir" ]; then
140 for i in $(git --git-dir="$dir" \
141 for-each-ref --format='%(refname)' \
142 refs/heads ); do
143 echo "${i#refs/heads/}"
144 done
145 return
147 for i in $(git-ls-remote "$1" 2>/dev/null); do
148 case "$is_hash,$i" in
149 y,*) is_hash=n ;;
150 n,*^{}) is_hash=y ;;
151 n,refs/heads/*) is_hash=y; echo "${i#refs/heads/}" ;;
152 n,*) is_hash=y; echo "$i" ;;
153 esac
154 done
157 __git_tags ()
159 local cmd i is_hash=y dir="$(__gitdir "$1")"
160 if [ -d "$dir" ]; then
161 for i in $(git --git-dir="$dir" \
162 for-each-ref --format='%(refname)' \
163 refs/tags ); do
164 echo "${i#refs/tags/}"
165 done
166 return
168 for i in $(git-ls-remote "$1" 2>/dev/null); do
169 case "$is_hash,$i" in
170 y,*) is_hash=n ;;
171 n,*^{}) is_hash=y ;;
172 n,refs/tags/*) is_hash=y; echo "${i#refs/tags/}" ;;
173 n,*) is_hash=y; echo "$i" ;;
174 esac
175 done
178 __git_refs ()
180 local cmd i is_hash=y dir="$(__gitdir "$1")"
181 if [ -d "$dir" ]; then
182 if [ -e "$dir/HEAD" ]; then echo HEAD; fi
183 for i in $(git --git-dir="$dir" \
184 for-each-ref --format='%(refname)' \
185 refs/tags refs/heads refs/remotes); do
186 case "$i" in
187 refs/tags/*) echo "${i#refs/tags/}" ;;
188 refs/heads/*) echo "${i#refs/heads/}" ;;
189 refs/remotes/*) echo "${i#refs/remotes/}" ;;
190 *) echo "$i" ;;
191 esac
192 done
193 return
195 for i in $(git-ls-remote "$dir" 2>/dev/null); do
196 case "$is_hash,$i" in
197 y,*) is_hash=n ;;
198 n,*^{}) is_hash=y ;;
199 n,refs/tags/*) is_hash=y; echo "${i#refs/tags/}" ;;
200 n,refs/heads/*) is_hash=y; echo "${i#refs/heads/}" ;;
201 n,refs/remotes/*) is_hash=y; echo "${i#refs/remotes/}" ;;
202 n,*) is_hash=y; echo "$i" ;;
203 esac
204 done
207 __git_refs2 ()
209 local i
210 for i in $(__git_refs "$1"); do
211 echo "$i:$i"
212 done
215 __git_refs_remotes ()
217 local cmd i is_hash=y
218 for i in $(git-ls-remote "$1" 2>/dev/null); do
219 case "$is_hash,$i" in
220 n,refs/heads/*)
221 is_hash=y
222 echo "$i:refs/remotes/$1/${i#refs/heads/}"
224 y,*) is_hash=n ;;
225 n,*^{}) is_hash=y ;;
226 n,refs/tags/*) is_hash=y;;
227 n,*) is_hash=y; ;;
228 esac
229 done
232 __git_remotes ()
234 local i ngoff IFS=$'\n' d="$(__gitdir)"
235 shopt -q nullglob || ngoff=1
236 shopt -s nullglob
237 for i in "$d/remotes"/*; do
238 echo ${i#$d/remotes/}
239 done
240 [ "$ngoff" ] && shopt -u nullglob
241 for i in $(git --git-dir="$d" config --list); do
242 case "$i" in
243 remote.*.url=*)
244 i="${i#remote.}"
245 echo "${i/.url=*/}"
247 esac
248 done
251 __git_merge_strategies ()
253 if [ -n "$__git_merge_strategylist" ]; then
254 echo "$__git_merge_strategylist"
255 return
257 sed -n "/^all_strategies='/{
258 s/^all_strategies='//
259 s/'//
262 }" "$(git --exec-path)/git-merge"
264 __git_merge_strategylist=
265 __git_merge_strategylist="$(__git_merge_strategies 2>/dev/null)"
267 __git_complete_file ()
269 local pfx ls ref cur="${COMP_WORDS[COMP_CWORD]}"
270 case "$cur" in
271 ?*:*)
272 ref="${cur%%:*}"
273 cur="${cur#*:}"
274 case "$cur" in
275 ?*/*)
276 pfx="${cur%/*}"
277 cur="${cur##*/}"
278 ls="$ref:$pfx"
279 pfx="$pfx/"
282 ls="$ref"
284 esac
285 COMPREPLY=($(compgen -P "$pfx" \
286 -W "$(git --git-dir="$(__gitdir)" ls-tree "$ls" \
287 | sed '/^100... blob /s,^.* ,,
288 /^040000 tree /{
289 s,^.* ,,
290 s,$,/,
292 s/^.* //')" \
293 -- "$cur"))
296 __gitcomp "$(__git_refs)"
298 esac
301 __git_complete_revlist ()
303 local pfx cur="${COMP_WORDS[COMP_CWORD]}"
304 case "$cur" in
305 *...*)
306 pfx="${cur%...*}..."
307 cur="${cur#*...}"
308 __gitcomp "$(__git_refs)" "$pfx" "$cur"
310 *..*)
311 pfx="${cur%..*}.."
312 cur="${cur#*..}"
313 __gitcomp "$(__git_refs)" "$pfx" "$cur"
316 __gitcomp "$cur."
319 __gitcomp "$(__git_refs)"
321 esac
324 __git_commands ()
326 if [ -n "$__git_commandlist" ]; then
327 echo "$__git_commandlist"
328 return
330 local i IFS=" "$'\n'
331 for i in $(git help -a|egrep '^ ')
333 case $i in
334 *--*) : helper pattern;;
335 applymbox) : ask gittus;;
336 applypatch) : ask gittus;;
337 archimport) : import;;
338 cat-file) : plumbing;;
339 check-attr) : plumbing;;
340 check-ref-format) : plumbing;;
341 commit-tree) : plumbing;;
342 cvsexportcommit) : export;;
343 cvsimport) : import;;
344 cvsserver) : daemon;;
345 daemon) : daemon;;
346 diff-files) : plumbing;;
347 diff-index) : plumbing;;
348 diff-tree) : plumbing;;
349 fast-import) : import;;
350 fsck-objects) : plumbing;;
351 fetch-pack) : plumbing;;
352 fmt-merge-msg) : plumbing;;
353 for-each-ref) : plumbing;;
354 hash-object) : plumbing;;
355 http-*) : transport;;
356 index-pack) : plumbing;;
357 init-db) : deprecated;;
358 local-fetch) : plumbing;;
359 mailinfo) : plumbing;;
360 mailsplit) : plumbing;;
361 merge-*) : plumbing;;
362 mktree) : plumbing;;
363 mktag) : plumbing;;
364 pack-objects) : plumbing;;
365 pack-redundant) : plumbing;;
366 pack-refs) : plumbing;;
367 parse-remote) : plumbing;;
368 patch-id) : plumbing;;
369 peek-remote) : plumbing;;
370 prune) : plumbing;;
371 prune-packed) : plumbing;;
372 quiltimport) : import;;
373 read-tree) : plumbing;;
374 receive-pack) : plumbing;;
375 reflog) : plumbing;;
376 repo-config) : deprecated;;
377 rerere) : plumbing;;
378 rev-list) : plumbing;;
379 rev-parse) : plumbing;;
380 runstatus) : plumbing;;
381 sh-setup) : internal;;
382 shell) : daemon;;
383 send-pack) : plumbing;;
384 show-index) : plumbing;;
385 ssh-*) : transport;;
386 stripspace) : plumbing;;
387 symbolic-ref) : plumbing;;
388 tar-tree) : deprecated;;
389 unpack-file) : plumbing;;
390 unpack-objects) : plumbing;;
391 update-index) : plumbing;;
392 update-ref) : plumbing;;
393 update-server-info) : daemon;;
394 upload-archive) : plumbing;;
395 upload-pack) : plumbing;;
396 write-tree) : plumbing;;
397 verify-tag) : plumbing;;
398 *) echo $i;;
399 esac
400 done
402 __git_commandlist=
403 __git_commandlist="$(__git_commands 2>/dev/null)"
405 __git_aliases ()
407 local i IFS=$'\n'
408 for i in $(git --git-dir="$(__gitdir)" config --list); do
409 case "$i" in
410 alias.*)
411 i="${i#alias.}"
412 echo "${i/=*/}"
414 esac
415 done
418 __git_aliased_command ()
420 local word cmdline=$(git --git-dir="$(__gitdir)" \
421 config --get "alias.$1")
422 for word in $cmdline; do
423 if [ "${word##-*}" ]; then
424 echo $word
425 return
427 done
430 __git_find_subcommand ()
432 local word subcommand c=1
434 while [ $c -lt $COMP_CWORD ]; do
435 word="${COMP_WORDS[c]}"
436 for subcommand in $1; do
437 if [ "$subcommand" = "$word" ]; then
438 echo "$subcommand"
439 return
441 done
442 c=$((++c))
443 done
446 __git_whitespacelist="nowarn warn error error-all strip"
448 _git_am ()
450 local cur="${COMP_WORDS[COMP_CWORD]}"
451 if [ -d .dotest ]; then
452 __gitcomp "--skip --resolved"
453 return
455 case "$cur" in
456 --whitespace=*)
457 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
458 return
460 --*)
461 __gitcomp "
462 --signoff --utf8 --binary --3way --interactive
463 --whitespace=
465 return
466 esac
467 COMPREPLY=()
470 _git_apply ()
472 local cur="${COMP_WORDS[COMP_CWORD]}"
473 case "$cur" in
474 --whitespace=*)
475 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
476 return
478 --*)
479 __gitcomp "
480 --stat --numstat --summary --check --index
481 --cached --index-info --reverse --reject --unidiff-zero
482 --apply --no-add --exclude=
483 --whitespace= --inaccurate-eof --verbose
485 return
486 esac
487 COMPREPLY=()
490 _git_add ()
492 local cur="${COMP_WORDS[COMP_CWORD]}"
493 case "$cur" in
494 --*)
495 __gitcomp "--interactive --refresh"
496 return
497 esac
498 COMPREPLY=()
501 _git_bisect ()
503 local subcommands="start bad good reset visualize replay log"
504 local subcommand="$(__git_find_subcommand "$subcommands")"
505 if [ -z "$subcommand" ]; then
506 __gitcomp "$subcommands"
507 return
510 case "$subcommand" in
511 bad|good|reset)
512 __gitcomp "$(__git_refs)"
515 COMPREPLY=()
517 esac
520 _git_branch ()
522 local i c=1 only_local_ref="n" has_r="n"
524 while [ $c -lt $COMP_CWORD ]; do
525 i="${COMP_WORDS[c]}"
526 case "$i" in
527 -d|-m) only_local_ref="y" ;;
528 -r) has_r="y" ;;
529 esac
530 c=$((++c))
531 done
533 case "${COMP_WORDS[COMP_CWORD]}" in
534 --*=*) COMPREPLY=() ;;
535 --*)
536 __gitcomp "
537 --color --no-color --verbose --abbrev= --no-abbrev
538 --track --no-track
542 if [ $only_local_ref = "y" -a $has_r = "n" ]; then
543 __gitcomp "$(__git_heads)"
544 else
545 __gitcomp "$(__git_refs)"
548 esac
551 _git_bundle ()
553 local mycword="$COMP_CWORD"
554 case "${COMP_WORDS[0]}" in
555 git)
556 local cmd="${COMP_WORDS[2]}"
557 mycword="$((mycword-1))"
559 git-bundle*)
560 local cmd="${COMP_WORDS[1]}"
562 esac
563 case "$mycword" in
565 __gitcomp "create list-heads verify unbundle"
568 # looking for a file
571 case "$cmd" in
572 create)
573 __git_complete_revlist
575 esac
577 esac
580 _git_checkout ()
582 __gitcomp "$(__git_refs)"
585 _git_cherry ()
587 __gitcomp "$(__git_refs)"
590 _git_cherry_pick ()
592 local cur="${COMP_WORDS[COMP_CWORD]}"
593 case "$cur" in
594 --*)
595 __gitcomp "--edit --no-commit"
598 __gitcomp "$(__git_refs)"
600 esac
603 _git_commit ()
605 local cur="${COMP_WORDS[COMP_CWORD]}"
606 case "$cur" in
607 --*)
608 __gitcomp "
609 --all --author= --signoff --verify --no-verify
610 --edit --amend --include --only
612 return
613 esac
614 COMPREPLY=()
617 _git_describe ()
619 __gitcomp "$(__git_refs)"
622 _git_diff ()
624 local cur="${COMP_WORDS[COMP_CWORD]}"
625 case "$cur" in
626 --*)
627 __gitcomp "--cached --stat --numstat --shortstat --summary
628 --patch-with-stat --name-only --name-status --color
629 --no-color --color-words --no-renames --check
630 --full-index --binary --abbrev --diff-filter
631 --find-copies-harder --pickaxe-all --pickaxe-regex
632 --text --ignore-space-at-eol --ignore-space-change
633 --ignore-all-space --exit-code --quiet --ext-diff
634 --no-ext-diff"
635 return
637 esac
638 __git_complete_file
641 _git_diff_tree ()
643 __gitcomp "$(__git_refs)"
646 _git_fetch ()
648 local cur="${COMP_WORDS[COMP_CWORD]}"
650 case "${COMP_WORDS[0]},$COMP_CWORD" in
651 git-fetch*,1)
652 __gitcomp "$(__git_remotes)"
654 git,2)
655 __gitcomp "$(__git_remotes)"
658 case "$cur" in
659 *:*)
660 __gitcomp "$(__git_refs)" "" "${cur#*:}"
663 local remote
664 case "${COMP_WORDS[0]}" in
665 git-fetch) remote="${COMP_WORDS[1]}" ;;
666 git) remote="${COMP_WORDS[2]}" ;;
667 esac
668 __gitcomp "$(__git_refs2 "$remote")"
670 esac
672 esac
675 _git_format_patch ()
677 local cur="${COMP_WORDS[COMP_CWORD]}"
678 case "$cur" in
679 --*)
680 __gitcomp "
681 --stdout --attach --thread
682 --output-directory
683 --numbered --start-number
684 --numbered-files
685 --keep-subject
686 --signoff
687 --in-reply-to=
688 --full-index --binary
689 --not --all
690 --cover-letter
692 return
694 esac
695 __git_complete_revlist
698 _git_gc ()
700 local cur="${COMP_WORDS[COMP_CWORD]}"
701 case "$cur" in
702 --*)
703 __gitcomp "--prune --aggressive"
704 return
706 esac
707 COMPREPLY=()
710 _git_ls_remote ()
712 __gitcomp "$(__git_remotes)"
715 _git_ls_tree ()
717 __git_complete_file
720 _git_log ()
722 local cur="${COMP_WORDS[COMP_CWORD]}"
723 case "$cur" in
724 --pretty=*)
725 __gitcomp "
726 oneline short medium full fuller email raw
727 " "" "${cur##--pretty=}"
728 return
730 --date=*)
731 __gitcomp "
732 relative iso8601 rfc2822 short local default
733 " "" "${cur##--date=}"
734 return
736 --*)
737 __gitcomp "
738 --max-count= --max-age= --since= --after=
739 --min-age= --before= --until=
740 --root --topo-order --date-order --reverse
741 --no-merges --follow
742 --abbrev-commit --abbrev=
743 --relative-date --date=
744 --author= --committer= --grep=
745 --all-match
746 --pretty= --name-status --name-only --raw
747 --not --all
748 --left-right --cherry-pick
750 return
752 esac
753 __git_complete_revlist
756 _git_merge ()
758 local cur="${COMP_WORDS[COMP_CWORD]}"
759 case "${COMP_WORDS[COMP_CWORD-1]}" in
760 -s|--strategy)
761 __gitcomp "$(__git_merge_strategies)"
762 return
763 esac
764 case "$cur" in
765 --strategy=*)
766 __gitcomp "$(__git_merge_strategies)" "" "${cur##--strategy=}"
767 return
769 --*)
770 __gitcomp "
771 --no-commit --no-summary --squash --strategy
773 return
774 esac
775 __gitcomp "$(__git_refs)"
778 _git_merge_base ()
780 __gitcomp "$(__git_refs)"
783 _git_name_rev ()
785 __gitcomp "--tags --all --stdin"
788 _git_pull ()
790 local cur="${COMP_WORDS[COMP_CWORD]}"
792 case "${COMP_WORDS[0]},$COMP_CWORD" in
793 git-pull*,1)
794 __gitcomp "$(__git_remotes)"
796 git,2)
797 __gitcomp "$(__git_remotes)"
800 local remote
801 case "${COMP_WORDS[0]}" in
802 git-pull) remote="${COMP_WORDS[1]}" ;;
803 git) remote="${COMP_WORDS[2]}" ;;
804 esac
805 __gitcomp "$(__git_refs "$remote")"
807 esac
810 _git_push ()
812 local cur="${COMP_WORDS[COMP_CWORD]}"
814 case "${COMP_WORDS[0]},$COMP_CWORD" in
815 git-push*,1)
816 __gitcomp "$(__git_remotes)"
818 git,2)
819 __gitcomp "$(__git_remotes)"
822 case "$cur" in
823 *:*)
824 local remote
825 case "${COMP_WORDS[0]}" in
826 git-push) remote="${COMP_WORDS[1]}" ;;
827 git) remote="${COMP_WORDS[2]}" ;;
828 esac
829 __gitcomp "$(__git_refs "$remote")" "" "${cur#*:}"
832 __gitcomp "$(__git_refs)" + "${cur#+}"
835 __gitcomp "$(__git_refs)"
837 esac
839 esac
842 _git_rebase ()
844 local cur="${COMP_WORDS[COMP_CWORD]}" dir="$(__gitdir)"
845 if [ -d .dotest ] || [ -d "$dir"/.dotest-merge ]; then
846 __gitcomp "--continue --skip --abort"
847 return
849 case "${COMP_WORDS[COMP_CWORD-1]}" in
850 -s|--strategy)
851 __gitcomp "$(__git_merge_strategies)"
852 return
853 esac
854 case "$cur" in
855 --strategy=*)
856 __gitcomp "$(__git_merge_strategies)" "" "${cur##--strategy=}"
857 return
859 --*)
860 __gitcomp "--onto --merge --strategy"
861 return
862 esac
863 __gitcomp "$(__git_refs)"
866 _git_config ()
868 local cur="${COMP_WORDS[COMP_CWORD]}"
869 local prv="${COMP_WORDS[COMP_CWORD-1]}"
870 case "$prv" in
871 branch.*.remote)
872 __gitcomp "$(__git_remotes)"
873 return
875 branch.*.merge)
876 __gitcomp "$(__git_refs)"
877 return
879 remote.*.fetch)
880 local remote="${prv#remote.}"
881 remote="${remote%.fetch}"
882 __gitcomp "$(__git_refs_remotes "$remote")"
883 return
885 remote.*.push)
886 local remote="${prv#remote.}"
887 remote="${remote%.push}"
888 __gitcomp "$(git --git-dir="$(__gitdir)" \
889 for-each-ref --format='%(refname):%(refname)' \
890 refs/heads)"
891 return
893 pull.twohead|pull.octopus)
894 __gitcomp "$(__git_merge_strategies)"
895 return
897 color.branch|color.diff|color.status)
898 __gitcomp "always never auto"
899 return
901 color.*.*)
902 __gitcomp "
903 black red green yellow blue magenta cyan white
904 bold dim ul blink reverse
906 return
908 *.*)
909 COMPREPLY=()
910 return
912 esac
913 case "$cur" in
914 --*)
915 __gitcomp "
916 --global --system --file=
917 --list --replace-all
918 --get --get-all --get-regexp
919 --add --unset --unset-all
920 --remove-section --rename-section
922 return
924 branch.*.*)
925 local pfx="${cur%.*}."
926 cur="${cur##*.}"
927 __gitcomp "remote merge" "$pfx" "$cur"
928 return
930 branch.*)
931 local pfx="${cur%.*}."
932 cur="${cur#*.}"
933 __gitcomp "$(__git_heads)" "$pfx" "$cur" "."
934 return
936 remote.*.*)
937 local pfx="${cur%.*}."
938 cur="${cur##*.}"
939 __gitcomp "
940 url fetch push skipDefaultUpdate
941 receivepack uploadpack tagopt
942 " "$pfx" "$cur"
943 return
945 remote.*)
946 local pfx="${cur%.*}."
947 cur="${cur#*.}"
948 __gitcomp "$(__git_remotes)" "$pfx" "$cur" "."
949 return
951 esac
952 __gitcomp "
953 apply.whitespace
954 core.fileMode
955 core.gitProxy
956 core.ignoreStat
957 core.preferSymlinkRefs
958 core.logAllRefUpdates
959 core.loosecompression
960 core.repositoryFormatVersion
961 core.sharedRepository
962 core.warnAmbiguousRefs
963 core.compression
964 core.packedGitWindowSize
965 core.packedGitLimit
966 clean.requireForce
967 color.branch
968 color.branch.current
969 color.branch.local
970 color.branch.remote
971 color.branch.plain
972 color.diff
973 color.diff.plain
974 color.diff.meta
975 color.diff.frag
976 color.diff.old
977 color.diff.new
978 color.diff.commit
979 color.diff.whitespace
980 color.pager
981 color.status
982 color.status.header
983 color.status.added
984 color.status.changed
985 color.status.untracked
986 diff.renameLimit
987 diff.renames
988 fetch.unpackLimit
989 format.headers
990 format.subjectprefix
991 gitcvs.enabled
992 gitcvs.logfile
993 gitcvs.allbinary
994 gitcvs.dbname gitcvs.dbdriver gitcvs.dbuser gitcvs.dvpass
995 gc.packrefs
996 gc.reflogexpire
997 gc.reflogexpireunreachable
998 gc.rerereresolved
999 gc.rerereunresolved
1000 http.sslVerify
1001 http.sslCert
1002 http.sslKey
1003 http.sslCAInfo
1004 http.sslCAPath
1005 http.maxRequests
1006 http.lowSpeedLimit
1007 http.lowSpeedTime
1008 http.noEPSV
1009 i18n.commitEncoding
1010 i18n.logOutputEncoding
1011 log.showroot
1012 merge.tool
1013 merge.summary
1014 merge.verbosity
1015 pack.window
1016 pack.depth
1017 pack.windowMemory
1018 pack.compression
1019 pack.deltaCacheSize
1020 pack.deltaCacheLimit
1021 pull.octopus
1022 pull.twohead
1023 repack.useDeltaBaseOffset
1024 show.difftree
1025 showbranch.default
1026 tar.umask
1027 transfer.unpackLimit
1028 receive.unpackLimit
1029 receive.denyNonFastForwards
1030 user.name
1031 user.email
1032 user.signingkey
1033 whatchanged.difftree
1034 branch. remote.
1038 _git_remote ()
1040 local subcommands="add rm show prune update"
1041 local subcommand="$(__git_find_subcommand "$subcommands")"
1042 if [ -z "$subcommand" ]; then
1043 return
1046 case "$subcommand" in
1047 rm|show|prune)
1048 __gitcomp "$(__git_remotes)"
1050 update)
1051 local i c='' IFS=$'\n'
1052 for i in $(git --git-dir="$(__gitdir)" config --list); do
1053 case "$i" in
1054 remotes.*)
1055 i="${i#remotes.}"
1056 c="$c ${i/=*/}"
1058 esac
1059 done
1060 __gitcomp "$c"
1063 COMPREPLY=()
1065 esac
1068 _git_reset ()
1070 local cur="${COMP_WORDS[COMP_CWORD]}"
1071 case "$cur" in
1072 --*)
1073 __gitcomp "--mixed --hard --soft"
1074 return
1076 esac
1077 __gitcomp "$(__git_refs)"
1080 _git_shortlog ()
1082 local cur="${COMP_WORDS[COMP_CWORD]}"
1083 case "$cur" in
1084 --*)
1085 __gitcomp "
1086 --max-count= --max-age= --since= --after=
1087 --min-age= --before= --until=
1088 --no-merges
1089 --author= --committer= --grep=
1090 --all-match
1091 --not --all
1092 --numbered --summary
1094 return
1096 esac
1097 __git_complete_revlist
1100 _git_show ()
1102 local cur="${COMP_WORDS[COMP_CWORD]}"
1103 case "$cur" in
1104 --pretty=*)
1105 __gitcomp "
1106 oneline short medium full fuller email raw
1107 " "" "${cur##--pretty=}"
1108 return
1110 --*)
1111 __gitcomp "--pretty="
1112 return
1114 esac
1115 __git_complete_file
1118 _git_stash ()
1120 local subcommands='save list show apply clear drop pop create'
1121 if [ -z "$(__git_find_subcommand "$subcommands")" ]; then
1122 __gitcomp "$subcommands"
1126 _git_submodule ()
1128 local subcommands="add status init update"
1129 if [ -z "$(__git_find_subcommand "$subcommands")" ]; then
1130 local cur="${COMP_WORDS[COMP_CWORD]}"
1131 case "$cur" in
1132 --*)
1133 __gitcomp "--quiet --cached"
1136 __gitcomp "$subcommands"
1138 esac
1139 return
1143 _git_svn ()
1145 local subcommands="
1146 init fetch clone rebase dcommit log find-rev
1147 set-tree commit-diff info create-ignore propget
1148 proplist show-ignore show-externals
1150 local subcommand="$(__git_find_subcommand "$subcommands")"
1151 if [ -z "$subcommand" ]; then
1152 __gitcomp "$subcommands"
1153 else
1154 local remote_opts="--username= --config-dir= --no-auth-cache"
1155 local fc_opts="
1156 --follow-parent --authors-file= --repack=
1157 --no-metadata --use-svm-props --use-svnsync-props
1158 --log-window-size= --no-checkout --quiet
1159 --repack-flags --user-log-author $remote_opts
1161 local init_opts="
1162 --template= --shared= --trunk= --tags=
1163 --branches= --stdlayout --minimize-url
1164 --no-metadata --use-svm-props --use-svnsync-props
1165 --rewrite-root= $remote_opts
1167 local cmt_opts="
1168 --edit --rmdir --find-copies-harder --copy-similarity=
1171 local cur="${COMP_WORDS[COMP_CWORD]}"
1172 case "$subcommand,$cur" in
1173 fetch,--*)
1174 __gitcomp "--revision= --fetch-all $fc_opts"
1176 clone,--*)
1177 __gitcomp "--revision= $fc_opts $init_opts"
1179 init,--*)
1180 __gitcomp "$init_opts"
1182 dcommit,--*)
1183 __gitcomp "
1184 --merge --strategy= --verbose --dry-run
1185 --fetch-all --no-rebase $cmt_opts $fc_opts
1188 set-tree,--*)
1189 __gitcomp "--stdin $cmt_opts $fc_opts"
1191 create-ignore,--*|propget,--*|proplist,--*|show-ignore,--*|\
1192 show-externals,--*)
1193 __gitcomp "--revision="
1195 log,--*)
1196 __gitcomp "
1197 --limit= --revision= --verbose --incremental
1198 --oneline --show-commit --non-recursive
1199 --authors-file=
1202 rebase,--*)
1203 __gitcomp "
1204 --merge --verbose --strategy= --local
1205 --fetch-all $fc_opts
1208 commit-diff,--*)
1209 __gitcomp "--message= --file= --revision= $cmt_opts"
1211 info,--*)
1212 __gitcomp "--url"
1215 COMPREPLY=()
1217 esac
1221 _git_tag ()
1223 local i c=1 f=0
1224 while [ $c -lt $COMP_CWORD ]; do
1225 i="${COMP_WORDS[c]}"
1226 case "$i" in
1227 -d|-v)
1228 __gitcomp "$(__git_tags)"
1229 return
1234 esac
1235 c=$((++c))
1236 done
1238 case "${COMP_WORDS[COMP_CWORD-1]}" in
1239 -m|-F)
1240 COMPREPLY=()
1242 -*|tag|git-tag)
1243 if [ $f = 1 ]; then
1244 __gitcomp "$(__git_tags)"
1245 else
1246 COMPREPLY=()
1250 __gitcomp "$(__git_refs)"
1252 esac
1255 _git ()
1257 local i c=1 command __git_dir
1259 while [ $c -lt $COMP_CWORD ]; do
1260 i="${COMP_WORDS[c]}"
1261 case "$i" in
1262 --git-dir=*) __git_dir="${i#--git-dir=}" ;;
1263 --bare) __git_dir="." ;;
1264 --version|--help|-p|--paginate) ;;
1265 *) command="$i"; break ;;
1266 esac
1267 c=$((++c))
1268 done
1270 if [ -z "$command" ]; then
1271 case "${COMP_WORDS[COMP_CWORD]}" in
1272 --*=*) COMPREPLY=() ;;
1273 --*) __gitcomp "
1274 --no-pager
1275 --git-dir=
1276 --bare
1277 --version
1278 --exec-path
1281 *) __gitcomp "$(__git_commands) $(__git_aliases)" ;;
1282 esac
1283 return
1286 local expansion=$(__git_aliased_command "$command")
1287 [ "$expansion" ] && command="$expansion"
1289 case "$command" in
1290 am) _git_am ;;
1291 add) _git_add ;;
1292 apply) _git_apply ;;
1293 bisect) _git_bisect ;;
1294 bundle) _git_bundle ;;
1295 branch) _git_branch ;;
1296 checkout) _git_checkout ;;
1297 cherry) _git_cherry ;;
1298 cherry-pick) _git_cherry_pick ;;
1299 commit) _git_commit ;;
1300 config) _git_config ;;
1301 describe) _git_describe ;;
1302 diff) _git_diff ;;
1303 fetch) _git_fetch ;;
1304 format-patch) _git_format_patch ;;
1305 gc) _git_gc ;;
1306 log) _git_log ;;
1307 ls-remote) _git_ls_remote ;;
1308 ls-tree) _git_ls_tree ;;
1309 merge) _git_merge;;
1310 merge-base) _git_merge_base ;;
1311 name-rev) _git_name_rev ;;
1312 pull) _git_pull ;;
1313 push) _git_push ;;
1314 rebase) _git_rebase ;;
1315 remote) _git_remote ;;
1316 reset) _git_reset ;;
1317 shortlog) _git_shortlog ;;
1318 show) _git_show ;;
1319 show-branch) _git_log ;;
1320 stash) _git_stash ;;
1321 submodule) _git_submodule ;;
1322 svn) _git_svn ;;
1323 tag) _git_tag ;;
1324 whatchanged) _git_log ;;
1325 *) COMPREPLY=() ;;
1326 esac
1329 _gitk ()
1331 local cur="${COMP_WORDS[COMP_CWORD]}"
1332 case "$cur" in
1333 --*)
1334 __gitcomp "--not --all"
1335 return
1337 esac
1338 __git_complete_revlist
1341 complete -o default -o nospace -F _git git
1342 complete -o default -o nospace -F _gitk gitk
1343 complete -o default -o nospace -F _git_am git-am
1344 complete -o default -o nospace -F _git_apply git-apply
1345 complete -o default -o nospace -F _git_bisect git-bisect
1346 complete -o default -o nospace -F _git_branch git-branch
1347 complete -o default -o nospace -F _git_bundle git-bundle
1348 complete -o default -o nospace -F _git_checkout git-checkout
1349 complete -o default -o nospace -F _git_cherry git-cherry
1350 complete -o default -o nospace -F _git_cherry_pick git-cherry-pick
1351 complete -o default -o nospace -F _git_commit git-commit
1352 complete -o default -o nospace -F _git_describe git-describe
1353 complete -o default -o nospace -F _git_diff git-diff
1354 complete -o default -o nospace -F _git_fetch git-fetch
1355 complete -o default -o nospace -F _git_format_patch git-format-patch
1356 complete -o default -o nospace -F _git_gc git-gc
1357 complete -o default -o nospace -F _git_log git-log
1358 complete -o default -o nospace -F _git_ls_remote git-ls-remote
1359 complete -o default -o nospace -F _git_ls_tree git-ls-tree
1360 complete -o default -o nospace -F _git_merge git-merge
1361 complete -o default -o nospace -F _git_merge_base git-merge-base
1362 complete -o default -o nospace -F _git_name_rev git-name-rev
1363 complete -o default -o nospace -F _git_pull git-pull
1364 complete -o default -o nospace -F _git_push git-push
1365 complete -o default -o nospace -F _git_rebase git-rebase
1366 complete -o default -o nospace -F _git_config git-config
1367 complete -o default -o nospace -F _git_remote git-remote
1368 complete -o default -o nospace -F _git_reset git-reset
1369 complete -o default -o nospace -F _git_shortlog git-shortlog
1370 complete -o default -o nospace -F _git_show git-show
1371 complete -o default -o nospace -F _git_stash git-stash
1372 complete -o default -o nospace -F _git_submodule git-submodule
1373 complete -o default -o nospace -F _git_svn git-svn
1374 complete -o default -o nospace -F _git_log git-show-branch
1375 complete -o default -o nospace -F _git_tag git-tag
1376 complete -o default -o nospace -F _git_log git-whatchanged
1378 # The following are necessary only for Cygwin, and only are needed
1379 # when the user has tab-completed the executable name and consequently
1380 # included the '.exe' suffix.
1382 if [ Cygwin = "$(uname -o 2>/dev/null)" ]; then
1383 complete -o default -o nospace -F _git_add git-add.exe
1384 complete -o default -o nospace -F _git_apply git-apply.exe
1385 complete -o default -o nospace -F _git git.exe
1386 complete -o default -o nospace -F _git_branch git-branch.exe
1387 complete -o default -o nospace -F _git_bundle git-bundle.exe
1388 complete -o default -o nospace -F _git_cherry git-cherry.exe
1389 complete -o default -o nospace -F _git_describe git-describe.exe
1390 complete -o default -o nospace -F _git_diff git-diff.exe
1391 complete -o default -o nospace -F _git_format_patch git-format-patch.exe
1392 complete -o default -o nospace -F _git_log git-log.exe
1393 complete -o default -o nospace -F _git_ls_tree git-ls-tree.exe
1394 complete -o default -o nospace -F _git_merge_base git-merge-base.exe
1395 complete -o default -o nospace -F _git_name_rev git-name-rev.exe
1396 complete -o default -o nospace -F _git_push git-push.exe
1397 complete -o default -o nospace -F _git_config git-config
1398 complete -o default -o nospace -F _git_shortlog git-shortlog.exe
1399 complete -o default -o nospace -F _git_show git-show.exe
1400 complete -o default -o nospace -F _git_log git-show-branch.exe
1401 complete -o default -o nospace -F _git_tag git-tag.exe
1402 complete -o default -o nospace -F _git_log git-whatchanged.exe