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