]> git.ipfire.org Git - thirdparty/git.git/blame - contrib/completion/git-completion.bash
completion: query only refs/heads/ in __git_refs_remotes()
[thirdparty/git.git] / contrib / completion / git-completion.bash
CommitLineData
a42577d4 1#!bash
690d8824 2#
b5a49471 3# bash/zsh completion support for core Git.
690d8824 4#
c70680ce 5# Copyright (C) 2006,2007 Shawn O. Pearce <spearce@spearce.org>
690d8824 6# Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/).
c70680ce 7# Distributed under the GNU General Public License, version 2.0.
690d8824
JH
8#
9# The contained completion routines provide support for completing:
10#
11# *) local and remote branch names
12# *) local and remote tag names
13# *) .git/remotes file names
14# *) git 'subcommands'
15# *) tree paths within 'ref:path/to/file' expressions
c70680ce 16# *) common --long-options
690d8824
JH
17#
18# To use these routines:
19#
20# 1) Copy this file to somewhere (e.g. ~/.git-completion.sh).
b5a49471 21# 2) Add the following line to your .bashrc/.zshrc:
06f44c3c
ML
22# source ~/.git-completion.sh
23#
eaa4e6ee 24# 3) Consider changing your PS1 to also show the current branch:
b5a49471
MSO
25# Bash: PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ '
26# ZSH: PS1='[%n@%m %c$(__git_ps1 " (%s)")]\$ '
d3d717a4
SP
27#
28# The argument to __git_ps1 will be displayed only if you
29# are currently in a git repository. The %s token will be
30# the name of the current branch.
31#
a9ee90d7
TP
32# In addition, if you set GIT_PS1_SHOWDIRTYSTATE to a nonempty
33# value, unstaged (*) and staged (+) changes will be shown next
34# to the branch name. You can configure this per-repository
35# with the bash.showDirtyState variable, which defaults to true
36# once GIT_PS1_SHOWDIRTYSTATE is enabled.
738a94a9 37#
2414b45c
DT
38# You can also see if currently something is stashed, by setting
39# GIT_PS1_SHOWSTASHSTATE to a nonempty value. If something is stashed,
40# then a '$' will be shown next to the branch name.
41#
397f7c63
DT
42# If you would like to see if there're untracked files, then you can
43# set GIT_PS1_SHOWUNTRACKEDFILES to a nonempty value. If there're
44# untracked files, then a '%' will be shown next to the branch name.
45#
6d158cba
AS
46# If you would like to see the difference between HEAD and its
47# upstream, set GIT_PS1_SHOWUPSTREAM="auto". A "<" indicates
48# you are behind, ">" indicates you are ahead, and "<>"
49# indicates you have diverged. You can further control
50# behaviour by setting GIT_PS1_SHOWUPSTREAM to a space-separated
51# list of values:
52# verbose show number of commits ahead/behind (+/-) upstream
53# legacy don't use the '--count' option available in recent
54# versions of git-rev-list
55# git always compare HEAD to @{upstream}
56# svn always compare HEAD to your SVN upstream
57# By default, __git_ps1 will compare HEAD to your SVN upstream
58# if it can find one, or @{upstream} otherwise. Once you have
59# set GIT_PS1_SHOWUPSTREAM, you can override it on a
60# per-repository basis by setting the bash.showUpstream config
61# variable.
62#
63#
c70680ce
SP
64# To submit patches:
65#
66# *) Read Documentation/SubmittingPatches
67# *) Send all patches to the current maintainer:
68#
69# "Shawn O. Pearce" <spearce@spearce.org>
70#
71# *) Always CC the Git mailing list:
72#
73# git@vger.kernel.org
74#
690d8824 75
b5a49471
MSO
76if [[ -n ${ZSH_VERSION-} ]]; then
77 autoload -U +X bashcompinit && bashcompinit
78fi
79
db8a9ff0
SP
80case "$COMP_WORDBREAKS" in
81*:*) : great ;;
82*) COMP_WORDBREAKS="$COMP_WORDBREAKS:"
83esac
84
a42577d4
TP
85# __gitdir accepts 0 or 1 arguments (i.e., location)
86# returns location of .git repo
873537fa
SP
87__gitdir ()
88{
25a31f81 89 if [ -z "${1-}" ]; then
5c9cc64a 90 if [ -n "${__git_dir-}" ]; then
67ffa114
SP
91 echo "$__git_dir"
92 elif [ -d .git ]; then
93 echo .git
94 else
95 git rev-parse --git-dir 2>/dev/null
96 fi
97 elif [ -d "$1/.git" ]; then
98 echo "$1/.git"
99 else
100 echo "$1"
101 fi
873537fa
SP
102}
103
6d158cba
AS
104# stores the divergence from upstream in $p
105# used by GIT_PS1_SHOWUPSTREAM
106__git_ps1_show_upstream ()
107{
108 local key value
109 local svn_remote=() svn_url_pattern count n
110 local upstream=git legacy="" verbose=""
111
112 # get some config options from git-config
113 while read key value; do
114 case "$key" in
115 bash.showupstream)
116 GIT_PS1_SHOWUPSTREAM="$value"
117 if [[ -z "${GIT_PS1_SHOWUPSTREAM}" ]]; then
118 p=""
119 return
120 fi
121 ;;
122 svn-remote.*.url)
123 svn_remote[ $((${#svn_remote[@]} + 1)) ]="$value"
124 svn_url_pattern+="\\|$value"
125 upstream=svn+git # default upstream is SVN if available, else git
126 ;;
127 esac
128 done < <(git config -z --get-regexp '^(svn-remote\..*\.url|bash\.showupstream)$' 2>/dev/null | tr '\0\n' '\n ')
129
130 # parse configuration values
131 for option in ${GIT_PS1_SHOWUPSTREAM}; do
132 case "$option" in
133 git|svn) upstream="$option" ;;
134 verbose) verbose=1 ;;
135 legacy) legacy=1 ;;
136 esac
137 done
138
139 # Find our upstream
140 case "$upstream" in
141 git) upstream="@{upstream}" ;;
142 svn*)
143 # get the upstream from the "git-svn-id: ..." in a commit message
144 # (git-svn uses essentially the same procedure internally)
145 local svn_upstream=($(git log --first-parent -1 \
06f44c3c 146 --grep="^git-svn-id: \(${svn_url_pattern#??}\)" 2>/dev/null))
6d158cba
AS
147 if [[ 0 -ne ${#svn_upstream[@]} ]]; then
148 svn_upstream=${svn_upstream[ ${#svn_upstream[@]} - 2 ]}
149 svn_upstream=${svn_upstream%@*}
06f44c3c
ML
150 local n_stop="${#svn_remote[@]}"
151 for ((n=1; n <= n_stop; ++n)); do
6d158cba
AS
152 svn_upstream=${svn_upstream#${svn_remote[$n]}}
153 done
154
155 if [[ -z "$svn_upstream" ]]; then
156 # default branch name for checkouts with no layout:
157 upstream=${GIT_SVN_ID:-git-svn}
158 else
159 upstream=${svn_upstream#/}
160 fi
161 elif [[ "svn+git" = "$upstream" ]]; then
162 upstream="@{upstream}"
163 fi
164 ;;
165 esac
166
167 # Find how many commits we are ahead/behind our upstream
168 if [[ -z "$legacy" ]]; then
169 count="$(git rev-list --count --left-right \
170 "$upstream"...HEAD 2>/dev/null)"
171 else
172 # produce equivalent output to --count for older versions of git
173 local commits
174 if commits="$(git rev-list --left-right "$upstream"...HEAD 2>/dev/null)"
175 then
176 local commit behind=0 ahead=0
177 for commit in $commits
178 do
179 case "$commit" in
180 "<"*) let ++behind
181 ;;
182 *) let ++ahead
183 ;;
184 esac
185 done
186 count="$behind $ahead"
187 else
188 count=""
189 fi
190 fi
191
192 # calculate the result
193 if [[ -z "$verbose" ]]; then
194 case "$count" in
195 "") # no upstream
196 p="" ;;
197 "0 0") # equal to upstream
198 p="=" ;;
199 "0 "*) # ahead of upstream
200 p=">" ;;
201 *" 0") # behind upstream
202 p="<" ;;
203 *) # diverged from upstream
204 p="<>" ;;
205 esac
206 else
207 case "$count" in
208 "") # no upstream
209 p="" ;;
210 "0 0") # equal to upstream
211 p=" u=" ;;
212 "0 "*) # ahead of upstream
213 p=" u+${count#0 }" ;;
214 *" 0") # behind upstream
215 p=" u-${count% 0}" ;;
216 *) # diverged from upstream
217 p=" u+${count#* }-${count% *}" ;;
218 esac
219 fi
220
221}
222
223
a42577d4
TP
224# __git_ps1 accepts 0 or 1 arguments (i.e., format string)
225# returns text to add to bash PS1 prompt (includes branch name)
d3d717a4
SP
226__git_ps1 ()
227{
fa26a401 228 local g="$(__gitdir)"
e7520196 229 if [ -n "$g" ]; then
6c44b640
AS
230 local r=""
231 local b=""
d7107ca6 232 if [ -f "$g/rebase-merge/interactive" ]; then
e7520196 233 r="|REBASE-i"
28ed6e7b 234 b="$(cat "$g/rebase-merge/head-name")"
ad244d25 235 elif [ -d "$g/rebase-merge" ]; then
e7520196 236 r="|REBASE-m"
28ed6e7b 237 b="$(cat "$g/rebase-merge/head-name")"
e7520196 238 else
d7107ca6
JH
239 if [ -d "$g/rebase-apply" ]; then
240 if [ -f "$g/rebase-apply/rebasing" ]; then
241 r="|REBASE"
242 elif [ -f "$g/rebase-apply/applying" ]; then
243 r="|AM"
244 else
245 r="|AM/REBASE"
246 fi
247 elif [ -f "$g/MERGE_HEAD" ]; then
8763dbb1 248 r="|MERGING"
5b2af8ca
JS
249 elif [ -f "$g/CHERRY_PICK_HEAD" ]; then
250 r="|CHERRY-PICKING"
d7107ca6 251 elif [ -f "$g/BISECT_LOG" ]; then
e7520196
RR
252 r="|BISECTING"
253 fi
ff790b6a
JH
254
255 b="$(git symbolic-ref HEAD 2>/dev/null)" || {
dd42c2f0
JH
256
257 b="$(
258 case "${GIT_PS1_DESCRIBE_STYLE-}" in
259 (contains)
260 git describe --contains HEAD ;;
261 (branch)
262 git describe --contains --all HEAD ;;
263 (describe)
264 git describe HEAD ;;
265 (* | default)
bd40d252 266 git describe --tags --exact-match HEAD ;;
dd42c2f0
JH
267 esac 2>/dev/null)" ||
268
ff790b6a
JH
269 b="$(cut -c1-7 "$g/HEAD" 2>/dev/null)..." ||
270 b="unknown"
ff790b6a
JH
271 b="($b)"
272 }
e7520196
RR
273 fi
274
6c44b640
AS
275 local w=""
276 local i=""
277 local s=""
278 local u=""
279 local c=""
6d158cba 280 local p=""
738a94a9 281
e5dd864a 282 if [ "true" = "$(git rev-parse --is-inside-git-dir 2>/dev/null)" ]; then
8dfb17e1 283 if [ "true" = "$(git rev-parse --is-bare-repository 2>/dev/null)" ]; then
ddb6d010
MSO
284 c="BARE:"
285 else
286 b="GIT_DIR!"
287 fi
e5dd864a
TP
288 elif [ "true" = "$(git rev-parse --is-inside-work-tree 2>/dev/null)" ]; then
289 if [ -n "${GIT_PS1_SHOWDIRTYSTATE-}" ]; then
290 if [ "$(git config --bool bash.showDirtyState)" != "false" ]; then
cf6e7ba1 291 git diff --no-ext-diff --quiet --exit-code || w="*"
e5dd864a 292 if git rev-parse --quiet --verify HEAD >/dev/null; then
cf6e7ba1 293 git diff-index --cached --quiet HEAD -- || i="+"
e5dd864a
TP
294 else
295 i="#"
296 fi
738a94a9
TR
297 fi
298 fi
2414b45c
DT
299 if [ -n "${GIT_PS1_SHOWSTASHSTATE-}" ]; then
300 git rev-parse --verify refs/stash >/dev/null 2>&1 && s="$"
301 fi
397f7c63
DT
302
303 if [ -n "${GIT_PS1_SHOWUNTRACKEDFILES-}" ]; then
304 if [ -n "$(git ls-files --others --exclude-standard)" ]; then
305 u="%"
306 fi
307 fi
6d158cba
AS
308
309 if [ -n "${GIT_PS1_SHOWUPSTREAM-}" ]; then
310 __git_ps1_show_upstream
311 fi
738a94a9
TR
312 fi
313
4cc47382 314 local f="$w$i$s$u"
6d158cba 315 printf "${1:- (%s)}" "$c${b##refs/heads/}${f:+ $f}$r$p"
d3d717a4
SP
316 fi
317}
318
a42577d4 319# __gitcomp_1 requires 2 arguments
ab02dfe5
SP
320__gitcomp_1 ()
321{
322 local c IFS=' '$'\t'$'\n'
323 for c in $1; do
324 case "$c$2" in
325 --*=*) printf %s$'\n' "$c$2" ;;
326 *.) printf %s$'\n' "$c$2" ;;
327 *) printf %s$'\n' "$c$2 " ;;
328 esac
329 done
330}
331
dbda3b10
JN
332# The following function is based on code from:
333#
334# bash_completion - programmable completion functions for bash 3.2+
335#
336# Copyright © 2006-2008, Ian Macdonald <ian@caliban.org>
337# © 2009-2010, Bash Completion Maintainers
338# <bash-completion-devel@lists.alioth.debian.org>
339#
340# This program is free software; you can redistribute it and/or modify
341# it under the terms of the GNU General Public License as published by
342# the Free Software Foundation; either version 2, or (at your option)
343# any later version.
344#
345# This program is distributed in the hope that it will be useful,
346# but WITHOUT ANY WARRANTY; without even the implied warranty of
347# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
348# GNU General Public License for more details.
349#
350# You should have received a copy of the GNU General Public License
351# along with this program; if not, write to the Free Software Foundation,
352# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
353#
354# The latest version of this software can be obtained here:
355#
356# http://bash-completion.alioth.debian.org/
357#
358# RELEASE: 2.x
359
360# This function can be used to access a tokenized list of words
361# on the command line:
362#
363# __git_reassemble_comp_words_by_ref '=:'
364# if test "${words_[cword_-1]}" = -w
365# then
366# ...
367# fi
368#
369# The argument should be a collection of characters from the list of
370# word completion separators (COMP_WORDBREAKS) to treat as ordinary
371# characters.
372#
373# This is roughly equivalent to going back in time and setting
374# COMP_WORDBREAKS to exclude those characters. The intent is to
375# make option types like --date=<type> and <rev>:<path> easy to
376# recognize by treating each shell word as a single token.
377#
378# It is best not to set COMP_WORDBREAKS directly because the value is
379# shared with other completion scripts. By the time the completion
380# function gets called, COMP_WORDS has already been populated so local
381# changes to COMP_WORDBREAKS have no effect.
382#
383# Output: words_, cword_, cur_.
384
385__git_reassemble_comp_words_by_ref()
386{
387 local exclude i j first
388 # Which word separators to exclude?
389 exclude="${1//[^$COMP_WORDBREAKS]}"
390 cword_=$COMP_CWORD
391 if [ -z "$exclude" ]; then
392 words_=("${COMP_WORDS[@]}")
393 return
394 fi
395 # List of word completion separators has shrunk;
396 # re-assemble words to complete.
397 for ((i=0, j=0; i < ${#COMP_WORDS[@]}; i++, j++)); do
398 # Append each nonempty word consisting of just
399 # word separator characters to the current word.
400 first=t
401 while
402 [ $i -gt 0 ] &&
403 [ -n "${COMP_WORDS[$i]}" ] &&
404 # word consists of excluded word separators
405 [ "${COMP_WORDS[$i]//[^$exclude]}" = "${COMP_WORDS[$i]}" ]
406 do
407 # Attach to the previous token,
408 # unless the previous token is the command name.
409 if [ $j -ge 2 ] && [ -n "$first" ]; then
410 ((j--))
411 fi
412 first=
413 words_[$j]=${words_[j]}${COMP_WORDS[i]}
414 if [ $i = $COMP_CWORD ]; then
415 cword_=$j
416 fi
417 if (($i < ${#COMP_WORDS[@]} - 1)); then
418 ((i++))
419 else
420 # Done.
421 return
422 fi
423 done
424 words_[$j]=${words_[j]}${COMP_WORDS[i]}
425 if [ $i = $COMP_CWORD ]; then
426 cword_=$j
427 fi
428 done
429}
430
da48616f 431if ! type _get_comp_words_by_ref >/dev/null 2>&1; then
52c9d8e2 432if [[ -z ${ZSH_VERSION:+set} ]]; then
da48616f
PD
433_get_comp_words_by_ref ()
434{
dbda3b10
JN
435 local exclude cur_ words_ cword_
436 if [ "$1" = "-n" ]; then
437 exclude=$2
438 shift 2
439 fi
440 __git_reassemble_comp_words_by_ref "$exclude"
441 cur_=${words_[cword_]}
da48616f
PD
442 while [ $# -gt 0 ]; do
443 case "$1" in
444 cur)
dbda3b10 445 cur=$cur_
da48616f
PD
446 ;;
447 prev)
dbda3b10 448 prev=${words_[$cword_-1]}
da48616f
PD
449 ;;
450 words)
dbda3b10 451 words=("${words_[@]}")
da48616f
PD
452 ;;
453 cword)
dbda3b10 454 cword=$cword_
da48616f
PD
455 ;;
456 esac
457 shift
458 done
459}
52c9d8e2
JN
460else
461_get_comp_words_by_ref ()
462{
463 while [ $# -gt 0 ]; do
464 case "$1" in
465 cur)
466 cur=${COMP_WORDS[COMP_CWORD]}
467 ;;
468 prev)
469 prev=${COMP_WORDS[COMP_CWORD-1]}
470 ;;
471 words)
472 words=("${COMP_WORDS[@]}")
473 ;;
474 cword)
475 cword=$COMP_CWORD
476 ;;
477 -n)
478 # assume COMP_WORDBREAKS is already set sanely
479 shift
480 ;;
481 esac
482 shift
483 done
484}
485fi
da48616f
PD
486fi
487
f674bb80
SG
488# Generates completion reply with compgen, appending a space to possible
489# completion words, if necessary.
490# It accepts 1 to 4 arguments:
491# 1: List of possible completion words.
492# 2: A prefix to be added to each possible completion word (optional).
493# 3: Generate possible completion matches for this word (optional).
494# 4: A suffix to be appended to each possible completion word (optional).
72e5e989
SP
495__gitcomp ()
496{
9244d69b
SG
497 local cur_="$cur"
498
b3391775 499 if [ $# -gt 2 ]; then
9244d69b 500 cur_="$3"
78d4d6a2 501 fi
9244d69b 502 case "$cur_" in
5447aac7
SG
503 --*=)
504 COMPREPLY=()
5447aac7
SG
505 ;;
506 *)
ab02dfe5 507 local IFS=$'\n'
25a31f81
TP
508 COMPREPLY=($(compgen -P "${2-}" \
509 -W "$(__gitcomp_1 "${1-}" "${4-}")" \
9244d69b 510 -- "$cur_"))
5447aac7
SG
511 ;;
512 esac
72e5e989
SP
513}
514
a31e6262
SG
515# Generates completion reply with compgen from newline-separated possible
516# completion words by appending a space to all of them.
517# It accepts 1 to 4 arguments:
518# 1: List of possible completion words, separated by a single newline.
519# 2: A prefix to be added to each possible completion word (optional).
520# 3: Generate possible completion matches for this word (optional).
521# 4: A suffix to be appended to each possible completion word instead of
522# the default space (optional). If specified but empty, nothing is
523# appended.
524__gitcomp_nl ()
525{
526 local s=$'\n' IFS=' '$'\t'$'\n'
527 local cur_="$cur" suffix=" "
528
529 if [ $# -gt 2 ]; then
530 cur_="$3"
531 if [ $# -gt 3 ]; then
532 suffix="$4"
533 fi
534 fi
535
536 IFS=$s
537 COMPREPLY=($(compgen -P "${2-}" -S "$suffix" -W "$1" -- "$cur_"))
538}
539
a42577d4 540# __git_heads accepts 0 or 1 arguments (to pass to __gitdir)
5de40f59
SP
541__git_heads ()
542{
25a31f81 543 local cmd i is_hash=y dir="$(__gitdir "${1-}")"
5de40f59 544 if [ -d "$dir" ]; then
05e8b3d6
SG
545 git --git-dir="$dir" for-each-ref --format='%(refname:short)' \
546 refs/heads
5de40f59
SP
547 return
548 fi
25a31f81 549 for i in $(git ls-remote "${1-}" 2>/dev/null); do
5de40f59
SP
550 case "$is_hash,$i" in
551 y,*) is_hash=n ;;
552 n,*^{}) is_hash=y ;;
553 n,refs/heads/*) is_hash=y; echo "${i#refs/heads/}" ;;
554 n,*) is_hash=y; echo "$i" ;;
555 esac
556 done
557}
558
a42577d4 559# __git_tags accepts 0 or 1 arguments (to pass to __gitdir)
88e21dc7
SP
560__git_tags ()
561{
25a31f81 562 local cmd i is_hash=y dir="$(__gitdir "${1-}")"
88e21dc7 563 if [ -d "$dir" ]; then
05e8b3d6
SG
564 git --git-dir="$dir" for-each-ref --format='%(refname:short)' \
565 refs/tags
88e21dc7
SP
566 return
567 fi
25a31f81 568 for i in $(git ls-remote "${1-}" 2>/dev/null); do
88e21dc7
SP
569 case "$is_hash,$i" in
570 y,*) is_hash=n ;;
571 n,*^{}) is_hash=y ;;
572 n,refs/tags/*) is_hash=y; echo "${i#refs/tags/}" ;;
573 n,*) is_hash=y; echo "$i" ;;
574 esac
575 done
576}
577
34a6bbb5
KB
578# __git_refs accepts 0, 1 (to pass to __gitdir), or 2 arguments
579# presence of 2nd argument means use the guess heuristic employed
580# by checkout for tracking branches
690d8824
JH
581__git_refs ()
582{
d8c0453e 583 local i hash dir="$(__gitdir "${1-}")" track="${2-}"
da4902a7 584 local format refs
873537fa 585 if [ -d "$dir" ]; then
608efb87
SG
586 case "$cur" in
587 refs|refs/*)
588 format="refname"
589 refs="${cur%/*}"
34a6bbb5 590 track=""
608efb87
SG
591 ;;
592 *)
d23e7570
IWC
593 for i in HEAD FETCH_HEAD ORIG_HEAD MERGE_HEAD; do
594 if [ -e "$dir/$i" ]; then echo $i; fi
595 done
608efb87
SG
596 format="refname:short"
597 refs="refs/tags refs/heads refs/remotes"
598 ;;
599 esac
600 git --git-dir="$dir" for-each-ref --format="%($format)" \
601 $refs
34a6bbb5
KB
602 if [ -n "$track" ]; then
603 # employ the heuristic used by git checkout
604 # Try to find a remote branch that matches the completion word
605 # but only output if the branch name is unique
606 local ref entry
607 git --git-dir="$dir" for-each-ref --shell --format="ref=%(refname:short)" \
608 "refs/remotes/" | \
609 while read entry; do
610 eval "$entry"
611 ref="${ref#*/}"
612 if [[ "$ref" == "$cur"* ]]; then
613 echo "$ref"
614 fi
615 done | uniq -u
616 fi
35e65ecc 617 return
690d8824 618 fi
fb772cca
SG
619 case "$cur" in
620 refs|refs/*)
621 git ls-remote "$dir" "$cur*" 2>/dev/null | \
622 while read hash i; do
623 case "$i" in
624 *^{}) ;;
625 *) echo "$i" ;;
626 esac
627 done
628 ;;
629 *)
630 git ls-remote "$dir" HEAD ORIG_HEAD 'refs/tags/*' 'refs/heads/*' 'refs/remotes/*' 2>/dev/null | \
631 while read hash i; do
632 case "$i" in
633 *^{}) ;;
634 refs/*) echo "${i#refs/*/}" ;;
635 *) echo "$i" ;;
636 esac
637 done
638 ;;
639 esac
690d8824
JH
640}
641
a42577d4 642# __git_refs2 requires 1 argument (to pass to __git_refs)
690d8824
JH
643__git_refs2 ()
644{
67ffa114
SP
645 local i
646 for i in $(__git_refs "$1"); do
647 echo "$i:$i"
690d8824
JH
648 done
649}
650
a42577d4 651# __git_refs_remotes requires 1 argument (to pass to ls-remote)
5de40f59
SP
652__git_refs_remotes ()
653{
d79bcf2c
SG
654 local i is_hash=y
655 for i in $(git ls-remote "$1" 'refs/heads/*' 2>/dev/null); do
656 case "$is_hash" in
657 n)
5de40f59
SP
658 is_hash=y
659 echo "$i:refs/remotes/$1/${i#refs/heads/}"
660 ;;
d79bcf2c 661 y) is_hash=n ;;
5de40f59
SP
662 esac
663 done
664}
665
690d8824
JH
666__git_remotes ()
667{
873537fa 668 local i ngoff IFS=$'\n' d="$(__gitdir)"
dad42775
JN
669 __git_shopt -q nullglob || ngoff=1
670 __git_shopt -s nullglob
873537fa
SP
671 for i in "$d/remotes"/*; do
672 echo ${i#$d/remotes/}
690d8824 673 done
dad42775 674 [ "$ngoff" ] && __git_shopt -u nullglob
518ef8f0
TZ
675 for i in $(git --git-dir="$d" config --get-regexp 'remote\..*\.url' 2>/dev/null); do
676 i="${i#remote.}"
677 echo "${i/.url*/}"
56fc25f2 678 done
690d8824
JH
679}
680
eaa4e6ee 681__git_list_merge_strategies ()
4ad91321 682{
25b3d4d6
JH
683 git merge -s help 2>&1 |
684 sed -n -e '/[Aa]vailable strategies are: /,/^$/{
685 s/\.$//
686 s/.*://
687 s/^[ ]*//
688 s/[ ]*$//
4ad91321 689 p
25b3d4d6 690 }'
4ad91321 691}
eaa4e6ee
JN
692
693__git_merge_strategies=
694# 'git merge -s help' (and thus detection of the merge strategy
695# list) fails, unfortunately, if run outside of any git working
696# tree. __git_merge_strategies is set to the empty string in
697# that case, and the detection will be repeated the next time it
698# is needed.
699__git_compute_merge_strategies ()
700{
701 : ${__git_merge_strategies:=$(__git_list_merge_strategies)}
702}
4ad91321 703
1d66ec58 704__git_complete_revlist_file ()
690d8824 705{
da4902a7 706 local pfx ls ref cur_="$cur"
9244d69b 707 case "$cur_" in
1d66ec58
SG
708 *..?*:*)
709 return
710 ;;
690d8824 711 ?*:*)
9244d69b
SG
712 ref="${cur_%%:*}"
713 cur_="${cur_#*:}"
714 case "$cur_" in
690d8824 715 ?*/*)
9244d69b
SG
716 pfx="${cur_%/*}"
717 cur_="${cur_##*/}"
690d8824
JH
718 ls="$ref:$pfx"
719 pfx="$pfx/"
720 ;;
721 *)
722 ls="$ref"
723 ;;
80152b09 724 esac
db8a9ff0
SP
725
726 case "$COMP_WORDBREAKS" in
727 *:*) : great ;;
728 *) pfx="$ref:$pfx" ;;
729 esac
730
778306e4 731 local IFS=$'\n'
690d8824 732 COMPREPLY=($(compgen -P "$pfx" \
873537fa 733 -W "$(git --git-dir="$(__gitdir)" ls-tree "$ls" \
778306e4
SP
734 | sed '/^100... blob /{
735 s,^.* ,,
736 s,$, ,
737 }
738 /^120000 blob /{
739 s,^.* ,,
740 s,$, ,
741 }
690d8824
JH
742 /^040000 tree /{
743 s,^.* ,,
744 s,$,/,
745 }
746 s/^.* //')" \
9244d69b 747 -- "$cur_"))
690d8824 748 ;;
f53352fb 749 *...*)
9244d69b
SG
750 pfx="${cur_%...*}..."
751 cur_="${cur_#*...}"
a31e6262 752 __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_"
f53352fb
SP
753 ;;
754 *..*)
9244d69b
SG
755 pfx="${cur_%..*}.."
756 cur_="${cur_#*..}"
a31e6262 757 __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_"
b3391775 758 ;;
f53352fb 759 *)
a31e6262 760 __gitcomp_nl "$(__git_refs)"
f53352fb
SP
761 ;;
762 esac
763}
764
1d66ec58
SG
765
766__git_complete_file ()
767{
768 __git_complete_revlist_file
769}
770
771__git_complete_revlist ()
772{
773 __git_complete_revlist_file
774}
775
52d5c3b5
JS
776__git_complete_remote_or_refspec ()
777{
9244d69b 778 local cur_="$cur" cmd="${words[1]}"
0a4e1472 779 local i c=2 remote="" pfx="" lhs=1 no_complete_refspec=0
da48616f
PD
780 while [ $c -lt $cword ]; do
781 i="${words[c]}"
52d5c3b5 782 case "$i" in
e25e2b42
BG
783 --mirror) [ "$cmd" = "push" ] && no_complete_refspec=1 ;;
784 --all)
785 case "$cmd" in
786 push) no_complete_refspec=1 ;;
787 fetch)
788 COMPREPLY=()
789 return
790 ;;
791 *) ;;
792 esac
793 ;;
52d5c3b5
JS
794 -*) ;;
795 *) remote="$i"; break ;;
796 esac
797 c=$((++c))
798 done
799 if [ -z "$remote" ]; then
a31e6262 800 __gitcomp_nl "$(__git_remotes)"
52d5c3b5
JS
801 return
802 fi
0a4e1472
JS
803 if [ $no_complete_refspec = 1 ]; then
804 COMPREPLY=()
805 return
806 fi
52d5c3b5 807 [ "$remote" = "." ] && remote=
9244d69b 808 case "$cur_" in
52d5c3b5
JS
809 *:*)
810 case "$COMP_WORDBREAKS" in
811 *:*) : great ;;
9244d69b 812 *) pfx="${cur_%%:*}:" ;;
52d5c3b5 813 esac
9244d69b 814 cur_="${cur_#*:}"
52d5c3b5
JS
815 lhs=0
816 ;;
817 +*)
818 pfx="+"
9244d69b 819 cur_="${cur_#+}"
52d5c3b5
JS
820 ;;
821 esac
822 case "$cmd" in
823 fetch)
824 if [ $lhs = 1 ]; then
a31e6262 825 __gitcomp_nl "$(__git_refs2 "$remote")" "$pfx" "$cur_"
52d5c3b5 826 else
a31e6262 827 __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_"
52d5c3b5
JS
828 fi
829 ;;
830 pull)
831 if [ $lhs = 1 ]; then
a31e6262 832 __gitcomp_nl "$(__git_refs "$remote")" "$pfx" "$cur_"
52d5c3b5 833 else
a31e6262 834 __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_"
52d5c3b5
JS
835 fi
836 ;;
837 push)
838 if [ $lhs = 1 ]; then
a31e6262 839 __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_"
52d5c3b5 840 else
a31e6262 841 __gitcomp_nl "$(__git_refs "$remote")" "$pfx" "$cur_"
52d5c3b5
JS
842 fi
843 ;;
844 esac
845}
846
3c7b480a
JS
847__git_complete_strategy ()
848{
eaa4e6ee 849 __git_compute_merge_strategies
da48616f 850 case "$prev" in
3c7b480a 851 -s|--strategy)
eaa4e6ee 852 __gitcomp "$__git_merge_strategies"
3c7b480a
JS
853 return 0
854 esac
3c7b480a
JS
855 case "$cur" in
856 --strategy=*)
eaa4e6ee 857 __gitcomp "$__git_merge_strategies" "" "${cur##--strategy=}"
3c7b480a
JS
858 return 0
859 ;;
860 esac
861 return 1
862}
863
eaa4e6ee 864__git_list_all_commands ()
f2bb9f88
SP
865{
866 local i IFS=" "$'\n'
427e586b 867 for i in $(git help -a|egrep '^ [a-zA-Z0-9]')
1eb7e2f8
LM
868 do
869 case $i in
870 *--*) : helper pattern;;
871 *) echo $i;;
872 esac
873 done
874}
1eb7e2f8 875
eaa4e6ee
JN
876__git_all_commands=
877__git_compute_all_commands ()
878{
879 : ${__git_all_commands:=$(__git_list_all_commands)}
880}
881
882__git_list_porcelain_commands ()
1eb7e2f8 883{
1eb7e2f8 884 local i IFS=" "$'\n'
eaa4e6ee
JN
885 __git_compute_all_commands
886 for i in "help" $__git_all_commands
f2bb9f88
SP
887 do
888 case $i in
718a087a 889 *--*) : helper pattern;;
a925c6f1
SP
890 applymbox) : ask gittus;;
891 applypatch) : ask gittus;;
892 archimport) : import;;
2e3a430a 893 cat-file) : plumbing;;
56d99c67 894 check-attr) : plumbing;;
f2bb9f88 895 check-ref-format) : plumbing;;
ff2549dc 896 checkout-index) : plumbing;;
f2bb9f88 897 commit-tree) : plumbing;;
ff2549dc 898 count-objects) : infrequent;;
a925c6f1
SP
899 cvsexportcommit) : export;;
900 cvsimport) : import;;
f2bb9f88
SP
901 cvsserver) : daemon;;
902 daemon) : daemon;;
5cfb4fe5
SP
903 diff-files) : plumbing;;
904 diff-index) : plumbing;;
905 diff-tree) : plumbing;;
c6ec3b13 906 fast-import) : import;;
ff2549dc 907 fast-export) : export;;
a925c6f1 908 fsck-objects) : plumbing;;
f2bb9f88 909 fetch-pack) : plumbing;;
a925c6f1 910 fmt-merge-msg) : plumbing;;
56d99c67 911 for-each-ref) : plumbing;;
f2bb9f88
SP
912 hash-object) : plumbing;;
913 http-*) : transport;;
914 index-pack) : plumbing;;
a925c6f1 915 init-db) : deprecated;;
f2bb9f88 916 local-fetch) : plumbing;;
ff2549dc
PB
917 lost-found) : infrequent;;
918 ls-files) : plumbing;;
919 ls-remote) : plumbing;;
920 ls-tree) : plumbing;;
f2bb9f88
SP
921 mailinfo) : plumbing;;
922 mailsplit) : plumbing;;
923 merge-*) : plumbing;;
924 mktree) : plumbing;;
925 mktag) : plumbing;;
926 pack-objects) : plumbing;;
927 pack-redundant) : plumbing;;
928 pack-refs) : plumbing;;
929 parse-remote) : plumbing;;
930 patch-id) : plumbing;;
931 peek-remote) : plumbing;;
a925c6f1
SP
932 prune) : plumbing;;
933 prune-packed) : plumbing;;
934 quiltimport) : import;;
f2bb9f88
SP
935 read-tree) : plumbing;;
936 receive-pack) : plumbing;;
63d04a78 937 remote-*) : transport;;
5c66d0d4 938 repo-config) : deprecated;;
f2bb9f88
SP
939 rerere) : plumbing;;
940 rev-list) : plumbing;;
941 rev-parse) : plumbing;;
942 runstatus) : plumbing;;
943 sh-setup) : internal;;
944 shell) : daemon;;
ff2549dc 945 show-ref) : plumbing;;
f2bb9f88
SP
946 send-pack) : plumbing;;
947 show-index) : plumbing;;
948 ssh-*) : transport;;
949 stripspace) : plumbing;;
950 symbolic-ref) : plumbing;;
a925c6f1 951 tar-tree) : deprecated;;
f2bb9f88
SP
952 unpack-file) : plumbing;;
953 unpack-objects) : plumbing;;
a925c6f1 954 update-index) : plumbing;;
f2bb9f88
SP
955 update-ref) : plumbing;;
956 update-server-info) : daemon;;
957 upload-archive) : plumbing;;
958 upload-pack) : plumbing;;
959 write-tree) : plumbing;;
ff2549dc
PB
960 var) : infrequent;;
961 verify-pack) : infrequent;;
a925c6f1 962 verify-tag) : plumbing;;
f2bb9f88
SP
963 *) echo $i;;
964 esac
965 done
966}
eaa4e6ee
JN
967
968__git_porcelain_commands=
969__git_compute_porcelain_commands ()
970{
971 __git_compute_all_commands
972 : ${__git_porcelain_commands:=$(__git_list_porcelain_commands)}
973}
f2bb9f88 974
c3898111
SG
975__git_pretty_aliases ()
976{
977 local i IFS=$'\n'
978 for i in $(git --git-dir="$(__gitdir)" config --get-regexp "pretty\..*" 2>/dev/null); do
979 case "$i" in
980 pretty.*)
981 i="${i#pretty.}"
982 echo "${i/ */}"
983 ;;
984 esac
985 done
986}
987
367dce2a
DS
988__git_aliases ()
989{
56fc25f2 990 local i IFS=$'\n'
518ef8f0 991 for i in $(git --git-dir="$(__gitdir)" config --get-regexp "alias\..*" 2>/dev/null); do
e0d78059
SB
992 case "$i" in
993 alias.*)
994 i="${i#alias.}"
995 echo "${i/ */}"
996 ;;
997 esac
56fc25f2 998 done
367dce2a
DS
999}
1000
a42577d4 1001# __git_aliased_command requires 1 argument
367dce2a
DS
1002__git_aliased_command ()
1003{
873537fa 1004 local word cmdline=$(git --git-dir="$(__gitdir)" \
e0d10e1c 1005 config --get "alias.$1")
367dce2a 1006 for word in $cmdline; do
c63437cb 1007 case "$word" in
66729509
SG
1008 \!gitk|gitk)
1009 echo "gitk"
367dce2a 1010 return
66729509 1011 ;;
c63437cb
SG
1012 \!*) : shell command alias ;;
1013 -*) : option ;;
1014 *=*) : setting env ;;
1015 git) : git itself ;;
1016 *)
1017 echo "$word"
367dce2a 1018 return
c63437cb 1019 esac
367dce2a
DS
1020 done
1021}
1022
918c03c2
SG
1023# __git_find_on_cmdline requires 1 argument
1024__git_find_on_cmdline ()
3ff1320d 1025{
da4902a7 1026 local word subcommand c=1
da48616f
PD
1027 while [ $c -lt $cword ]; do
1028 word="${words[c]}"
3ff1320d
SG
1029 for subcommand in $1; do
1030 if [ "$subcommand" = "$word" ]; then
1031 echo "$subcommand"
1032 return
1033 fi
1034 done
1035 c=$((++c))
1036 done
1037}
1038
d773c631
SG
1039__git_has_doubledash ()
1040{
da4902a7 1041 local c=1
da48616f
PD
1042 while [ $c -lt $cword ]; do
1043 if [ "--" = "${words[c]}" ]; then
d773c631
SG
1044 return 0
1045 fi
1046 c=$((++c))
1047 done
1048 return 1
1049}
1050
7950659d 1051__git_whitespacelist="nowarn warn error error-all fix"
88329195
SP
1052
1053_git_am ()
1054{
da4902a7 1055 local dir="$(__gitdir)"
51ef1daa 1056 if [ -d "$dir"/rebase-apply ]; then
85f6b439 1057 __gitcomp "--skip --continue --resolved --abort"
88329195
SP
1058 return
1059 fi
1060 case "$cur" in
1061 --whitespace=*)
b3391775 1062 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
88329195
SP
1063 return
1064 ;;
1065 --*)
b3391775 1066 __gitcomp "
43acdf24 1067 --3way --committer-date-is-author-date --ignore-date
86c91f91 1068 --ignore-whitespace --ignore-space-change
43acdf24 1069 --interactive --keep --no-utf8 --signoff --utf8
af4e9e8c 1070 --whitespace= --scissors
b3391775 1071 "
88329195
SP
1072 return
1073 esac
1074 COMPREPLY=()
1075}
1076
1077_git_apply ()
1078{
88329195
SP
1079 case "$cur" in
1080 --whitespace=*)
b3391775 1081 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
88329195
SP
1082 return
1083 ;;
1084 --*)
b3391775 1085 __gitcomp "
88329195
SP
1086 --stat --numstat --summary --check --index
1087 --cached --index-info --reverse --reject --unidiff-zero
1088 --apply --no-add --exclude=
86c91f91 1089 --ignore-whitespace --ignore-space-change
88329195 1090 --whitespace= --inaccurate-eof --verbose
b3391775 1091 "
88329195
SP
1092 return
1093 esac
1094 COMPREPLY=()
1095}
1096
8435b548
SP
1097_git_add ()
1098{
d773c631
SG
1099 __git_has_doubledash && return
1100
8435b548
SP
1101 case "$cur" in
1102 --*)
1d284cba
SG
1103 __gitcomp "
1104 --interactive --refresh --patch --update --dry-run
c9a114b5 1105 --ignore-errors --intent-to-add
1d284cba 1106 "
8435b548
SP
1107 return
1108 esac
1109 COMPREPLY=()
1110}
1111
b3191ce2
LM
1112_git_archive ()
1113{
b3191ce2
LM
1114 case "$cur" in
1115 --format=*)
1116 __gitcomp "$(git archive --list)" "" "${cur##--format=}"
1117 return
1118 ;;
1119 --remote=*)
a31e6262 1120 __gitcomp_nl "$(__git_remotes)" "" "${cur##--remote=}"
b3191ce2
LM
1121 return
1122 ;;
1123 --*)
1124 __gitcomp "
1125 --format= --list --verbose
1126 --prefix= --remote= --exec=
1127 "
1128 return
1129 ;;
1130 esac
1131 __git_complete_file
1132}
1133
b2e69f62
SP
1134_git_bisect ()
1135{
d773c631
SG
1136 __git_has_doubledash && return
1137
bf11d461 1138 local subcommands="start bad good skip reset visualize replay log run"
918c03c2 1139 local subcommand="$(__git_find_on_cmdline "$subcommands")"
3ff1320d 1140 if [ -z "$subcommand" ]; then
128191f5
SG
1141 if [ -f "$(__gitdir)"/BISECT_START ]; then
1142 __gitcomp "$subcommands"
1143 else
1144 __gitcomp "replay start"
1145 fi
b2e69f62
SP
1146 return
1147 fi
1148
3ff1320d 1149 case "$subcommand" in
8205ff8e 1150 bad|good|reset|skip|start)
a31e6262 1151 __gitcomp_nl "$(__git_refs)"
b2e69f62
SP
1152 ;;
1153 *)
1154 COMPREPLY=()
1155 ;;
1156 esac
1157}
1158
690d8824
JH
1159_git_branch ()
1160{
da4902a7 1161 local i c=1 only_local_ref="n" has_r="n"
b9217642 1162
da48616f
PD
1163 while [ $c -lt $cword ]; do
1164 i="${words[c]}"
b9217642
SG
1165 case "$i" in
1166 -d|-m) only_local_ref="y" ;;
1167 -r) has_r="y" ;;
1168 esac
1169 c=$((++c))
1170 done
1171
da48616f 1172 case "$cur" in
3b376b0c
SG
1173 --*)
1174 __gitcomp "
1175 --color --no-color --verbose --abbrev= --no-abbrev
50e61025 1176 --track --no-track --contains --merged --no-merged
ff9c0825 1177 --set-upstream
3b376b0c
SG
1178 "
1179 ;;
b9217642
SG
1180 *)
1181 if [ $only_local_ref = "y" -a $has_r = "n" ]; then
a31e6262 1182 __gitcomp_nl "$(__git_heads)"
b9217642 1183 else
a31e6262 1184 __gitcomp_nl "$(__git_refs)"
b9217642
SG
1185 fi
1186 ;;
3b376b0c 1187 esac
690d8824
JH
1188}
1189
374a58c9
ML
1190_git_bundle ()
1191{
da48616f
PD
1192 local cmd="${words[2]}"
1193 case "$cword" in
8d8163f3 1194 2)
374a58c9
ML
1195 __gitcomp "create list-heads verify unbundle"
1196 ;;
8d8163f3 1197 3)
374a58c9
ML
1198 # looking for a file
1199 ;;
1200 *)
1201 case "$cmd" in
1202 create)
1203 __git_complete_revlist
1204 ;;
1205 esac
1206 ;;
1207 esac
1208}
1209
690d8824
JH
1210_git_checkout ()
1211{
c84bb14c
SG
1212 __git_has_doubledash && return
1213
e648f8b6
SG
1214 case "$cur" in
1215 --conflict=*)
1216 __gitcomp "diff3 merge" "" "${cur##--conflict=}"
1217 ;;
1218 --*)
1219 __gitcomp "
1220 --quiet --ours --theirs --track --no-track --merge
86e8e7a5 1221 --conflict= --orphan --patch
e648f8b6
SG
1222 "
1223 ;;
1224 *)
34a6bbb5
KB
1225 # check if --track, --no-track, or --no-guess was specified
1226 # if so, disable DWIM mode
1227 local flags="--track --no-track --no-guess" track=1
1228 if [ -n "$(__git_find_on_cmdline "$flags")" ]; then
1229 track=''
1230 fi
a31e6262 1231 __gitcomp_nl "$(__git_refs '' $track)"
e648f8b6
SG
1232 ;;
1233 esac
690d8824
JH
1234}
1235
d8a9fea5
SP
1236_git_cherry ()
1237{
1238 __gitcomp "$(__git_refs)"
1239}
1240
1273231e
SP
1241_git_cherry_pick ()
1242{
1273231e
SP
1243 case "$cur" in
1244 --*)
b3391775 1245 __gitcomp "--edit --no-commit"
1273231e
SP
1246 ;;
1247 *)
a31e6262 1248 __gitcomp_nl "$(__git_refs)"
1273231e
SP
1249 ;;
1250 esac
1251}
1252
4181c7e8
LM
1253_git_clean ()
1254{
1255 __git_has_doubledash && return
1256
4181c7e8
LM
1257 case "$cur" in
1258 --*)
1259 __gitcomp "--dry-run --quiet"
1260 return
1261 ;;
1262 esac
1263 COMPREPLY=()
1264}
1265
3eb11012
LM
1266_git_clone ()
1267{
3eb11012
LM
1268 case "$cur" in
1269 --*)
1270 __gitcomp "
1271 --local
1272 --no-hardlinks
1273 --shared
1274 --reference
1275 --quiet
1276 --no-checkout
1277 --bare
1278 --mirror
1279 --origin
1280 --upload-pack
1281 --template=
1282 --depth
1283 "
1284 return
1285 ;;
1286 esac
1287 COMPREPLY=()
1288}
1289
4548e855
SP
1290_git_commit ()
1291{
d773c631
SG
1292 __git_has_doubledash && return
1293
4548e855 1294 case "$cur" in
9a424b27
SG
1295 --cleanup=*)
1296 __gitcomp "default strip verbatim whitespace
1297 " "" "${cur##--cleanup=}"
1298 return
1299 ;;
77653abd
TM
1300 --reuse-message=*|--reedit-message=*|\
1301 --fixup=*|--squash=*)
a31e6262 1302 __gitcomp_nl "$(__git_refs)" "" "${cur#*=}"
9a424b27
SG
1303 return
1304 ;;
1305 --untracked-files=*)
1306 __gitcomp "all no normal" "" "${cur##--untracked-files=}"
1307 return
1308 ;;
4548e855 1309 --*)
b3391775 1310 __gitcomp "
4548e855 1311 --all --author= --signoff --verify --no-verify
aa5735be 1312 --edit --amend --include --only --interactive
9a424b27
SG
1313 --dry-run --reuse-message= --reedit-message=
1314 --reset-author --file= --message= --template=
1315 --cleanup= --untracked-files --untracked-files=
77653abd 1316 --verbose --quiet --fixup= --squash=
b3391775 1317 "
4548e855
SP
1318 return
1319 esac
1320 COMPREPLY=()
1321}
1322
217926c0
SP
1323_git_describe ()
1324{
cbb504c9
TR
1325 case "$cur" in
1326 --*)
1327 __gitcomp "
1328 --all --tags --contains --abbrev= --candidates=
1329 --exact-match --debug --long --match --always
1330 "
1331 return
1332 esac
a31e6262 1333 __gitcomp_nl "$(__git_refs)"
217926c0
SP
1334}
1335
20bf7292 1336__git_diff_common_options="--stat --numstat --shortstat --summary
b3a4f858
JS
1337 --patch-with-stat --name-only --name-status --color
1338 --no-color --color-words --no-renames --check
f135aacb 1339 --full-index --binary --abbrev --diff-filter=
47d5a8fa 1340 --find-copies-harder
b3a4f858
JS
1341 --text --ignore-space-at-eol --ignore-space-change
1342 --ignore-all-space --exit-code --quiet --ext-diff
aba201c6
PO
1343 --no-ext-diff
1344 --no-prefix --src-prefix= --dst-prefix=
6d0e674a 1345 --inter-hunk-context=
cc545709 1346 --patience
20bf7292 1347 --raw
8fd2cfa7
SB
1348 --dirstat --dirstat= --dirstat-by-file
1349 --dirstat-by-file= --cumulative
20bf7292
TR
1350"
1351
1352_git_diff ()
1353{
1354 __git_has_doubledash && return
1355
20bf7292
TR
1356 case "$cur" in
1357 --*)
ebd15bf0 1358 __gitcomp "--cached --staged --pickaxe-all --pickaxe-regex
861514d3 1359 --base --ours --theirs --no-index
20bf7292 1360 $__git_diff_common_options
aba201c6 1361 "
b3a4f858
JS
1362 return
1363 ;;
1364 esac
1d66ec58 1365 __git_complete_revlist_file
690d8824
JH
1366}
1367
e2dc2de9 1368__git_mergetools_common="diffuse ecmerge emerge kdiff3 meld opendiff
ffe6dc08 1369 tkdiff vimdiff gvimdiff xxdiff araxis p4merge bc3
e2dc2de9
DA
1370"
1371
1372_git_difftool ()
1373{
f7ad96cf
MH
1374 __git_has_doubledash && return
1375
e2dc2de9
DA
1376 case "$cur" in
1377 --tool=*)
1378 __gitcomp "$__git_mergetools_common kompare" "" "${cur##--tool=}"
1379 return
1380 ;;
1381 --*)
f7ad96cf
MH
1382 __gitcomp "--cached --staged --pickaxe-all --pickaxe-regex
1383 --base --ours --theirs
1384 --no-renames --diff-filter= --find-copies-harder
1385 --relative --ignore-submodules
1386 --tool="
e2dc2de9
DA
1387 return
1388 ;;
1389 esac
f7ad96cf 1390 __git_complete_file
e2dc2de9
DA
1391}
1392
0a4e1472
JS
1393__git_fetch_options="
1394 --quiet --verbose --append --upload-pack --force --keep --depth=
e25e2b42 1395 --tags --no-tags --all --prune --dry-run
0a4e1472
JS
1396"
1397
690d8824
JH
1398_git_fetch ()
1399{
0a4e1472
JS
1400 case "$cur" in
1401 --*)
1402 __gitcomp "$__git_fetch_options"
1403 return
1404 ;;
1405 esac
52d5c3b5 1406 __git_complete_remote_or_refspec
690d8824
JH
1407}
1408
f53352fb
SP
1409_git_format_patch ()
1410{
f53352fb 1411 case "$cur" in
e1d37937
SB
1412 --thread=*)
1413 __gitcomp "
1414 deep shallow
1415 " "" "${cur##--thread=}"
1416 return
1417 ;;
f53352fb 1418 --*)
b3391775 1419 __gitcomp "
e1d37937 1420 --stdout --attach --no-attach --thread --thread=
f53352fb
SP
1421 --output-directory
1422 --numbered --start-number
47e98eec 1423 --numbered-files
f53352fb 1424 --keep-subject
d8e1e5df 1425 --signoff --signature --no-signature
3f7df3a7 1426 --in-reply-to= --cc=
f53352fb 1427 --full-index --binary
ec804891 1428 --not --all
be5f5bf0 1429 --cover-letter
aba201c6 1430 --no-prefix --src-prefix= --dst-prefix=
81085134
SG
1431 --inline --suffix= --ignore-if-in-upstream
1432 --subject-prefix=
b3391775 1433 "
f53352fb
SP
1434 return
1435 ;;
1436 esac
1437 __git_complete_revlist
1438}
1439
4bca8636
AJ
1440_git_fsck ()
1441{
4bca8636
AJ
1442 case "$cur" in
1443 --*)
1444 __gitcomp "
1445 --tags --root --unreachable --cache --no-reflogs --full
1446 --strict --verbose --lost-found
1447 "
1448 return
1449 ;;
1450 esac
1451 COMPREPLY=()
1452}
1453
b26c8748
SP
1454_git_gc ()
1455{
b26c8748
SP
1456 case "$cur" in
1457 --*)
47e98eec 1458 __gitcomp "--prune --aggressive"
b26c8748
SP
1459 return
1460 ;;
1461 esac
1462 COMPREPLY=()
1463}
1464
66729509
SG
1465_git_gitk ()
1466{
1467 _gitk
1468}
1469
c72e0db1
LM
1470_git_grep ()
1471{
1472 __git_has_doubledash && return
1473
c72e0db1
LM
1474 case "$cur" in
1475 --*)
1476 __gitcomp "
1477 --cached
1478 --text --ignore-case --word-regexp --invert-match
5a69eaf5 1479 --full-name --line-number
c72e0db1 1480 --extended-regexp --basic-regexp --fixed-strings
63e7e9d8 1481 --perl-regexp
c72e0db1
LM
1482 --files-with-matches --name-only
1483 --files-without-match
a91f453f 1484 --max-depth
c72e0db1
LM
1485 --count
1486 --and --or --not --all-match
1487 "
1488 return
1489 ;;
1490 esac
17225c49 1491
a31e6262 1492 __gitcomp_nl "$(__git_refs)"
c72e0db1
LM
1493}
1494
1eb7e2f8
LM
1495_git_help ()
1496{
1eb7e2f8
LM
1497 case "$cur" in
1498 --*)
1499 __gitcomp "--all --info --man --web"
1500 return
1501 ;;
1502 esac
eaa4e6ee 1503 __git_compute_all_commands
f85a6f0b 1504 __gitcomp "$__git_all_commands $(__git_aliases)
2946cccf
MG
1505 attributes cli core-tutorial cvs-migration
1506 diffcore gitk glossary hooks ignore modules
d49483f0 1507 namespaces repository-layout tutorial tutorial-2
99f0b599 1508 workflows
2946cccf 1509 "
1eb7e2f8
LM
1510}
1511
5dad868b
LM
1512_git_init ()
1513{
5dad868b
LM
1514 case "$cur" in
1515 --shared=*)
1516 __gitcomp "
1517 false true umask group all world everybody
1518 " "" "${cur##--shared=}"
1519 return
1520 ;;
1521 --*)
1522 __gitcomp "--quiet --bare --template= --shared --shared="
1523 return
1524 ;;
1525 esac
1526 COMPREPLY=()
1527}
1528
b1bc1494
LM
1529_git_ls_files ()
1530{
1531 __git_has_doubledash && return
1532
b1bc1494
LM
1533 case "$cur" in
1534 --*)
1535 __gitcomp "--cached --deleted --modified --others --ignored
1536 --stage --directory --no-empty-directory --unmerged
1537 --killed --exclude= --exclude-from=
1538 --exclude-per-directory= --exclude-standard
1539 --error-unmatch --with-tree= --full-name
1540 --abbrev --ignored --exclude-per-directory
1541 "
1542 return
1543 ;;
1544 esac
1545 COMPREPLY=()
1546}
1547
690d8824
JH
1548_git_ls_remote ()
1549{
a31e6262 1550 __gitcomp_nl "$(__git_remotes)"
690d8824
JH
1551}
1552
1553_git_ls_tree ()
1554{
1555 __git_complete_file
1556}
1557
a393777e
TR
1558# Options that go well for log, shortlog and gitk
1559__git_log_common_options="
1560 --not --all
1561 --branches --tags --remotes
4fe1a619 1562 --first-parent --merges --no-merges
a393777e
TR
1563 --max-count=
1564 --max-age= --since= --after=
1565 --min-age= --until= --before=
6a6ebded
MG
1566 --min-parents= --max-parents=
1567 --no-min-parents --no-max-parents
a393777e
TR
1568"
1569# Options that go well for log and gitk (not shortlog)
1570__git_log_gitk_options="
1571 --dense --sparse --full-history
1572 --simplify-merges --simplify-by-decoration
3925b575 1573 --left-right --notes --no-notes
a393777e
TR
1574"
1575# Options that go well for log and shortlog (not gitk)
1576__git_log_shortlog_options="
1577 --author= --committer= --grep=
1578 --all-match
1579"
1580
3d279863 1581__git_log_pretty_formats="oneline short medium full fuller email raw format:"
672c68cb 1582__git_log_date_formats="relative iso8601 rfc2822 short local default raw"
3d279863 1583
690d8824
JH
1584_git_log ()
1585{
d773c631
SG
1586 __git_has_doubledash && return
1587
bf3c20f6
TR
1588 local g="$(git rev-parse --git-dir 2>/dev/null)"
1589 local merge=""
ba7906f2 1590 if [ -f "$g/MERGE_HEAD" ]; then
bf3c20f6
TR
1591 merge="--merge"
1592 fi
6e31b866 1593 case "$cur" in
e67d71e5 1594 --pretty=*|--format=*)
c3898111 1595 __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
e67d71e5 1596 " "" "${cur#*=}"
72de29c2
TL
1597 return
1598 ;;
47e98eec 1599 --date=*)
672c68cb 1600 __gitcomp "$__git_log_date_formats" "" "${cur##--date=}"
47e98eec
SP
1601 return
1602 ;;
af4e9e8c
SB
1603 --decorate=*)
1604 __gitcomp "long short" "" "${cur##--decorate=}"
1605 return
1606 ;;
6e31b866 1607 --*)
b3391775 1608 __gitcomp "
a393777e
TR
1609 $__git_log_common_options
1610 $__git_log_shortlog_options
1611 $__git_log_gitk_options
8f87fae6 1612 --root --topo-order --date-order --reverse
5d0e6343 1613 --follow --full-diff
6e31b866 1614 --abbrev-commit --abbrev=
47e98eec 1615 --relative-date --date=
72de29c2 1616 --pretty= --format= --oneline
a393777e 1617 --cherry-pick
20827d99 1618 --graph
af4e9e8c 1619 --decorate --decorate=
20bf7292 1620 --walk-reflogs
a393777e 1621 --parents --children
bf3c20f6 1622 $merge
20bf7292 1623 $__git_diff_common_options
47d5a8fa 1624 --pickaxe-all --pickaxe-regex
b3391775 1625 "
6e31b866
SP
1626 return
1627 ;;
1628 esac
f53352fb 1629 __git_complete_revlist
690d8824
JH
1630}
1631
0a4e1472
JS
1632__git_merge_options="
1633 --no-commit --no-stat --log --no-log --squash --strategy
9858b87f 1634 --commit --stat --no-squash --ff --no-ff --ff-only
0a4e1472
JS
1635"
1636
4ad91321
SP
1637_git_merge ()
1638{
3c7b480a
JS
1639 __git_complete_strategy && return
1640
4ad91321
SP
1641 case "$cur" in
1642 --*)
0a4e1472 1643 __gitcomp "$__git_merge_options"
4ad91321
SP
1644 return
1645 esac
a31e6262 1646 __gitcomp_nl "$(__git_refs)"
4ad91321
SP
1647}
1648
b4c72162
LM
1649_git_mergetool ()
1650{
b4c72162
LM
1651 case "$cur" in
1652 --tool=*)
e2dc2de9 1653 __gitcomp "$__git_mergetools_common tortoisemerge" "" "${cur##--tool=}"
b4c72162
LM
1654 return
1655 ;;
1656 --*)
1657 __gitcomp "--tool="
1658 return
1659 ;;
1660 esac
1661 COMPREPLY=()
1662}
1663
690d8824
JH
1664_git_merge_base ()
1665{
a31e6262 1666 __gitcomp_nl "$(__git_refs)"
690d8824
JH
1667}
1668
1127c51c
LM
1669_git_mv ()
1670{
1127c51c
LM
1671 case "$cur" in
1672 --*)
1673 __gitcomp "--dry-run"
1674 return
1675 ;;
1676 esac
1677 COMPREPLY=()
1678}
1679
d33909bf
SP
1680_git_name_rev ()
1681{
b3391775 1682 __gitcomp "--tags --all --stdin"
d33909bf
SP
1683}
1684
00f09d0e
SG
1685_git_notes ()
1686{
2a5da755
SG
1687 local subcommands='add append copy edit list prune remove show'
1688 local subcommand="$(__git_find_on_cmdline "$subcommands")"
00f09d0e 1689
2a5da755
SG
1690 case "$subcommand,$cur" in
1691 ,--*)
1692 __gitcomp '--ref'
1693 ;;
1694 ,*)
02fedc0f 1695 case "${words[cword-1]}" in
2a5da755 1696 --ref)
a31e6262 1697 __gitcomp_nl "$(__git_refs)"
2a5da755
SG
1698 ;;
1699 *)
1700 __gitcomp "$subcommands --ref"
1701 ;;
1702 esac
1703 ;;
a8f89bfa 1704 add,--reuse-message=*|append,--reuse-message=*|\
2a5da755 1705 add,--reedit-message=*|append,--reedit-message=*)
a31e6262 1706 __gitcomp_nl "$(__git_refs)" "" "${cur#*=}"
2a5da755
SG
1707 ;;
1708 add,--*|append,--*)
1709 __gitcomp '--file= --message= --reedit-message=
1710 --reuse-message='
1711 ;;
1712 copy,--*)
1713 __gitcomp '--stdin'
1714 ;;
1715 prune,--*)
1716 __gitcomp '--dry-run --verbose'
1717 ;;
1718 prune,*)
00f09d0e
SG
1719 ;;
1720 *)
02fedc0f 1721 case "${words[cword-1]}" in
2a5da755
SG
1722 -m|-F)
1723 ;;
1724 *)
a31e6262 1725 __gitcomp_nl "$(__git_refs)"
2a5da755
SG
1726 ;;
1727 esac
00f09d0e
SG
1728 ;;
1729 esac
1730}
1731
690d8824
JH
1732_git_pull ()
1733{
0a4e1472
JS
1734 __git_complete_strategy && return
1735
0a4e1472
JS
1736 case "$cur" in
1737 --*)
1738 __gitcomp "
1739 --rebase --no-rebase
1740 $__git_merge_options
1741 $__git_fetch_options
1742 "
1743 return
1744 ;;
1745 esac
52d5c3b5 1746 __git_complete_remote_or_refspec
690d8824
JH
1747}
1748
1749_git_push ()
1750{
da48616f 1751 case "$prev" in
0a4e1472 1752 --repo)
a31e6262 1753 __gitcomp_nl "$(__git_remotes)"
0a4e1472
JS
1754 return
1755 esac
1756 case "$cur" in
1757 --repo=*)
a31e6262 1758 __gitcomp_nl "$(__git_remotes)" "" "${cur##--repo=}"
0a4e1472
JS
1759 return
1760 ;;
1761 --*)
1762 __gitcomp "
1763 --all --mirror --tags --dry-run --force --verbose
3623dc03 1764 --receive-pack= --repo= --set-upstream
0a4e1472
JS
1765 "
1766 return
1767 ;;
1768 esac
52d5c3b5 1769 __git_complete_remote_or_refspec
690d8824
JH
1770}
1771
61d926a3
SP
1772_git_rebase ()
1773{
da48616f 1774 local dir="$(__gitdir)"
51ef1daa 1775 if [ -d "$dir"/rebase-apply ] || [ -d "$dir"/rebase-merge ]; then
b3391775 1776 __gitcomp "--continue --skip --abort"
61d926a3
SP
1777 return
1778 fi
3c7b480a 1779 __git_complete_strategy && return
61d926a3 1780 case "$cur" in
93cf50a4
BG
1781 --whitespace=*)
1782 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
1783 return
1784 ;;
61d926a3 1785 --*)
93cf50a4
BG
1786 __gitcomp "
1787 --onto --merge --strategy --interactive
1788 --preserve-merges --stat --no-stat
1789 --committer-date-is-author-date --ignore-date
1790 --ignore-whitespace --whitespace=
6d0d465e 1791 --autosquash
93cf50a4
BG
1792 "
1793
61d926a3
SP
1794 return
1795 esac
a31e6262 1796 __gitcomp_nl "$(__git_refs)"
61d926a3
SP
1797}
1798
057f3279
TRC
1799_git_reflog ()
1800{
1801 local subcommands="show delete expire"
1802 local subcommand="$(__git_find_on_cmdline "$subcommands")"
1803
1804 if [ -z "$subcommand" ]; then
1805 __gitcomp "$subcommands"
1806 else
a31e6262 1807 __gitcomp_nl "$(__git_refs)"
057f3279
TRC
1808 fi
1809}
1810
ae616de6 1811__git_send_email_confirm_options="always never auto cc compose"
cb8a9bd5 1812__git_send_email_suppresscc_options="author self cc bodycc sob cccmd body all"
ae616de6 1813
25a1f374
TL
1814_git_send_email ()
1815{
25a1f374 1816 case "$cur" in
ae616de6
SB
1817 --confirm=*)
1818 __gitcomp "
1819 $__git_send_email_confirm_options
1820 " "" "${cur##--confirm=}"
1821 return
1822 ;;
1823 --suppress-cc=*)
1824 __gitcomp "
1825 $__git_send_email_suppresscc_options
1826 " "" "${cur##--suppress-cc=}"
1827
1828 return
1829 ;;
1830 --smtp-encryption=*)
1831 __gitcomp "ssl tls" "" "${cur##--smtp-encryption=}"
1832 return
1833 ;;
25a1f374 1834 --*)
77813151 1835 __gitcomp "--annotate --bcc --cc --cc-cmd --chain-reply-to
ae616de6
SB
1836 --compose --confirm= --dry-run --envelope-sender
1837 --from --identity
25a1f374
TL
1838 --in-reply-to --no-chain-reply-to --no-signed-off-by-cc
1839 --no-suppress-from --no-thread --quiet
1840 --signed-off-by-cc --smtp-pass --smtp-server
ae616de6
SB
1841 --smtp-server-port --smtp-encryption= --smtp-user
1842 --subject --suppress-cc= --suppress-from --thread --to
fd3a8dcb 1843 --validate --no-validate"
25a1f374
TL
1844 return
1845 ;;
1846 esac
1847 COMPREPLY=()
1848}
1849
424cce83
SG
1850_git_stage ()
1851{
1852 _git_add
1853}
1854
00652369
SB
1855__git_config_get_set_variables ()
1856{
da48616f 1857 local prevword word config_file= c=$cword
00652369 1858 while [ $c -gt 1 ]; do
da48616f 1859 word="${words[c]}"
00652369
SB
1860 case "$word" in
1861 --global|--system|--file=*)
1862 config_file="$word"
1863 break
1864 ;;
1865 -f|--file)
1866 config_file="$word $prevword"
1867 break
1868 ;;
1869 esac
1870 prevword=$word
1871 c=$((--c))
1872 done
1873
f581de1b
SB
1874 git --git-dir="$(__gitdir)" config $config_file --list 2>/dev/null |
1875 while read line
1876 do
1877 case "$line" in
1878 *.*=*)
1879 echo "${line/=*/}"
00652369
SB
1880 ;;
1881 esac
1882 done
1883}
1884
e0d10e1c 1885_git_config ()
5de40f59 1886{
da48616f 1887 case "$prev" in
5de40f59 1888 branch.*.remote)
a31e6262 1889 __gitcomp_nl "$(__git_remotes)"
5de40f59
SP
1890 return
1891 ;;
1892 branch.*.merge)
a31e6262 1893 __gitcomp_nl "$(__git_refs)"
5de40f59
SP
1894 return
1895 ;;
1896 remote.*.fetch)
da48616f 1897 local remote="${prev#remote.}"
5de40f59 1898 remote="${remote%.fetch}"
a31e6262 1899 __gitcomp_nl "$(__git_refs_remotes "$remote")"
5de40f59
SP
1900 return
1901 ;;
1902 remote.*.push)
da48616f 1903 local remote="${prev#remote.}"
5de40f59 1904 remote="${remote%.push}"
a31e6262 1905 __gitcomp_nl "$(git --git-dir="$(__gitdir)" \
5de40f59 1906 for-each-ref --format='%(refname):%(refname)' \
78d4d6a2
SP
1907 refs/heads)"
1908 return
1909 ;;
1910 pull.twohead|pull.octopus)
eaa4e6ee
JN
1911 __git_compute_merge_strategies
1912 __gitcomp "$__git_merge_strategies"
78d4d6a2
SP
1913 return
1914 ;;
6123d719
MH
1915 color.branch|color.diff|color.interactive|\
1916 color.showbranch|color.status|color.ui)
78d4d6a2
SP
1917 __gitcomp "always never auto"
1918 return
1919 ;;
901d615c
MK
1920 color.pager)
1921 __gitcomp "false true"
1922 return
1923 ;;
78d4d6a2
SP
1924 color.*.*)
1925 __gitcomp "
98171a07 1926 normal black red green yellow blue magenta cyan white
78d4d6a2
SP
1927 bold dim ul blink reverse
1928 "
5de40f59
SP
1929 return
1930 ;;
9b82d63b
SB
1931 help.format)
1932 __gitcomp "man info web html"
1933 return
1934 ;;
672c68cb
SB
1935 log.date)
1936 __gitcomp "$__git_log_date_formats"
1937 return
1938 ;;
ae616de6
SB
1939 sendemail.aliasesfiletype)
1940 __gitcomp "mutt mailrc pine elm gnus"
1941 return
1942 ;;
1943 sendemail.confirm)
1944 __gitcomp "$__git_send_email_confirm_options"
1945 return
1946 ;;
1947 sendemail.suppresscc)
1948 __gitcomp "$__git_send_email_suppresscc_options"
1949 return
1950 ;;
00652369 1951 --get|--get-all|--unset|--unset-all)
a31e6262 1952 __gitcomp_nl "$(__git_config_get_set_variables)"
00652369
SB
1953 return
1954 ;;
5de40f59
SP
1955 *.*)
1956 COMPREPLY=()
1957 return
1958 ;;
1959 esac
1960 case "$cur" in
1961 --*)
78d4d6a2 1962 __gitcomp "
47e98eec 1963 --global --system --file=
12977705 1964 --list --replace-all
5de40f59 1965 --get --get-all --get-regexp
1b71eb35 1966 --add --unset --unset-all
12977705 1967 --remove-section --rename-section
78d4d6a2 1968 "
5de40f59
SP
1969 return
1970 ;;
1971 branch.*.*)
9244d69b
SG
1972 local pfx="${cur%.*}." cur_="${cur##*.}"
1973 __gitcomp "remote merge mergeoptions rebase" "$pfx" "$cur_"
5de40f59
SP
1974 return
1975 ;;
1976 branch.*)
9244d69b 1977 local pfx="${cur%.*}." cur_="${cur#*.}"
a31e6262 1978 __gitcomp_nl "$(__git_heads)" "$pfx" "$cur_" "."
5de40f59
SP
1979 return
1980 ;;
0aa62fd0 1981 guitool.*.*)
9244d69b 1982 local pfx="${cur%.*}." cur_="${cur##*.}"
0aa62fd0
SB
1983 __gitcomp "
1984 argprompt cmd confirm needsfile noconsole norescan
1985 prompt revprompt revunmerged title
9244d69b 1986 " "$pfx" "$cur_"
0aa62fd0
SB
1987 return
1988 ;;
1989 difftool.*.*)
9244d69b
SG
1990 local pfx="${cur%.*}." cur_="${cur##*.}"
1991 __gitcomp "cmd path" "$pfx" "$cur_"
0aa62fd0
SB
1992 return
1993 ;;
1994 man.*.*)
9244d69b
SG
1995 local pfx="${cur%.*}." cur_="${cur##*.}"
1996 __gitcomp "cmd path" "$pfx" "$cur_"
0aa62fd0
SB
1997 return
1998 ;;
1999 mergetool.*.*)
9244d69b
SG
2000 local pfx="${cur%.*}." cur_="${cur##*.}"
2001 __gitcomp "cmd path trustExitCode" "$pfx" "$cur_"
0aa62fd0
SB
2002 return
2003 ;;
2004 pager.*)
9244d69b 2005 local pfx="${cur%.*}." cur_="${cur#*.}"
eaa4e6ee 2006 __git_compute_all_commands
a31e6262 2007 __gitcomp_nl "$__git_all_commands" "$pfx" "$cur_"
0aa62fd0
SB
2008 return
2009 ;;
5de40f59 2010 remote.*.*)
9244d69b 2011 local pfx="${cur%.*}." cur_="${cur##*.}"
12977705 2012 __gitcomp "
98171a07 2013 url proxy fetch push mirror skipDefaultUpdate
6fac1b83 2014 receivepack uploadpack tagopt pushurl
9244d69b 2015 " "$pfx" "$cur_"
5de40f59
SP
2016 return
2017 ;;
2018 remote.*)
9244d69b 2019 local pfx="${cur%.*}." cur_="${cur#*.}"
a31e6262 2020 __gitcomp_nl "$(__git_remotes)" "$pfx" "$cur_" "."
5de40f59
SP
2021 return
2022 ;;
0aa62fd0 2023 url.*.*)
9244d69b
SG
2024 local pfx="${cur%.*}." cur_="${cur##*.}"
2025 __gitcomp "insteadOf pushInsteadOf" "$pfx" "$cur_"
0aa62fd0
SB
2026 return
2027 ;;
5de40f59 2028 esac
78d4d6a2 2029 __gitcomp "
6068ac88
MZ
2030 add.ignoreErrors
2031 advice.commitBeforeMerge
2032 advice.detachedHead
2033 advice.implicitIdentity
2034 advice.pushNonFastForward
2035 advice.resolveConflict
2036 advice.statusHints
226b343c 2037 alias.
6068ac88 2038 am.keepcr
86c91f91 2039 apply.ignorewhitespace
5de40f59 2040 apply.whitespace
98171a07
LM
2041 branch.autosetupmerge
2042 branch.autosetuprebase
6068ac88 2043 browser.
2122591b 2044 clean.requireForce
78d4d6a2
SP
2045 color.branch
2046 color.branch.current
2047 color.branch.local
78d4d6a2 2048 color.branch.plain
025a1929 2049 color.branch.remote
6068ac88
MZ
2050 color.decorate.HEAD
2051 color.decorate.branch
2052 color.decorate.remoteBranch
2053 color.decorate.stash
2054 color.decorate.tag
a159ca0c 2055 color.diff
025a1929 2056 color.diff.commit
78d4d6a2 2057 color.diff.frag
6068ac88 2058 color.diff.func
025a1929 2059 color.diff.meta
78d4d6a2 2060 color.diff.new
025a1929
LM
2061 color.diff.old
2062 color.diff.plain
78d4d6a2 2063 color.diff.whitespace
226b343c 2064 color.grep
6068ac88
MZ
2065 color.grep.context
2066 color.grep.filename
2067 color.grep.function
2068 color.grep.linenumber
226b343c 2069 color.grep.match
6068ac88
MZ
2070 color.grep.selected
2071 color.grep.separator
98171a07 2072 color.interactive
6068ac88 2073 color.interactive.error
98171a07
LM
2074 color.interactive.header
2075 color.interactive.help
2076 color.interactive.prompt
a159ca0c 2077 color.pager
6123d719 2078 color.showbranch
a159ca0c 2079 color.status
78d4d6a2
SP
2080 color.status.added
2081 color.status.changed
025a1929 2082 color.status.header
98171a07 2083 color.status.nobranch
78d4d6a2 2084 color.status.untracked
98171a07
LM
2085 color.status.updated
2086 color.ui
6068ac88 2087 commit.status
98171a07 2088 commit.template
cdb791f6 2089 core.abbrev
6068ac88
MZ
2090 core.askpass
2091 core.attributesfile
98171a07
LM
2092 core.autocrlf
2093 core.bare
6068ac88 2094 core.bigFileThreshold
025a1929 2095 core.compression
226b343c 2096 core.createObject
98171a07
LM
2097 core.deltaBaseCacheLimit
2098 core.editor
6068ac88 2099 core.eol
98171a07 2100 core.excludesfile
025a1929 2101 core.fileMode
98171a07 2102 core.fsyncobjectfiles
025a1929 2103 core.gitProxy
98171a07 2104 core.ignoreCygwinFSTricks
025a1929 2105 core.ignoreStat
6068ac88 2106 core.ignorecase
025a1929
LM
2107 core.logAllRefUpdates
2108 core.loosecompression
6068ac88 2109 core.notesRef
025a1929
LM
2110 core.packedGitLimit
2111 core.packedGitWindowSize
98171a07 2112 core.pager
025a1929 2113 core.preferSymlinkRefs
98171a07
LM
2114 core.preloadindex
2115 core.quotepath
025a1929 2116 core.repositoryFormatVersion
98171a07 2117 core.safecrlf
025a1929 2118 core.sharedRepository
6068ac88 2119 core.sparseCheckout
98171a07
LM
2120 core.symlinks
2121 core.trustctime
025a1929 2122 core.warnAmbiguousRefs
98171a07
LM
2123 core.whitespace
2124 core.worktree
2125 diff.autorefreshindex
2126 diff.external
6068ac88 2127 diff.ignoreSubmodules
98171a07 2128 diff.mnemonicprefix
6068ac88 2129 diff.noprefix
78d4d6a2
SP
2130 diff.renameLimit
2131 diff.renames
226b343c
SB
2132 diff.suppressBlankEmpty
2133 diff.tool
2134 diff.wordRegex
0aa62fd0 2135 difftool.
226b343c 2136 difftool.prompt
6068ac88 2137 fetch.recurseSubmodules
78d4d6a2 2138 fetch.unpackLimit
226b343c
SB
2139 format.attach
2140 format.cc
78d4d6a2 2141 format.headers
98171a07
LM
2142 format.numbered
2143 format.pretty
d8e1e5df 2144 format.signature
226b343c
SB
2145 format.signoff
2146 format.subjectprefix
98171a07 2147 format.suffix
226b343c 2148 format.thread
6068ac88
MZ
2149 format.to
2150 gc.
98171a07
LM
2151 gc.aggressiveWindow
2152 gc.auto
2153 gc.autopacklimit
12977705 2154 gc.packrefs
98171a07 2155 gc.pruneexpire
78d4d6a2
SP
2156 gc.reflogexpire
2157 gc.reflogexpireunreachable
2158 gc.rerereresolved
2159 gc.rerereunresolved
025a1929 2160 gitcvs.allbinary
226b343c 2161 gitcvs.commitmsgannotation
98171a07 2162 gitcvs.dbTableNamePrefix
025a1929
LM
2163 gitcvs.dbdriver
2164 gitcvs.dbname
2165 gitcvs.dbpass
025a1929
LM
2166 gitcvs.dbuser
2167 gitcvs.enabled
2168 gitcvs.logfile
98171a07 2169 gitcvs.usecrlfattr
0aa62fd0 2170 guitool.
98171a07
LM
2171 gui.blamehistoryctx
2172 gui.commitmsgwidth
2173 gui.copyblamethreshold
2174 gui.diffcontext
2175 gui.encoding
2176 gui.fastcopyblame
2177 gui.matchtrackingbranch
2178 gui.newbranchtemplate
2179 gui.pruneduringfetch
2180 gui.spellingdictionary
2181 gui.trustmtime
2182 help.autocorrect
2183 help.browser
2184 help.format
78d4d6a2
SP
2185 http.lowSpeedLimit
2186 http.lowSpeedTime
025a1929 2187 http.maxRequests
6068ac88 2188 http.minSessions
5de40f59 2189 http.noEPSV
6068ac88 2190 http.postBuffer
98171a07 2191 http.proxy
025a1929
LM
2192 http.sslCAInfo
2193 http.sslCAPath
2194 http.sslCert
6068ac88 2195 http.sslCertPasswordProtected
025a1929
LM
2196 http.sslKey
2197 http.sslVerify
6068ac88 2198 http.useragent
78d4d6a2
SP
2199 i18n.commitEncoding
2200 i18n.logOutputEncoding
6068ac88 2201 imap.authMethod
226b343c
SB
2202 imap.folder
2203 imap.host
2204 imap.pass
2205 imap.port
2206 imap.preformattedHTML
2207 imap.sslverify
2208 imap.tunnel
2209 imap.user
6068ac88 2210 init.templatedir
98171a07
LM
2211 instaweb.browser
2212 instaweb.httpd
2213 instaweb.local
2214 instaweb.modulepath
2215 instaweb.port
226b343c 2216 interactive.singlekey
98171a07 2217 log.date
6068ac88 2218 log.decorate
78d4d6a2 2219 log.showroot
226b343c 2220 mailmap.file
0aa62fd0 2221 man.
98171a07 2222 man.viewer
6068ac88 2223 merge.
98171a07
LM
2224 merge.conflictstyle
2225 merge.log
2226 merge.renameLimit
6068ac88 2227 merge.renormalize
98171a07 2228 merge.stat
025a1929 2229 merge.tool
78d4d6a2 2230 merge.verbosity
0aa62fd0 2231 mergetool.
98171a07 2232 mergetool.keepBackup
6068ac88 2233 mergetool.keepTemporaries
226b343c 2234 mergetool.prompt
6068ac88
MZ
2235 notes.displayRef
2236 notes.rewrite.
2237 notes.rewrite.amend
2238 notes.rewrite.rebase
2239 notes.rewriteMode
2240 notes.rewriteRef
47e98eec 2241 pack.compression
47e98eec 2242 pack.deltaCacheLimit
025a1929
LM
2243 pack.deltaCacheSize
2244 pack.depth
98171a07
LM
2245 pack.indexVersion
2246 pack.packSizeLimit
2247 pack.threads
025a1929
LM
2248 pack.window
2249 pack.windowMemory
0aa62fd0 2250 pager.
6068ac88 2251 pretty.
78d4d6a2
SP
2252 pull.octopus
2253 pull.twohead
226b343c 2254 push.default
6068ac88 2255 rebase.autosquash
226b343c 2256 rebase.stat
6068ac88 2257 receive.autogc
98171a07 2258 receive.denyCurrentBranch
6068ac88 2259 receive.denyDeleteCurrent
98171a07 2260 receive.denyDeletes
025a1929 2261 receive.denyNonFastForwards
98171a07 2262 receive.fsckObjects
025a1929 2263 receive.unpackLimit
6068ac88
MZ
2264 receive.updateserverinfo
2265 remotes.
98171a07
LM
2266 repack.usedeltabaseoffset
2267 rerere.autoupdate
2268 rerere.enabled
6068ac88 2269 sendemail.
226b343c 2270 sendemail.aliasesfile
6068ac88 2271 sendemail.aliasfiletype
226b343c
SB
2272 sendemail.bcc
2273 sendemail.cc
2274 sendemail.cccmd
2275 sendemail.chainreplyto
2276 sendemail.confirm
2277 sendemail.envelopesender
6068ac88
MZ
2278 sendemail.from
2279 sendemail.identity
226b343c
SB
2280 sendemail.multiedit
2281 sendemail.signedoffbycc
6068ac88 2282 sendemail.smtpdomain
226b343c
SB
2283 sendemail.smtpencryption
2284 sendemail.smtppass
2285 sendemail.smtpserver
6068ac88 2286 sendemail.smtpserveroption
226b343c
SB
2287 sendemail.smtpserverport
2288 sendemail.smtpuser
2289 sendemail.suppresscc
2290 sendemail.suppressfrom
2291 sendemail.thread
2292 sendemail.to
2293 sendemail.validate
78d4d6a2 2294 showbranch.default
98171a07
LM
2295 status.relativePaths
2296 status.showUntrackedFiles
6068ac88
MZ
2297 status.submodulesummary
2298 submodule.
78d4d6a2
SP
2299 tar.umask
2300 transfer.unpackLimit
0aa62fd0 2301 url.
78d4d6a2 2302 user.email
025a1929 2303 user.name
78d4d6a2 2304 user.signingkey
98171a07 2305 web.browser
5de40f59 2306 branch. remote.
78d4d6a2 2307 "
5de40f59
SP
2308}
2309
88293c67
SP
2310_git_remote ()
2311{
bc14fac8 2312 local subcommands="add rename rm show prune update set-head"
918c03c2 2313 local subcommand="$(__git_find_on_cmdline "$subcommands")"
3ff1320d 2314 if [ -z "$subcommand" ]; then
3903c618 2315 __gitcomp "$subcommands"
88293c67
SP
2316 return
2317 fi
2318
3ff1320d 2319 case "$subcommand" in
f135e72d 2320 rename|rm|show|prune)
a31e6262 2321 __gitcomp_nl "$(__git_remotes)"
88293c67 2322 ;;
fb72759b
SP
2323 update)
2324 local i c='' IFS=$'\n'
518ef8f0
TZ
2325 for i in $(git --git-dir="$(__gitdir)" config --get-regexp "remotes\..*" 2>/dev/null); do
2326 i="${i#remotes.}"
2327 c="$c ${i/ */}"
fb72759b
SP
2328 done
2329 __gitcomp "$c"
2330 ;;
88293c67
SP
2331 *)
2332 COMPREPLY=()
2333 ;;
2334 esac
2335}
2336
e1c1a067
BG
2337_git_replace ()
2338{
a31e6262 2339 __gitcomp_nl "$(__git_refs)"
e1c1a067
BG
2340}
2341
67e78c3b
SP
2342_git_reset ()
2343{
d773c631
SG
2344 __git_has_doubledash && return
2345
b3391775
SP
2346 case "$cur" in
2347 --*)
9f040e95 2348 __gitcomp "--merge --mixed --hard --soft --patch"
b3391775
SP
2349 return
2350 ;;
2351 esac
a31e6262 2352 __gitcomp_nl "$(__git_refs)"
67e78c3b
SP
2353}
2354
a6c2be24
LM
2355_git_revert ()
2356{
a6c2be24
LM
2357 case "$cur" in
2358 --*)
2359 __gitcomp "--edit --mainline --no-edit --no-commit --signoff"
2360 return
2361 ;;
2362 esac
a31e6262 2363 __gitcomp_nl "$(__git_refs)"
a6c2be24
LM
2364}
2365
08c701d4
LM
2366_git_rm ()
2367{
2368 __git_has_doubledash && return
2369
08c701d4
LM
2370 case "$cur" in
2371 --*)
2372 __gitcomp "--cached --dry-run --ignore-unmatch --quiet"
2373 return
2374 ;;
2375 esac
2376 COMPREPLY=()
2377}
2378
1fd6bec9
SP
2379_git_shortlog ()
2380{
d773c631
SG
2381 __git_has_doubledash && return
2382
1fd6bec9
SP
2383 case "$cur" in
2384 --*)
2385 __gitcomp "
a393777e
TR
2386 $__git_log_common_options
2387 $__git_log_shortlog_options
1fd6bec9
SP
2388 --numbered --summary
2389 "
2390 return
2391 ;;
2392 esac
2393 __git_complete_revlist
2394}
2395
90131924
SP
2396_git_show ()
2397{
41d8cf7d
MH
2398 __git_has_doubledash && return
2399
90131924 2400 case "$cur" in
e67d71e5 2401 --pretty=*|--format=*)
c3898111 2402 __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
e67d71e5 2403 " "" "${cur#*=}"
72de29c2
TL
2404 return
2405 ;;
90131924 2406 --*)
076c3237 2407 __gitcomp "--pretty= --format= --abbrev-commit --oneline
20bf7292
TR
2408 $__git_diff_common_options
2409 "
90131924
SP
2410 return
2411 ;;
2412 esac
2413 __git_complete_file
2414}
2415
2ca880fe
TR
2416_git_show_branch ()
2417{
2ca880fe
TR
2418 case "$cur" in
2419 --*)
2420 __gitcomp "
2421 --all --remotes --topo-order --current --more=
2422 --list --independent --merge-base --no-name
6123d719 2423 --color --no-color
076c3237 2424 --sha1-name --sparse --topics --reflog
2ca880fe
TR
2425 "
2426 return
2427 ;;
2428 esac
2429 __git_complete_revlist
2430}
2431
7fd53fce
JH
2432_git_stash ()
2433{
59d5eeee 2434 local save_opts='--keep-index --no-keep-index --quiet --patch'
95d43780 2435 local subcommands='save list show apply clear drop pop create branch'
918c03c2 2436 local subcommand="$(__git_find_on_cmdline "$subcommands")"
7bedebca 2437 if [ -z "$subcommand" ]; then
59d5eeee
SG
2438 case "$cur" in
2439 --*)
2440 __gitcomp "$save_opts"
2441 ;;
2442 *)
2443 if [ -z "$(__git_find_on_cmdline "$save_opts")" ]; then
2444 __gitcomp "$subcommands"
2445 else
2446 COMPREPLY=()
2447 fi
2448 ;;
2449 esac
7bedebca 2450 else
7bedebca
SG
2451 case "$subcommand,$cur" in
2452 save,--*)
59d5eeee 2453 __gitcomp "$save_opts"
7bedebca 2454 ;;
8513c54b 2455 apply,--*|pop,--*)
59d5eeee 2456 __gitcomp "--index --quiet"
95d43780 2457 ;;
8513c54b 2458 show,--*|drop,--*|branch,--*)
95d43780
LM
2459 COMPREPLY=()
2460 ;;
2461 show,*|apply,*|drop,*|pop,*|branch,*)
a31e6262 2462 __gitcomp_nl "$(git --git-dir="$(__gitdir)" stash list \
95d43780
LM
2463 | sed -n -e 's/:.*//p')"
2464 ;;
7bedebca
SG
2465 *)
2466 COMPREPLY=()
2467 ;;
2468 esac
3ff1320d 2469 fi
7fd53fce
JH
2470}
2471
be86f7a0
SP
2472_git_submodule ()
2473{
d773c631
SG
2474 __git_has_doubledash && return
2475
1b0f7978 2476 local subcommands="add status init update summary foreach sync"
918c03c2 2477 if [ -z "$(__git_find_on_cmdline "$subcommands")" ]; then
be86f7a0
SP
2478 case "$cur" in
2479 --*)
2480 __gitcomp "--quiet --cached"
2481 ;;
2482 *)
3ff1320d 2483 __gitcomp "$subcommands"
be86f7a0
SP
2484 ;;
2485 esac
2486 return
2487 fi
2488}
2489
47f6ee28
SG
2490_git_svn ()
2491{
2492 local subcommands="
2493 init fetch clone rebase dcommit log find-rev
2494 set-tree commit-diff info create-ignore propget
4a5856cb 2495 proplist show-ignore show-externals branch tag blame
c18d5d82 2496 migrate mkdirs reset gc
47f6ee28 2497 "
918c03c2 2498 local subcommand="$(__git_find_on_cmdline "$subcommands")"
47f6ee28
SG
2499 if [ -z "$subcommand" ]; then
2500 __gitcomp "$subcommands"
2501 else
2502 local remote_opts="--username= --config-dir= --no-auth-cache"
2503 local fc_opts="
2504 --follow-parent --authors-file= --repack=
2505 --no-metadata --use-svm-props --use-svnsync-props
2506 --log-window-size= --no-checkout --quiet
4a5856cb
SG
2507 --repack-flags --use-log-author --localtime
2508 --ignore-paths= $remote_opts
47f6ee28
SG
2509 "
2510 local init_opts="
2511 --template= --shared= --trunk= --tags=
2512 --branches= --stdlayout --minimize-url
2513 --no-metadata --use-svm-props --use-svnsync-props
4a5856cb
SG
2514 --rewrite-root= --prefix= --use-log-author
2515 --add-author-from $remote_opts
47f6ee28
SG
2516 "
2517 local cmt_opts="
2518 --edit --rmdir --find-copies-harder --copy-similarity=
2519 "
2520
47f6ee28
SG
2521 case "$subcommand,$cur" in
2522 fetch,--*)
2523 __gitcomp "--revision= --fetch-all $fc_opts"
2524 ;;
2525 clone,--*)
2526 __gitcomp "--revision= $fc_opts $init_opts"
2527 ;;
2528 init,--*)
2529 __gitcomp "$init_opts"
2530 ;;
2531 dcommit,--*)
2532 __gitcomp "
2533 --merge --strategy= --verbose --dry-run
4a5856cb
SG
2534 --fetch-all --no-rebase --commit-url
2535 --revision $cmt_opts $fc_opts
47f6ee28
SG
2536 "
2537 ;;
2538 set-tree,--*)
2539 __gitcomp "--stdin $cmt_opts $fc_opts"
2540 ;;
2541 create-ignore,--*|propget,--*|proplist,--*|show-ignore,--*|\
c18d5d82 2542 show-externals,--*|mkdirs,--*)
47f6ee28
SG
2543 __gitcomp "--revision="
2544 ;;
2545 log,--*)
2546 __gitcomp "
2547 --limit= --revision= --verbose --incremental
2548 --oneline --show-commit --non-recursive
4a5856cb 2549 --authors-file= --color
47f6ee28
SG
2550 "
2551 ;;
2552 rebase,--*)
2553 __gitcomp "
2554 --merge --verbose --strategy= --local
4a5856cb 2555 --fetch-all --dry-run $fc_opts
47f6ee28
SG
2556 "
2557 ;;
2558 commit-diff,--*)
2559 __gitcomp "--message= --file= --revision= $cmt_opts"
2560 ;;
2561 info,--*)
2562 __gitcomp "--url"
2563 ;;
4a5856cb
SG
2564 branch,--*)
2565 __gitcomp "--dry-run --message --tag"
2566 ;;
2567 tag,--*)
2568 __gitcomp "--dry-run --message"
2569 ;;
2570 blame,--*)
2571 __gitcomp "--git-format"
2572 ;;
2573 migrate,--*)
2574 __gitcomp "
2575 --config-dir= --ignore-paths= --minimize
2576 --no-auth-cache --username=
2577 "
2578 ;;
c18d5d82
RZ
2579 reset,--*)
2580 __gitcomp "--revision= --parent"
2581 ;;
47f6ee28
SG
2582 *)
2583 COMPREPLY=()
2584 ;;
2585 esac
2586 fi
2587}
2588
88e21dc7
SP
2589_git_tag ()
2590{
2591 local i c=1 f=0
da48616f
PD
2592 while [ $c -lt $cword ]; do
2593 i="${words[c]}"
88e21dc7
SP
2594 case "$i" in
2595 -d|-v)
a31e6262 2596 __gitcomp_nl "$(__git_tags)"
88e21dc7
SP
2597 return
2598 ;;
2599 -f)
2600 f=1
2601 ;;
2602 esac
2603 c=$((++c))
2604 done
2605
da48616f 2606 case "$prev" in
88e21dc7
SP
2607 -m|-F)
2608 COMPREPLY=()
2609 ;;
8d8163f3 2610 -*|tag)
88e21dc7 2611 if [ $f = 1 ]; then
a31e6262 2612 __gitcomp_nl "$(__git_tags)"
88e21dc7
SP
2613 else
2614 COMPREPLY=()
2615 fi
2616 ;;
2617 *)
a31e6262 2618 __gitcomp_nl "$(__git_refs)"
88e21dc7
SP
2619 ;;
2620 esac
2621}
2622
424cce83
SG
2623_git_whatchanged ()
2624{
2625 _git_log
2626}
2627
690d8824
JH
2628_git ()
2629{
873537fa
SP
2630 local i c=1 command __git_dir
2631
ca209065 2632 if [[ -n ${ZSH_VERSION-} ]]; then
06f44c3c
ML
2633 emulate -L bash
2634 setopt KSH_TYPESET
52fd972d
FC
2635
2636 # workaround zsh's bug that leaves 'words' as a special
2637 # variable in versions < 4.3.12
2638 typeset -h words
06f44c3c
ML
2639 fi
2640
da4902a7
SG
2641 local cur words cword prev
2642 _get_comp_words_by_ref -n =: cur words cword prev
da48616f
PD
2643 while [ $c -lt $cword ]; do
2644 i="${words[c]}"
873537fa
SP
2645 case "$i" in
2646 --git-dir=*) __git_dir="${i#--git-dir=}" ;;
2647 --bare) __git_dir="." ;;
1eb7e2f8
LM
2648 --version|-p|--paginate) ;;
2649 --help) command="help"; break ;;
873537fa
SP
2650 *) command="$i"; break ;;
2651 esac
2652 c=$((++c))
2653 done
2654
1d17b22e 2655 if [ -z "$command" ]; then
da48616f 2656 case "$cur" in
47e98eec 2657 --*) __gitcomp "
ce5a2c95 2658 --paginate
47e98eec
SP
2659 --no-pager
2660 --git-dir=
2661 --bare
2662 --version
2663 --exec-path
89a56bfb 2664 --html-path
ce5a2c95 2665 --work-tree=
a1bea2c1 2666 --namespace=
ce5a2c95 2667 --help
47e98eec
SP
2668 "
2669 ;;
eaa4e6ee
JN
2670 *) __git_compute_porcelain_commands
2671 __gitcomp "$__git_porcelain_commands $(__git_aliases)" ;;
72e5e989
SP
2672 esac
2673 return
873537fa 2674 fi
367dce2a 2675
424cce83 2676 local completion_func="_git_${command//-/_}"
06f44c3c 2677 declare -f $completion_func >/dev/null && $completion_func && return
8024ea60 2678
873537fa 2679 local expansion=$(__git_aliased_command "$command")
8024ea60
SG
2680 if [ -n "$expansion" ]; then
2681 completion_func="_git_${expansion//-/_}"
06f44c3c 2682 declare -f $completion_func >/dev/null && $completion_func
8024ea60 2683 fi
690d8824
JH
2684}
2685
2686_gitk ()
2687{
ca209065 2688 if [[ -n ${ZSH_VERSION-} ]]; then
06f44c3c
ML
2689 emulate -L bash
2690 setopt KSH_TYPESET
52fd972d
FC
2691
2692 # workaround zsh's bug that leaves 'words' as a special
2693 # variable in versions < 4.3.12
2694 typeset -h words
06f44c3c
ML
2695 fi
2696
da4902a7
SG
2697 local cur words cword prev
2698 _get_comp_words_by_ref -n =: cur words cword prev
2699
d773c631
SG
2700 __git_has_doubledash && return
2701
fa26a401 2702 local g="$(__gitdir)"
07ba53f7 2703 local merge=""
ba7906f2 2704 if [ -f "$g/MERGE_HEAD" ]; then
07ba53f7
RQ
2705 merge="--merge"
2706 fi
b3391775
SP
2707 case "$cur" in
2708 --*)
a393777e
TR
2709 __gitcomp "
2710 $__git_log_common_options
2711 $__git_log_gitk_options
2712 $merge
2713 "
b3391775
SP
2714 return
2715 ;;
2716 esac
ec804891 2717 __git_complete_revlist
690d8824
JH
2718}
2719
50e126e1
TP
2720complete -o bashdefault -o default -o nospace -F _git git 2>/dev/null \
2721 || complete -o default -o nospace -F _git git
2722complete -o bashdefault -o default -o nospace -F _gitk gitk 2>/dev/null \
2723 || complete -o default -o nospace -F _gitk gitk
690d8824
JH
2724
2725# The following are necessary only for Cygwin, and only are needed
2726# when the user has tab-completed the executable name and consequently
2727# included the '.exe' suffix.
2728#
76c3eb51 2729if [ Cygwin = "$(uname -o 2>/dev/null)" ]; then
50e126e1
TP
2730complete -o bashdefault -o default -o nospace -F _git git.exe 2>/dev/null \
2731 || complete -o default -o nospace -F _git git.exe
76c3eb51 2732fi
06f44c3c 2733
ca209065 2734if [[ -n ${ZSH_VERSION-} ]]; then
dad42775 2735 __git_shopt () {
06f44c3c
ML
2736 local option
2737 if [ $# -ne 2 ]; then
2738 echo "USAGE: $0 (-q|-s|-u) <option>" >&2
2739 return 1
2740 fi
2741 case "$2" in
2742 nullglob)
2743 option="$2"
2744 ;;
2745 *)
2746 echo "$0: invalid option: $2" >&2
2747 return 1
2748 esac
2749 case "$1" in
2750 -q) setopt | grep -q "$option" ;;
2751 -u) unsetopt "$option" ;;
2752 -s) setopt "$option" ;;
2753 *)
2754 echo "$0: invalid flag: $1" >&2
2755 return 1
2756 esac
2757 }
dad42775
JN
2758else
2759 __git_shopt () {
2760 shopt "$@"
2761 }
06f44c3c 2762fi