2 # bash completion support for core Git.
4 # Copyright (C) 2006,2007 Shawn Pearce
5 # Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/).
7 # The contained completion routines provide support for completing:
9 # *) local and remote branch names
10 # *) local and remote tag names
11 # *) .git/remotes file names
12 # *) git 'subcommands'
13 # *) tree paths within 'ref:path/to/file' expressions
15 # To use these routines:
17 # 1) Copy this file to somewhere (e.g. ~/.git-completion.sh).
18 # 2) Added the following line to your .bashrc:
19 # source ~/.git-completion.sh
21 # 3) You may want to make sure the git executable is available
22 # in your PATH before this script is sourced, as some caching
23 # is performed while the script loads. If git isn't found
24 # at source time then all lookups will be done on demand,
25 # which may be slightly slower.
27 # 4) Consider changing your PS1 to also show the current branch:
28 # PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ '
30 # The argument to __git_ps1 will be displayed only if you
31 # are currently in a git repository. The %s token will be
32 # the name of the current branch.
38 if [ -n "$__git_dir" ]; then
40 elif [ -d .git
]; then
43 git rev-parse
--git-dir 2>/dev
/null
45 elif [ -d "$1/.git" ]; then
54 local b
="$(git symbolic-ref HEAD 2>/dev/null)"
57 printf "$1" "${b##refs/heads/}"
59 printf " (%s)" "${b##refs/heads/}"
66 local all c s
=$
'\n' IFS
=' '$
'\t'$
'\n'
67 local cur
="${COMP_WORDS[COMP_CWORD]}"
73 --*=*) all
="$all$c$4$s" ;;
74 *.
) all
="$all$c$4$s" ;;
75 *) all
="$all$c$4 $s" ;;
79 COMPREPLY
=($
(compgen
-P "$2" -W "$all" -- "$cur"))
85 local cmd i is_hash
=y dir
="$(__gitdir "$1")"
86 if [ -d "$dir" ]; then
87 for i
in $
(git
--git-dir="$dir" \
88 for-each-ref
--format='%(refname)' \
90 echo "${i#refs/heads/}"
94 for i
in $
(git-ls-remote
"$1" 2>/dev
/null
); do
98 n
,refs
/heads
/*) is_hash
=y
; echo "${i#refs/heads/}" ;;
99 n
,*) is_hash
=y
; echo "$i" ;;
106 local cmd i is_hash
=y dir
="$(__gitdir "$1")"
107 if [ -d "$dir" ]; then
108 if [ -e "$dir/HEAD" ]; then echo HEAD
; fi
109 for i
in $
(git
--git-dir="$dir" \
110 for-each-ref
--format='%(refname)' \
111 refs
/tags refs
/heads refs
/remotes
); do
113 refs
/tags
/*) echo "${i#refs/tags/}" ;;
114 refs
/heads
/*) echo "${i#refs/heads/}" ;;
115 refs
/remotes
/*) echo "${i#refs/remotes/}" ;;
121 for i
in $
(git-ls-remote
"$dir" 2>/dev
/null
); do
122 case "$is_hash,$i" in
125 n
,refs
/tags
/*) is_hash
=y
; echo "${i#refs/tags/}" ;;
126 n
,refs
/heads
/*) is_hash
=y
; echo "${i#refs/heads/}" ;;
127 n
,refs
/remotes
/*) is_hash
=y
; echo "${i#refs/remotes/}" ;;
128 n
,*) is_hash
=y
; echo "$i" ;;
136 for i
in $
(__git_refs
"$1"); do
141 __git_refs_remotes
()
143 local cmd i is_hash
=y
144 for i
in $
(git-ls-remote
"$1" 2>/dev
/null
); do
145 case "$is_hash,$i" in
148 echo "$i:refs/remotes/$1/${i#refs/heads/}"
152 n
,refs
/tags
/*) is_hash
=y
;;
160 local i ngoff IFS
=$
'\n' d
="$(__gitdir)"
161 shopt -q nullglob || ngoff
=1
163 for i
in "$d/remotes"/*; do
164 echo ${i#$d/remotes/}
166 [ "$ngoff" ] && shopt -u nullglob
167 for i
in $
(git
--git-dir="$d" config
--list); do
177 __git_merge_strategies
()
179 if [ -n "$__git_merge_strategylist" ]; then
180 echo "$__git_merge_strategylist"
183 sed -n "/^all_strategies='/{
184 s/^all_strategies='//
188 }" "$(git --exec-path)/git-merge"
190 __git_merge_strategylist
=
191 __git_merge_strategylist
="$(__git_merge_strategies 2>/dev/null)"
193 __git_complete_file
()
195 local pfx
ls ref cur
="${COMP_WORDS[COMP_CWORD]}"
211 COMPREPLY
=($
(compgen
-P "$pfx" \
212 -W "$(git --git-dir="$
(__gitdir
)" ls-tree "$ls" \
213 | sed '/^100... blob /s,^.* ,,
222 __gitcomp
"$(__git_refs)"
227 __git_complete_revlist
()
229 local pfx cur
="${COMP_WORDS[COMP_CWORD]}"
234 __gitcomp
"$(__git_refs)" "$pfx" "$cur"
239 __gitcomp
"$(__git_refs)" "$pfx" "$cur"
245 __gitcomp
"$(__git_refs)"
252 if [ -n "$__git_commandlist" ]; then
253 echo "$__git_commandlist"
257 for i
in $
(git
help -a|
egrep '^ ')
260 add--interactive
) : plumbing
;;
261 applymbox
) : ask gittus
;;
262 applypatch
) : ask gittus
;;
263 archimport
) : import
;;
264 cat-file
) : plumbing
;;
265 check-ref-format
) : plumbing
;;
266 commit-tree
) : plumbing
;;
267 convert-objects
) : plumbing
;;
268 cvsexportcommit
) : export;;
269 cvsimport
) : import
;;
270 cvsserver
) : daemon
;;
272 fast-import
) : import
;;
273 fsck-objects
) : plumbing
;;
274 fetch-pack
) : plumbing
;;
275 fmt-merge-msg
) : plumbing
;;
276 hash-object
) : plumbing
;;
277 http-
*) : transport
;;
278 index-pack
) : plumbing
;;
279 init-db
) : deprecated
;;
280 local-fetch
) : plumbing
;;
281 mailinfo
) : plumbing
;;
282 mailsplit
) : plumbing
;;
283 merge-
*) : plumbing
;;
286 pack-objects
) : plumbing
;;
287 pack-redundant
) : plumbing
;;
288 pack-refs
) : plumbing
;;
289 parse-remote
) : plumbing
;;
290 patch-id
) : plumbing
;;
291 peek-remote
) : plumbing
;;
293 prune-packed
) : plumbing
;;
294 quiltimport
) : import
;;
295 read-tree
) : plumbing
;;
296 receive-pack
) : plumbing
;;
298 repo-config
) : plumbing
;;
300 rev-list
) : plumbing
;;
301 rev-parse
) : plumbing
;;
302 runstatus
) : plumbing
;;
303 sh-setup
) : internal
;;
305 send-pack
) : plumbing
;;
306 show-index
) : plumbing
;;
308 stripspace
) : plumbing
;;
309 svn
) : import
export;;
310 svnimport
) : import
;;
311 symbolic-ref
) : plumbing
;;
312 tar-tree
) : deprecated
;;
313 unpack-file
) : plumbing
;;
314 unpack-objects
) : plumbing
;;
315 update-index
) : plumbing
;;
316 update-ref
) : plumbing
;;
317 update-server-info
) : daemon
;;
318 upload-archive
) : plumbing
;;
319 upload-pack
) : plumbing
;;
320 write-tree
) : plumbing
;;
321 verify-tag
) : plumbing
;;
327 __git_commandlist
="$(__git_commands 2>/dev/null)"
332 for i
in $
(git
--git-dir="$(__gitdir)" config
--list); do
342 __git_aliased_command
()
344 local word cmdline
=$
(git
--git-dir="$(__gitdir)" \
345 config
--get "alias.$1")
346 for word
in $cmdline; do
347 if [ "${word##-*}" ]; then
354 __git_whitespacelist
="nowarn warn error error-all strip"
358 local cur
="${COMP_WORDS[COMP_CWORD]}"
359 if [ -d .dotest
]; then
360 __gitcomp
"--skip --resolved"
365 __gitcomp
"$__git_whitespacelist" "" "${cur##--whitespace=}"
370 --signoff --utf8 --binary --3way --interactive
380 local cur
="${COMP_WORDS[COMP_CWORD]}"
383 __gitcomp
"$__git_whitespacelist" "" "${cur##--whitespace=}"
388 --stat --numstat --summary --check --index
389 --cached --index-info --reverse --reject --unidiff-zero
390 --apply --no-add --exclude=
391 --whitespace= --inaccurate-eof --verbose
400 local cur
="${COMP_WORDS[COMP_CWORD]}"
403 __gitcomp
"--interactive"
412 while [ $c -lt $COMP_CWORD ]; do
415 start|bad|good|
reset|visualize|replay|log
)
423 if [ $c -eq $COMP_CWORD -a -z "$command" ]; then
424 __gitcomp
"start bad good reset visualize replay log"
430 __gitcomp
"$(__git_refs)"
440 __gitcomp
"$(__git_refs)"
445 __gitcomp
"$(__git_refs)"
450 __gitcomp
"$(__git_refs)"
455 local cur
="${COMP_WORDS[COMP_CWORD]}"
458 __gitcomp
"--edit --no-commit"
461 __gitcomp
"$(__git_refs)"
468 local cur
="${COMP_WORDS[COMP_CWORD]}"
472 --all --author= --signoff --verify --no-verify
473 --edit --amend --include --only
487 __gitcomp
"$(__git_refs)"
492 local cur
="${COMP_WORDS[COMP_CWORD]}"
494 case "${COMP_WORDS[0]},$COMP_CWORD" in
496 __gitcomp
"$(__git_remotes)"
499 __gitcomp
"$(__git_remotes)"
504 __gitcomp
"$(__git_refs)" "" "${cur#*:}"
508 case "${COMP_WORDS[0]}" in
509 git-fetch
) remote
="${COMP_WORDS[1]}" ;;
510 git
) remote
="${COMP_WORDS[2]}" ;;
512 __gitcomp
"$(__git_refs2 "$remote")"
521 local cur
="${COMP_WORDS[COMP_CWORD]}"
525 --stdout --attach --thread
527 --numbered --start-number
531 --full-index --binary
537 __git_complete_revlist
542 local cur
="${COMP_WORDS[COMP_CWORD]}"
554 __gitcomp
"$(__git_remotes)"
564 local cur
="${COMP_WORDS[COMP_CWORD]}"
568 oneline short medium full fuller email raw
569 " "" "${cur##--pretty=}"
574 --max-count= --max-age= --since= --after=
575 --min-age= --before= --until=
576 --root --not --topo-order --date-order
578 --abbrev-commit --abbrev=
580 --author= --committer= --grep=
582 --pretty= --name-status --name-only
588 __git_complete_revlist
593 local cur
="${COMP_WORDS[COMP_CWORD]}"
594 case "${COMP_WORDS[COMP_CWORD-1]}" in
596 __gitcomp
"$(__git_merge_strategies)"
601 __gitcomp
"$(__git_merge_strategies)" "" "${cur##--strategy=}"
606 --no-commit --no-summary --squash --strategy
610 __gitcomp
"$(__git_refs)"
615 __gitcomp
"$(__git_refs)"
620 __gitcomp
"--tags --all --stdin"
625 local cur
="${COMP_WORDS[COMP_CWORD]}"
627 case "${COMP_WORDS[0]},$COMP_CWORD" in
629 __gitcomp
"$(__git_remotes)"
632 __gitcomp
"$(__git_remotes)"
636 case "${COMP_WORDS[0]}" in
637 git-pull
) remote
="${COMP_WORDS[1]}" ;;
638 git
) remote
="${COMP_WORDS[2]}" ;;
640 __gitcomp
"$(__git_refs "$remote")"
647 local cur
="${COMP_WORDS[COMP_CWORD]}"
649 case "${COMP_WORDS[0]},$COMP_CWORD" in
651 __gitcomp
"$(__git_remotes)"
654 __gitcomp
"$(__git_remotes)"
660 case "${COMP_WORDS[0]}" in
661 git-push
) remote
="${COMP_WORDS[1]}" ;;
662 git
) remote
="${COMP_WORDS[2]}" ;;
664 __gitcomp
"$(__git_refs "$remote")" "" "${cur#*:}"
667 __gitcomp
"$(__git_refs2)"
676 local cur
="${COMP_WORDS[COMP_CWORD]}"
677 if [ -d .dotest
] ||
[ -d .git
/.dotest-merge
]; then
678 __gitcomp
"--continue --skip --abort"
681 case "${COMP_WORDS[COMP_CWORD-1]}" in
683 __gitcomp
"$(__git_merge_strategies)"
688 __gitcomp
"$(__git_merge_strategies)" "" "${cur##--strategy=}"
692 __gitcomp
"--onto --merge --strategy"
695 __gitcomp
"$(__git_refs)"
700 local cur
="${COMP_WORDS[COMP_CWORD]}"
701 local prv
="${COMP_WORDS[COMP_CWORD-1]}"
704 __gitcomp
"$(__git_remotes)"
708 __gitcomp
"$(__git_refs)"
712 local remote
="${prv#remote.}"
713 remote
="${remote%.fetch}"
714 __gitcomp
"$(__git_refs_remotes "$remote")"
718 local remote
="${prv#remote.}"
719 remote
="${remote%.push}"
720 __gitcomp
"$(git --git-dir="$
(__gitdir
)" \
721 for-each-ref --format='%(refname):%(refname)' \
725 pull.twohead|pull.octopus
)
726 __gitcomp
"$(__git_merge_strategies)"
729 color.branch|color.
diff|color.status
)
730 __gitcomp
"always never auto"
735 black red green yellow blue magenta cyan white
736 bold dim ul blink reverse
748 --global --list --replace-all
749 --get --get-all --get-regexp
750 --add --unset --unset-all
755 local pfx
="${cur%.*}."
757 __gitcomp
"remote merge" "$pfx" "$cur"
761 local pfx
="${cur%.*}."
763 __gitcomp
"$(__git_heads)" "$pfx" "$cur" "."
767 local pfx
="${cur%.*}."
769 __gitcomp
"url fetch push" "$pfx" "$cur"
773 local pfx
="${cur%.*}."
775 __gitcomp
"$(__git_remotes)" "$pfx" "$cur" "."
784 core.preferSymlinkRefs
785 core.logAllRefUpdates
786 core.repositoryFormatVersion
787 core.sharedRepository
788 core.warnAmbiguousRefs
791 core.packedGitWindowSize
805 color.diff.whitespace
811 color.status.untracked
819 gc.reflogexpireunreachable
832 i18n.logOutputEncoding
839 repack.useDeltaBaseOffset
845 receive.denyNonFastForwards
857 while [ $c -lt $COMP_CWORD ]; do
860 add|show|prune
) command="$i"; break ;;
865 if [ $c -eq $COMP_CWORD -a -z "$command" ]; then
866 __gitcomp
"add show prune"
872 __gitcomp
"$(__git_remotes)"
882 local cur
="${COMP_WORDS[COMP_CWORD]}"
885 __gitcomp
"--mixed --hard --soft"
889 __gitcomp
"$(__git_refs)"
894 local cur
="${COMP_WORDS[COMP_CWORD]}"
898 oneline short medium full fuller email raw
899 " "" "${cur##--pretty=}"
903 __gitcomp
"--pretty="
912 local i c
=1 command __git_dir
914 while [ $c -lt $COMP_CWORD ]; do
917 --git-dir=*) __git_dir
="${i#--git-dir=}" ;;
918 --bare) __git_dir
="." ;;
919 --version|
--help|
-p|
--paginate) ;;
920 *) command="$i"; break ;;
925 if [ $c -eq $COMP_CWORD -a -z "$command" ]; then
926 case "${COMP_WORDS[COMP_CWORD]}" in
927 --*=*) COMPREPLY
=() ;;
928 --*) __gitcomp
"--git-dir= --bare --version --exec-path" ;;
929 *) __gitcomp
"$(__git_commands) $(__git_aliases)" ;;
934 local expansion
=$
(__git_aliased_command
"$command")
935 [ "$expansion" ] && command="$expansion"
941 bisect
) _git_bisect
;;
942 branch
) _git_branch
;;
943 checkout
) _git_checkout
;;
944 cherry
) _git_cherry
;;
945 cherry-pick
) _git_cherry_pick
;;
946 commit
) _git_commit
;;
947 config
) _git_config
;;
949 diff-tree
) _git_diff_tree
;;
951 format-patch
) _git_format_patch
;;
954 ls-remote
) _git_ls_remote
;;
955 ls-tree
) _git_ls_tree
;;
957 merge-base
) _git_merge_base
;;
958 name-rev
) _git_name_rev
;;
961 rebase
) _git_rebase
;;
962 remote
) _git_remote
;;
965 show-branch
) _git_log
;;
966 whatchanged
) _git_log
;;
973 local cur
="${COMP_WORDS[COMP_CWORD]}"
976 __gitcomp
"--not --all"
980 __git_complete_revlist
983 complete
-o default
-o nospace
-F _git git
984 complete
-o default
-o nospace
-F _gitk gitk
985 complete
-o default
-o nospace
-F _git_am git-am
986 complete
-o default
-o nospace
-F _git_apply git-apply
987 complete
-o default
-o nospace
-F _git_bisect git-bisect
988 complete
-o default
-o nospace
-F _git_branch git-branch
989 complete
-o default
-o nospace
-F _git_checkout git-checkout
990 complete
-o default
-o nospace
-F _git_cherry git-cherry
991 complete
-o default
-o nospace
-F _git_cherry_pick git-cherry-pick
992 complete
-o default
-o nospace
-F _git_commit git-commit
993 complete
-o default
-o nospace
-F _git_diff git-diff
994 complete
-o default
-o nospace
-F _git_diff_tree git-diff-tree
995 complete
-o default
-o nospace
-F _git_fetch git-fetch
996 complete
-o default
-o nospace
-F _git_format_patch git-format-patch
997 complete
-o default
-o nospace
-F _git_gc git-gc
998 complete
-o default
-o nospace
-F _git_log git-log
999 complete
-o default
-o nospace
-F _git_ls_remote git-ls-remote
1000 complete
-o default
-o nospace
-F _git_ls_tree git-ls-tree
1001 complete
-o default
-o nospace
-F _git_merge git-merge
1002 complete
-o default
-o nospace
-F _git_merge_base git-merge-base
1003 complete
-o default
-o nospace
-F _git_name_rev git-name-rev
1004 complete
-o default
-o nospace
-F _git_pull git-pull
1005 complete
-o default
-o nospace
-F _git_push git-push
1006 complete
-o default
-o nospace
-F _git_rebase git-rebase
1007 complete
-o default
-o nospace
-F _git_config git-config
1008 complete
-o default
-o nospace
-F _git_remote git-remote
1009 complete
-o default
-o nospace
-F _git_reset git-reset
1010 complete
-o default
-o nospace
-F _git_show git-show
1011 complete
-o default
-o nospace
-F _git_log git-show-branch
1012 complete
-o default
-o nospace
-F _git_log git-whatchanged
1014 # The following are necessary only for Cygwin, and only are needed
1015 # when the user has tab-completed the executable name and consequently
1016 # included the '.exe' suffix.
1018 if [ Cygwin
= "$(uname -o 2>/dev/null)" ]; then
1019 complete
-o default
-o nospace
-F _git_add git-add.exe
1020 complete
-o default
-o nospace
-F _git_apply git-apply.exe
1021 complete
-o default
-o nospace
-F _git git.exe
1022 complete
-o default
-o nospace
-F _git_branch git-branch.exe
1023 complete
-o default
-o nospace
-F _git_cherry git-cherry.exe
1024 complete
-o default
-o nospace
-F _git_diff git-diff.exe
1025 complete
-o default
-o nospace
-F _git_diff_tree git-diff-tree.exe
1026 complete
-o default
-o nospace
-F _git_format_patch git-format-patch.exe
1027 complete
-o default
-o nospace
-F _git_log git-log.exe
1028 complete
-o default
-o nospace
-F _git_ls_tree git-ls-tree.exe
1029 complete
-o default
-o nospace
-F _git_merge_base git-merge-base.exe
1030 complete
-o default
-o nospace
-F _git_name_rev git-name-rev.exe
1031 complete
-o default
-o nospace
-F _git_push git-push.exe
1032 complete
-o default
-o nospace
-F _git_config git-config
1033 complete
-o default
-o nospace
-F _git_show git-show.exe
1034 complete
-o default
-o nospace
-F _git_log git-show-branch.exe
1035 complete
-o default
-o nospace
-F _git_log git-whatchanged.exe