]> git.ipfire.org Git - thirdparty/git.git/blame - contrib/completion/git-completion.bash
Git 2.15-rc0
[thirdparty/git.git] / contrib / completion / git-completion.bash
CommitLineData
b5a49471 1# bash/zsh completion support for core Git.
690d8824 2#
c70680ce 3# Copyright (C) 2006,2007 Shawn O. Pearce <spearce@spearce.org>
690d8824 4# Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/).
c70680ce 5# Distributed under the GNU General Public License, version 2.0.
690d8824
JH
6#
7# The contained completion routines provide support for completing:
8#
9# *) local and remote branch names
10# *) local and remote tag names
11# *) .git/remotes file names
12# *) git 'subcommands'
dfbe5eeb 13# *) git email aliases for git-send-email
690d8824 14# *) tree paths within 'ref:path/to/file' expressions
fea16b47 15# *) file paths within current working directory and index
c70680ce 16# *) common --long-options
690d8824
JH
17#
18# To use these routines:
19#
0e5ed7cc 20# 1) Copy this file to somewhere (e.g. ~/.git-completion.bash).
b5a49471 21# 2) Add the following line to your .bashrc/.zshrc:
0e5ed7cc 22# source ~/.git-completion.bash
af31a456
FC
23# 3) Consider changing your PS1 to also show the current branch,
24# see git-prompt.sh for details.
56f24e80
SP
25#
26# If you use complex aliases of form '!f() { ... }; f', you can use the null
27# command ':' as the first command in the function body to declare the desired
28# completion style. For example '!f() { : git commit ; ... }; f' will
29# tell the completion to use commit completion. This also works with aliases
30# of form "!sh -c '...'". For example, "!sh -c ': git commit ; ... '".
60e71bbc
JK
31#
32# You can set the following environment variables to influence the behavior of
33# the completion routines:
34#
35# GIT_COMPLETION_CHECKOUT_NO_GUESS
36#
37# When set to "1", do not include "DWIM" suggestions in git-checkout
38# completion (e.g., completing "foo" when "origin/foo" exists).
690d8824 39
db8a9ff0
SP
40case "$COMP_WORDBREAKS" in
41*:*) : great ;;
42*) COMP_WORDBREAKS="$COMP_WORDBREAKS:"
43esac
44
beb6ee71
SG
45# Discovers the path to the git repository taking any '--git-dir=<path>' and
46# '-C <path>' options into account and stores it in the $__git_repo_path
47# variable.
48__git_find_repo_path ()
49{
fad9484f
SG
50 if [ -n "$__git_repo_path" ]; then
51 # we already know where it is
52 return
53 fi
54
beb6ee71
SG
55 if [ -n "${__git_C_args-}" ]; then
56 __git_repo_path="$(git "${__git_C_args[@]}" \
57 ${__git_dir:+--git-dir="$__git_dir"} \
58 rev-parse --absolute-git-dir 2>/dev/null)"
59 elif [ -n "${__git_dir-}" ]; then
60 test -d "$__git_dir" &&
61 __git_repo_path="$__git_dir"
62 elif [ -n "${GIT_DIR-}" ]; then
63 test -d "${GIT_DIR-}" &&
64 __git_repo_path="$GIT_DIR"
65 elif [ -d .git ]; then
66 __git_repo_path=.git
67 else
68 __git_repo_path="$(git rev-parse --git-dir 2>/dev/null)"
69 fi
70}
71
fad9484f 72# Deprecated: use __git_find_repo_path() and $__git_repo_path instead
a42577d4
TP
73# __gitdir accepts 0 or 1 arguments (i.e., location)
74# returns location of .git repo
873537fa
SP
75__gitdir ()
76{
25a31f81 77 if [ -z "${1-}" ]; then
beb6ee71
SG
78 __git_find_repo_path || return 1
79 echo "$__git_repo_path"
67ffa114
SP
80 elif [ -d "$1/.git" ]; then
81 echo "$1/.git"
82 else
83 echo "$1"
84 fi
873537fa
SP
85}
86
1cd23e9e
SG
87# Runs git with all the options given as argument, respecting any
88# '--git-dir=<path>' and '-C <path>' options present on the command line
89__git ()
90{
91 git ${__git_C_args:+"${__git_C_args[@]}"} \
e15098a3 92 ${__git_dir:+--git-dir="$__git_dir"} "$@" 2>/dev/null
1cd23e9e
SG
93}
94
dbda3b10
JN
95# The following function is based on code from:
96#
97# bash_completion - programmable completion functions for bash 3.2+
98#
99# Copyright © 2006-2008, Ian Macdonald <ian@caliban.org>
100# © 2009-2010, Bash Completion Maintainers
101# <bash-completion-devel@lists.alioth.debian.org>
102#
103# This program is free software; you can redistribute it and/or modify
104# it under the terms of the GNU General Public License as published by
105# the Free Software Foundation; either version 2, or (at your option)
106# any later version.
107#
108# This program is distributed in the hope that it will be useful,
109# but WITHOUT ANY WARRANTY; without even the implied warranty of
110# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
111# GNU General Public License for more details.
112#
113# You should have received a copy of the GNU General Public License
114# along with this program; if not, write to the Free Software Foundation,
115# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
116#
117# The latest version of this software can be obtained here:
118#
119# http://bash-completion.alioth.debian.org/
120#
121# RELEASE: 2.x
122
123# This function can be used to access a tokenized list of words
124# on the command line:
125#
126# __git_reassemble_comp_words_by_ref '=:'
127# if test "${words_[cword_-1]}" = -w
128# then
129# ...
130# fi
131#
132# The argument should be a collection of characters from the list of
133# word completion separators (COMP_WORDBREAKS) to treat as ordinary
134# characters.
135#
136# This is roughly equivalent to going back in time and setting
137# COMP_WORDBREAKS to exclude those characters. The intent is to
138# make option types like --date=<type> and <rev>:<path> easy to
139# recognize by treating each shell word as a single token.
140#
141# It is best not to set COMP_WORDBREAKS directly because the value is
142# shared with other completion scripts. By the time the completion
143# function gets called, COMP_WORDS has already been populated so local
144# changes to COMP_WORDBREAKS have no effect.
145#
146# Output: words_, cword_, cur_.
147
148__git_reassemble_comp_words_by_ref()
149{
150 local exclude i j first
151 # Which word separators to exclude?
152 exclude="${1//[^$COMP_WORDBREAKS]}"
153 cword_=$COMP_CWORD
154 if [ -z "$exclude" ]; then
155 words_=("${COMP_WORDS[@]}")
156 return
157 fi
158 # List of word completion separators has shrunk;
159 # re-assemble words to complete.
160 for ((i=0, j=0; i < ${#COMP_WORDS[@]}; i++, j++)); do
161 # Append each nonempty word consisting of just
162 # word separator characters to the current word.
163 first=t
164 while
165 [ $i -gt 0 ] &&
166 [ -n "${COMP_WORDS[$i]}" ] &&
167 # word consists of excluded word separators
168 [ "${COMP_WORDS[$i]//[^$exclude]}" = "${COMP_WORDS[$i]}" ]
169 do
170 # Attach to the previous token,
171 # unless the previous token is the command name.
172 if [ $j -ge 2 ] && [ -n "$first" ]; then
173 ((j--))
174 fi
175 first=
176 words_[$j]=${words_[j]}${COMP_WORDS[i]}
177 if [ $i = $COMP_CWORD ]; then
178 cword_=$j
179 fi
180 if (($i < ${#COMP_WORDS[@]} - 1)); then
181 ((i++))
182 else
183 # Done.
184 return
185 fi
186 done
187 words_[$j]=${words_[j]}${COMP_WORDS[i]}
188 if [ $i = $COMP_CWORD ]; then
189 cword_=$j
190 fi
191 done
192}
193
da48616f
PD
194if ! type _get_comp_words_by_ref >/dev/null 2>&1; then
195_get_comp_words_by_ref ()
196{
dbda3b10
JN
197 local exclude cur_ words_ cword_
198 if [ "$1" = "-n" ]; then
199 exclude=$2
200 shift 2
201 fi
202 __git_reassemble_comp_words_by_ref "$exclude"
203 cur_=${words_[cword_]}
da48616f
PD
204 while [ $# -gt 0 ]; do
205 case "$1" in
206 cur)
dbda3b10 207 cur=$cur_
da48616f
PD
208 ;;
209 prev)
dbda3b10 210 prev=${words_[$cword_-1]}
da48616f
PD
211 ;;
212 words)
dbda3b10 213 words=("${words_[@]}")
da48616f
PD
214 ;;
215 cword)
dbda3b10 216 cword=$cword_
da48616f
PD
217 ;;
218 esac
219 shift
220 done
221}
222fi
223
fef56eb0
SG
224# Fills the COMPREPLY array with prefiltered words without any additional
225# processing.
226# Callers must take care of providing only words that match the current word
227# to be completed and adding any prefix and/or suffix (trailing space!), if
228# necessary.
229# 1: List of newline-separated matching completion words, complete with
230# prefix and suffix.
231__gitcomp_direct ()
232{
233 local IFS=$'\n'
234
235 COMPREPLY=($1)
236}
237
f33c2c0f 238__gitcompappend ()
1ce23aad 239{
852ff1c3 240 local x i=${#COMPREPLY[@]}
7d13e0a3
FC
241 for x in $1; do
242 if [[ "$x" == "$3"* ]]; then
243 COMPREPLY[i++]="$2$x$4"
244 fi
245 done
1ce23aad
FC
246}
247
f33c2c0f
RR
248__gitcompadd ()
249{
250 COMPREPLY=()
251 __gitcompappend "$@"
252}
253
7d13e0a3
FC
254# Generates completion reply, appending a space to possible completion words,
255# if necessary.
f674bb80
SG
256# It accepts 1 to 4 arguments:
257# 1: List of possible completion words.
258# 2: A prefix to be added to each possible completion word (optional).
259# 3: Generate possible completion matches for this word (optional).
260# 4: A suffix to be appended to each possible completion word (optional).
72e5e989
SP
261__gitcomp ()
262{
583e4d57 263 local cur_="${3-$cur}"
9244d69b 264
9244d69b 265 case "$cur_" in
5447aac7 266 --*=)
5447aac7
SG
267 ;;
268 *)
b4cfbc96
FC
269 local c i=0 IFS=$' \t\n'
270 for c in $1; do
271 c="$c${4-}"
b4cfbc96 272 if [[ $c == "$cur_"* ]]; then
ddc996d7
FC
273 case $c in
274 --*=*|*.) ;;
275 *) c="$c " ;;
276 esac
b4cfbc96
FC
277 COMPREPLY[i++]="${2-}$c"
278 fi
279 done
5447aac7
SG
280 ;;
281 esac
72e5e989
SP
282}
283
f33c2c0f
RR
284# Variation of __gitcomp_nl () that appends to the existing list of
285# completion candidates, COMPREPLY.
286__gitcomp_nl_append ()
287{
288 local IFS=$'\n'
289 __gitcompappend "$1" "${2-}" "${3-$cur}" "${4- }"
290}
291
7d13e0a3
FC
292# Generates completion reply from newline-separated possible completion words
293# by appending a space to all of them.
a31e6262
SG
294# It accepts 1 to 4 arguments:
295# 1: List of possible completion words, separated by a single newline.
296# 2: A prefix to be added to each possible completion word (optional).
297# 3: Generate possible completion matches for this word (optional).
298# 4: A suffix to be appended to each possible completion word instead of
299# the default space (optional). If specified but empty, nothing is
300# appended.
301__gitcomp_nl ()
302{
f33c2c0f
RR
303 COMPREPLY=()
304 __gitcomp_nl_append "$@"
a31e6262
SG
305}
306
fea16b47
MP
307# Generates completion reply with compgen from newline-separated possible
308# completion filenames.
309# It accepts 1 to 3 arguments:
310# 1: List of possible completion filenames, separated by a single newline.
311# 2: A directory prefix to be added to each possible completion filename
312# (optional).
313# 3: Generate possible completion matches for this word (optional).
314__gitcomp_file ()
315{
316 local IFS=$'\n'
317
318 # XXX does not work when the directory prefix contains a tilde,
319 # since tilde expansion is not applied.
320 # This means that COMPREPLY will be empty and Bash default
321 # completion will be used.
0afe8e9e 322 __gitcompadd "$1" "${2-}" "${3-$cur}" ""
fea16b47 323
3ffa4df4 324 # use a hack to enable file mode in bash < 4
fbe45118 325 compopt -o filenames +o nospace 2>/dev/null ||
3ffa4df4 326 compgen -f /non-existing-dir/ > /dev/null
fea16b47
MP
327}
328
f825972c
FC
329# Execute 'git ls-files', unless the --committable option is specified, in
330# which case it runs 'git diff-index' to find out the files that can be
331# committed. It return paths relative to the directory specified in the first
332# argument, and using the options specified in the second argument.
fea16b47
MP
333__git_ls_files_helper ()
334{
fca416a4 335 if [ "$2" == "--committable" ]; then
1cd23e9e 336 __git -C "$1" diff-index --name-only --relative HEAD
fca416a4
JH
337 else
338 # NOTE: $2 is not quoted in order to support multiple options
1cd23e9e 339 __git -C "$1" ls-files --exclude-standard $2
e15098a3 340 fi
35ba83cc 341}
fea16b47
MP
342
343
fea16b47
MP
344# __git_index_files accepts 1 or 2 arguments:
345# 1: Options to pass to ls-files (required).
fea16b47
MP
346# 2: A directory path (optional).
347# If provided, only files within the specified directory are listed.
348# Sub directories are never recursed. Path must have a trailing
349# slash.
350__git_index_files ()
351{
a958d40f 352 local root="${2-.}" file
fea16b47 353
a958d40f
SG
354 __git_ls_files_helper "$root" "$1" |
355 while read -r file; do
356 case "$file" in
357 ?*/*) echo "${file%%/*}" ;;
358 *) echo "$file" ;;
359 esac
360 done | sort | uniq
fea16b47
MP
361}
362
227307a6
SG
363# Lists branches from the local repository.
364# 1: A prefix to be added to each listed branch (optional).
365# 2: List only branches matching this word (optional; list all branches if
366# unset or empty).
367# 3: A suffix to be appended to each listed branch (optional).
5de40f59
SP
368__git_heads ()
369{
227307a6
SG
370 local pfx="${1-}" cur_="${2-}" sfx="${3-}"
371
372 __git for-each-ref --format="${pfx//\%/%%}%(refname:strip=2)$sfx" \
373 "refs/heads/$cur_*" "refs/heads/$cur_*/**"
5de40f59
SP
374}
375
227307a6
SG
376# Lists tags from the local repository.
377# Accepts the same positional parameters as __git_heads() above.
88e21dc7
SP
378__git_tags ()
379{
227307a6
SG
380 local pfx="${1-}" cur_="${2-}" sfx="${3-}"
381
382 __git for-each-ref --format="${pfx//\%/%%}%(refname:strip=2)$sfx" \
383 "refs/tags/$cur_*" "refs/tags/$cur_*/**"
88e21dc7
SP
384}
385
be6fbdb5
SG
386# Lists refs from the local (by default) or from a remote repository.
387# It accepts 0, 1 or 2 arguments:
388# 1: The remote to list refs from (optional; ignored, if set but empty).
91b7ea81 389# Can be the name of a configured remote, a path, or a URL.
be6fbdb5
SG
390# 2: In addition to local refs, list unique branches from refs/remotes/ for
391# 'git checkout's tracking DWIMery (optional; ignored, if set but empty).
fef56eb0 392# 3: A prefix to be added to each listed ref (optional).
e896369b
SG
393# 4: List only refs matching this word (optional; list all refs if unset or
394# empty).
fef56eb0
SG
395# 5: A suffix to be appended to each listed ref (optional; ignored, if set
396# but empty).
15b4a163
SG
397#
398# Use __git_complete_refs() instead.
690d8824
JH
399__git_refs ()
400{
fad9484f 401 local i hash dir track="${2-}"
5c12f642 402 local list_refs_from=path remote="${1-}"
fef56eb0
SG
403 local format refs
404 local pfx="${3-}" cur_="${4-$cur}" sfx="${5-}"
e896369b 405 local match="${4-}"
fef56eb0 406 local fer_pfx="${pfx//\%/%%}" # "escape" for-each-ref format specifiers
5c12f642 407
fad9484f
SG
408 __git_find_repo_path
409 dir="$__git_repo_path"
410
62a1b732
SG
411 if [ -z "$remote" ]; then
412 if [ -z "$dir" ]; then
413 return
414 fi
415 else
69a77596
SG
416 if __git_is_configured_remote "$remote"; then
417 # configured remote takes precedence over a
418 # local directory with the same name
419 list_refs_from=remote
420 elif [ -d "$remote/.git" ]; then
5c12f642
SG
421 dir="$remote/.git"
422 elif [ -d "$remote" ]; then
423 dir="$remote"
424 else
69a77596 425 list_refs_from=url
5c12f642
SG
426 fi
427 fi
428
62a1b732 429 if [ "$list_refs_from" = path ]; then
aed38813 430 if [[ "$cur_" == ^* ]]; then
fef56eb0
SG
431 pfx="$pfx^"
432 fer_pfx="$fer_pfx^"
aed38813 433 cur_=${cur_#^}
e896369b 434 match=${match#^}
aed38813 435 fi
2ea328a1 436 case "$cur_" in
608efb87
SG
437 refs|refs/*)
438 format="refname"
e896369b 439 refs=("$match*" "$match*/**")
34a6bbb5 440 track=""
608efb87
SG
441 ;;
442 *)
d23e7570 443 for i in HEAD FETCH_HEAD ORIG_HEAD MERGE_HEAD; do
e896369b
SG
444 case "$i" in
445 $match*)
446 if [ -e "$dir/$i" ]; then
fef56eb0 447 echo "$pfx$i$sfx"
e896369b
SG
448 fi
449 ;;
450 esac
d23e7570 451 done
b2b68114 452 format="refname:strip=2"
e896369b
SG
453 refs=("refs/tags/$match*" "refs/tags/$match*/**"
454 "refs/heads/$match*" "refs/heads/$match*/**"
455 "refs/remotes/$match*" "refs/remotes/$match*/**")
608efb87
SG
456 ;;
457 esac
fef56eb0 458 __git_dir="$dir" __git for-each-ref --format="$fer_pfx%($format)$sfx" \
e896369b 459 "${refs[@]}"
34a6bbb5
KB
460 if [ -n "$track" ]; then
461 # employ the heuristic used by git checkout
462 # Try to find a remote branch that matches the completion word
463 # but only output if the branch name is unique
fef56eb0 464 __git for-each-ref --format="$fer_pfx%(refname:strip=3)$sfx" \
400a7553 465 --sort="refname:strip=3" \
824388d5 466 "refs/remotes/*/$match*" "refs/remotes/*/$match*/**" | \
400a7553 467 uniq -u
34a6bbb5 468 fi
35e65ecc 469 return
690d8824 470 fi
2ea328a1 471 case "$cur_" in
fb772cca 472 refs|refs/*)
e896369b 473 __git ls-remote "$remote" "$match*" | \
6f2dd720 474 while read -r hash i; do
fb772cca
SG
475 case "$i" in
476 *^{}) ;;
fef56eb0 477 *) echo "$pfx$i$sfx" ;;
fb772cca
SG
478 esac
479 done
480 ;;
481 *)
91b7ea81 482 if [ "$list_refs_from" = remote ]; then
e896369b 483 case "HEAD" in
fef56eb0 484 $match*) echo "${pfx}HEAD$sfx" ;;
e896369b 485 esac
fef56eb0 486 __git for-each-ref --format="$fer_pfx%(refname:strip=3)$sfx" \
e896369b 487 "refs/remotes/$remote/$match*" \
e8cb0234 488 "refs/remotes/$remote/$match*/**"
91b7ea81 489 else
e896369b
SG
490 local query_symref
491 case "HEAD" in
492 $match*) query_symref="HEAD" ;;
493 esac
494 __git ls-remote "$remote" $query_symref \
495 "refs/tags/$match*" "refs/heads/$match*" \
496 "refs/remotes/$match*" |
91b7ea81
SG
497 while read -r hash i; do
498 case "$i" in
499 *^{}) ;;
fef56eb0
SG
500 refs/*) echo "$pfx${i#refs/*/}$sfx" ;;
501 *) echo "$pfx$i$sfx" ;; # symbolic refs
91b7ea81
SG
502 esac
503 done
504 fi
fb772cca
SG
505 ;;
506 esac
690d8824
JH
507}
508
15b4a163
SG
509# Completes refs, short and long, local and remote, symbolic and pseudo.
510#
511# Usage: __git_complete_refs [<option>]...
512# --remote=<remote>: The remote to list refs from, can be the name of a
513# configured remote, a path, or a URL.
514# --track: List unique remote branches for 'git checkout's tracking DWIMery.
515# --pfx=<prefix>: A prefix to be added to each ref.
516# --cur=<word>: The current ref to be completed. Defaults to the current
517# word to be completed.
518# --sfx=<suffix>: A suffix to be appended to each ref instead of the default
519# space.
520__git_complete_refs ()
521{
522 local remote track pfx cur_="$cur" sfx=" "
523
524 while test $# != 0; do
525 case "$1" in
526 --remote=*) remote="${1##--remote=}" ;;
527 --track) track="yes" ;;
528 --pfx=*) pfx="${1##--pfx=}" ;;
529 --cur=*) cur_="${1##--cur=}" ;;
530 --sfx=*) sfx="${1##--sfx=}" ;;
531 *) return 1 ;;
532 esac
533 shift
534 done
535
fef56eb0 536 __gitcomp_direct "$(__git_refs "$remote" "$track" "$pfx" "$cur_" "$sfx")"
15b4a163
SG
537}
538
a42577d4 539# __git_refs2 requires 1 argument (to pass to __git_refs)
aa0644f7 540# Deprecated: use __git_complete_fetch_refspecs() instead.
690d8824
JH
541__git_refs2 ()
542{
67ffa114
SP
543 local i
544 for i in $(__git_refs "$1"); do
545 echo "$i:$i"
690d8824
JH
546 done
547}
548
aa0644f7
SG
549# Completes refspecs for fetching from a remote repository.
550# 1: The remote repository.
551# 2: A prefix to be added to each listed refspec (optional).
552# 3: The ref to be completed as a refspec instead of the current word to be
553# completed (optional)
554# 4: A suffix to be appended to each listed refspec instead of the default
555# space (optional).
556__git_complete_fetch_refspecs ()
557{
558 local i remote="$1" pfx="${2-}" cur_="${3-$cur}" sfx="${4- }"
559
745d655d 560 __gitcomp_direct "$(
aa0644f7 561 for i in $(__git_refs "$remote" "" "" "$cur_") ; do
745d655d 562 echo "$pfx$i:$i$sfx"
aa0644f7 563 done
745d655d 564 )"
aa0644f7
SG
565}
566
a42577d4 567# __git_refs_remotes requires 1 argument (to pass to ls-remote)
5de40f59
SP
568__git_refs_remotes ()
569{
48058f5d 570 local i hash
e15098a3 571 __git ls-remote "$1" 'refs/heads/*' | \
6f2dd720 572 while read -r hash i; do
48058f5d 573 echo "$i:refs/remotes/$1/${i#refs/heads/}"
5de40f59
SP
574 done
575}
576
690d8824
JH
577__git_remotes ()
578{
fad9484f
SG
579 __git_find_repo_path
580 test -d "$__git_repo_path/remotes" && ls -1 "$__git_repo_path/remotes"
1cd23e9e 581 __git remote
690d8824
JH
582}
583
69a77596
SG
584# Returns true if $1 matches the name of a configured remote, false otherwise.
585__git_is_configured_remote ()
586{
587 local remote
588 for remote in $(__git_remotes); do
589 if [ "$remote" = "$1" ]; then
590 return 0
591 fi
592 done
593 return 1
690d8824
JH
594}
595
eaa4e6ee 596__git_list_merge_strategies ()
4ad91321 597{
25b3d4d6
JH
598 git merge -s help 2>&1 |
599 sed -n -e '/[Aa]vailable strategies are: /,/^$/{
600 s/\.$//
601 s/.*://
602 s/^[ ]*//
603 s/[ ]*$//
4ad91321 604 p
25b3d4d6 605 }'
4ad91321 606}
eaa4e6ee
JN
607
608__git_merge_strategies=
609# 'git merge -s help' (and thus detection of the merge strategy
610# list) fails, unfortunately, if run outside of any git working
611# tree. __git_merge_strategies is set to the empty string in
612# that case, and the detection will be repeated the next time it
613# is needed.
614__git_compute_merge_strategies ()
615{
cf0ff02a
FC
616 test -n "$__git_merge_strategies" ||
617 __git_merge_strategies=$(__git_list_merge_strategies)
eaa4e6ee 618}
4ad91321 619
1d66ec58 620__git_complete_revlist_file ()
690d8824 621{
da4902a7 622 local pfx ls ref cur_="$cur"
9244d69b 623 case "$cur_" in
1d66ec58
SG
624 *..?*:*)
625 return
626 ;;
690d8824 627 ?*:*)
9244d69b
SG
628 ref="${cur_%%:*}"
629 cur_="${cur_#*:}"
630 case "$cur_" in
690d8824 631 ?*/*)
9244d69b
SG
632 pfx="${cur_%/*}"
633 cur_="${cur_##*/}"
690d8824
JH
634 ls="$ref:$pfx"
635 pfx="$pfx/"
636 ;;
637 *)
638 ls="$ref"
639 ;;
80152b09 640 esac
db8a9ff0
SP
641
642 case "$COMP_WORDBREAKS" in
643 *:*) : great ;;
644 *) pfx="$ref:$pfx" ;;
645 esac
646
e15098a3 647 __gitcomp_nl "$(__git ls-tree "$ls" \
778306e4
SP
648 | sed '/^100... blob /{
649 s,^.* ,,
650 s,$, ,
651 }
652 /^120000 blob /{
653 s,^.* ,,
654 s,$, ,
655 }
690d8824
JH
656 /^040000 tree /{
657 s,^.* ,,
658 s,$,/,
659 }
660 s/^.* //')" \
41e6229d 661 "$pfx" "$cur_" ""
690d8824 662 ;;
f53352fb 663 *...*)
9244d69b
SG
664 pfx="${cur_%...*}..."
665 cur_="${cur_#*...}"
15b4a163 666 __git_complete_refs --pfx="$pfx" --cur="$cur_"
f53352fb
SP
667 ;;
668 *..*)
9244d69b
SG
669 pfx="${cur_%..*}.."
670 cur_="${cur_#*..}"
15b4a163 671 __git_complete_refs --pfx="$pfx" --cur="$cur_"
b3391775 672 ;;
f53352fb 673 *)
15b4a163 674 __git_complete_refs
f53352fb
SP
675 ;;
676 esac
677}
678
1d66ec58 679
f825972c
FC
680# __git_complete_index_file requires 1 argument:
681# 1: the options to pass to ls-file
682#
683# The exception is --committable, which finds the files appropriate commit.
fea16b47
MP
684__git_complete_index_file ()
685{
fda54ef1 686 local pfx="" cur_="$cur"
fea16b47
MP
687
688 case "$cur_" in
689 ?*/*)
690 pfx="${cur_%/*}"
691 cur_="${cur_##*/}"
692 pfx="${pfx}/"
fea16b47
MP
693 ;;
694 esac
fea16b47 695
fca416a4 696 __gitcomp_file "$(__git_index_files "$1" ${pfx:+"$pfx"})" "$pfx" "$cur_"
fea16b47
MP
697}
698
1d66ec58
SG
699__git_complete_file ()
700{
701 __git_complete_revlist_file
702}
703
704__git_complete_revlist ()
705{
706 __git_complete_revlist_file
707}
708
52d5c3b5
JS
709__git_complete_remote_or_refspec ()
710{
9244d69b 711 local cur_="$cur" cmd="${words[1]}"
0a4e1472 712 local i c=2 remote="" pfx="" lhs=1 no_complete_refspec=0
f1c6ffe6 713 if [ "$cmd" = "remote" ]; then
6e8c755f 714 ((c++))
f1c6ffe6 715 fi
da48616f
PD
716 while [ $c -lt $cword ]; do
717 i="${words[c]}"
52d5c3b5 718 case "$i" in
e25e2b42 719 --mirror) [ "$cmd" = "push" ] && no_complete_refspec=1 ;;
723c1d52 720 -d|--delete) [ "$cmd" = "push" ] && lhs=0 ;;
e25e2b42
BG
721 --all)
722 case "$cmd" in
723 push) no_complete_refspec=1 ;;
724 fetch)
e25e2b42
BG
725 return
726 ;;
727 *) ;;
728 esac
729 ;;
52d5c3b5
JS
730 -*) ;;
731 *) remote="$i"; break ;;
732 esac
6e8c755f 733 ((c++))
52d5c3b5
JS
734 done
735 if [ -z "$remote" ]; then
a31e6262 736 __gitcomp_nl "$(__git_remotes)"
52d5c3b5
JS
737 return
738 fi
0a4e1472 739 if [ $no_complete_refspec = 1 ]; then
0a4e1472
JS
740 return
741 fi
52d5c3b5 742 [ "$remote" = "." ] && remote=
9244d69b 743 case "$cur_" in
52d5c3b5
JS
744 *:*)
745 case "$COMP_WORDBREAKS" in
746 *:*) : great ;;
9244d69b 747 *) pfx="${cur_%%:*}:" ;;
52d5c3b5 748 esac
9244d69b 749 cur_="${cur_#*:}"
52d5c3b5
JS
750 lhs=0
751 ;;
752 +*)
753 pfx="+"
9244d69b 754 cur_="${cur_#+}"
52d5c3b5
JS
755 ;;
756 esac
757 case "$cmd" in
758 fetch)
759 if [ $lhs = 1 ]; then
aa0644f7 760 __git_complete_fetch_refspecs "$remote" "$pfx" "$cur_"
52d5c3b5 761 else
15b4a163 762 __git_complete_refs --pfx="$pfx" --cur="$cur_"
52d5c3b5
JS
763 fi
764 ;;
f1c6ffe6 765 pull|remote)
52d5c3b5 766 if [ $lhs = 1 ]; then
15b4a163 767 __git_complete_refs --remote="$remote" --pfx="$pfx" --cur="$cur_"
52d5c3b5 768 else
15b4a163 769 __git_complete_refs --pfx="$pfx" --cur="$cur_"
52d5c3b5
JS
770 fi
771 ;;
772 push)
773 if [ $lhs = 1 ]; then
15b4a163 774 __git_complete_refs --pfx="$pfx" --cur="$cur_"
52d5c3b5 775 else
15b4a163 776 __git_complete_refs --remote="$remote" --pfx="$pfx" --cur="$cur_"
52d5c3b5
JS
777 fi
778 ;;
779 esac
780}
781
3c7b480a
JS
782__git_complete_strategy ()
783{
eaa4e6ee 784 __git_compute_merge_strategies
da48616f 785 case "$prev" in
3c7b480a 786 -s|--strategy)
eaa4e6ee 787 __gitcomp "$__git_merge_strategies"
3c7b480a
JS
788 return 0
789 esac
3c7b480a
JS
790 case "$cur" in
791 --strategy=*)
eaa4e6ee 792 __gitcomp "$__git_merge_strategies" "" "${cur##--strategy=}"
3c7b480a
JS
793 return 0
794 ;;
795 esac
796 return 1
797}
798
50478223
JH
799__git_commands () {
800 if test -n "${GIT_TESTING_COMMAND_COMPLETION:-}"
801 then
802 printf "%s" "${GIT_TESTING_COMMAND_COMPLETION}"
803 else
804 git help -a|egrep '^ [a-zA-Z0-9]'
805 fi
806}
807
eaa4e6ee 808__git_list_all_commands ()
f2bb9f88
SP
809{
810 local i IFS=" "$'\n'
50478223 811 for i in $(__git_commands)
1eb7e2f8
LM
812 do
813 case $i in
814 *--*) : helper pattern;;
815 *) echo $i;;
816 esac
817 done
818}
1eb7e2f8 819
eaa4e6ee
JN
820__git_all_commands=
821__git_compute_all_commands ()
822{
cf0ff02a
FC
823 test -n "$__git_all_commands" ||
824 __git_all_commands=$(__git_list_all_commands)
eaa4e6ee
JN
825}
826
827__git_list_porcelain_commands ()
1eb7e2f8 828{
1eb7e2f8 829 local i IFS=" "$'\n'
eaa4e6ee 830 __git_compute_all_commands
585b96bd 831 for i in $__git_all_commands
f2bb9f88
SP
832 do
833 case $i in
718a087a 834 *--*) : helper pattern;;
a925c6f1
SP
835 applymbox) : ask gittus;;
836 applypatch) : ask gittus;;
837 archimport) : import;;
2e3a430a 838 cat-file) : plumbing;;
56d99c67 839 check-attr) : plumbing;;
368aa529 840 check-ignore) : plumbing;;
226ad348 841 check-mailmap) : plumbing;;
f2bb9f88 842 check-ref-format) : plumbing;;
ff2549dc 843 checkout-index) : plumbing;;
160fcdb0 844 column) : internal helper;;
f2bb9f88 845 commit-tree) : plumbing;;
ff2549dc 846 count-objects) : infrequent;;
a074aa90
SG
847 credential) : credentials;;
848 credential-*) : credentials helper;;
a925c6f1
SP
849 cvsexportcommit) : export;;
850 cvsimport) : import;;
f2bb9f88
SP
851 cvsserver) : daemon;;
852 daemon) : daemon;;
5cfb4fe5
SP
853 diff-files) : plumbing;;
854 diff-index) : plumbing;;
855 diff-tree) : plumbing;;
c6ec3b13 856 fast-import) : import;;
ff2549dc 857 fast-export) : export;;
a925c6f1 858 fsck-objects) : plumbing;;
f2bb9f88 859 fetch-pack) : plumbing;;
a925c6f1 860 fmt-merge-msg) : plumbing;;
56d99c67 861 for-each-ref) : plumbing;;
f2bb9f88
SP
862 hash-object) : plumbing;;
863 http-*) : transport;;
864 index-pack) : plumbing;;
a925c6f1 865 init-db) : deprecated;;
f2bb9f88 866 local-fetch) : plumbing;;
ff2549dc
PB
867 ls-files) : plumbing;;
868 ls-remote) : plumbing;;
869 ls-tree) : plumbing;;
f2bb9f88
SP
870 mailinfo) : plumbing;;
871 mailsplit) : plumbing;;
872 merge-*) : plumbing;;
873 mktree) : plumbing;;
874 mktag) : plumbing;;
875 pack-objects) : plumbing;;
876 pack-redundant) : plumbing;;
877 pack-refs) : plumbing;;
878 parse-remote) : plumbing;;
879 patch-id) : plumbing;;
a925c6f1
SP
880 prune) : plumbing;;
881 prune-packed) : plumbing;;
882 quiltimport) : import;;
f2bb9f88
SP
883 read-tree) : plumbing;;
884 receive-pack) : plumbing;;
63d04a78 885 remote-*) : transport;;
f2bb9f88
SP
886 rerere) : plumbing;;
887 rev-list) : plumbing;;
888 rev-parse) : plumbing;;
889 runstatus) : plumbing;;
890 sh-setup) : internal;;
891 shell) : daemon;;
ff2549dc 892 show-ref) : plumbing;;
f2bb9f88
SP
893 send-pack) : plumbing;;
894 show-index) : plumbing;;
895 ssh-*) : transport;;
896 stripspace) : plumbing;;
897 symbolic-ref) : plumbing;;
898 unpack-file) : plumbing;;
899 unpack-objects) : plumbing;;
a925c6f1 900 update-index) : plumbing;;
f2bb9f88
SP
901 update-ref) : plumbing;;
902 update-server-info) : daemon;;
903 upload-archive) : plumbing;;
904 upload-pack) : plumbing;;
905 write-tree) : plumbing;;
ff2549dc
PB
906 var) : infrequent;;
907 verify-pack) : infrequent;;
a925c6f1 908 verify-tag) : plumbing;;
f2bb9f88
SP
909 *) echo $i;;
910 esac
911 done
912}
eaa4e6ee
JN
913
914__git_porcelain_commands=
915__git_compute_porcelain_commands ()
916{
cf0ff02a
FC
917 test -n "$__git_porcelain_commands" ||
918 __git_porcelain_commands=$(__git_list_porcelain_commands)
eaa4e6ee 919}
f2bb9f88 920
e8f9e428
SG
921# Lists all set config variables starting with the given section prefix,
922# with the prefix removed.
923__git_get_config_variables ()
c3898111 924{
e8f9e428 925 local section="$1" i IFS=$'\n'
e15098a3 926 for i in $(__git config --name-only --get-regexp "^$section\..*"); do
905f2036 927 echo "${i#$section.}"
c3898111
SG
928 done
929}
930
c3898111
SG
931__git_pretty_aliases ()
932{
e8f9e428 933 __git_get_config_variables "pretty"
c3898111
SG
934}
935
367dce2a
DS
936__git_aliases ()
937{
e8f9e428 938 __git_get_config_variables "alias"
367dce2a
DS
939}
940
a42577d4 941# __git_aliased_command requires 1 argument
367dce2a
DS
942__git_aliased_command ()
943{
e15098a3 944 local word cmdline=$(__git config --get "alias.$1")
367dce2a 945 for word in $cmdline; do
c63437cb 946 case "$word" in
66729509
SG
947 \!gitk|gitk)
948 echo "gitk"
367dce2a 949 return
66729509 950 ;;
c63437cb
SG
951 \!*) : shell command alias ;;
952 -*) : option ;;
953 *=*) : setting env ;;
954 git) : git itself ;;
56f24e80
SP
955 \(\)) : skip parens of shell function definition ;;
956 {) : skip start of shell helper function ;;
957 :) : skip null command ;;
958 \'*) : skip opening quote after sh -c ;;
c63437cb
SG
959 *)
960 echo "$word"
367dce2a 961 return
c63437cb 962 esac
367dce2a
DS
963 done
964}
965
918c03c2
SG
966# __git_find_on_cmdline requires 1 argument
967__git_find_on_cmdline ()
3ff1320d 968{
da4902a7 969 local word subcommand c=1
da48616f
PD
970 while [ $c -lt $cword ]; do
971 word="${words[c]}"
3ff1320d
SG
972 for subcommand in $1; do
973 if [ "$subcommand" = "$word" ]; then
974 echo "$subcommand"
975 return
976 fi
977 done
6e8c755f 978 ((c++))
3ff1320d
SG
979 done
980}
981
7c599e92
TB
982# Echo the value of an option set on the command line or config
983#
984# $1: short option name
985# $2: long option name including =
986# $3: list of possible values
987# $4: config string (optional)
988#
989# example:
990# result="$(__git_get_option_value "-d" "--do-something=" \
991# "yes no" "core.doSomething")"
992#
993# result is then either empty (no option set) or "yes" or "no"
994#
995# __git_get_option_value requires 3 arguments
996__git_get_option_value ()
997{
998 local c short_opt long_opt val
999 local result= values config_key word
1000
1001 short_opt="$1"
1002 long_opt="$2"
1003 values="$3"
1004 config_key="$4"
1005
1006 ((c = $cword - 1))
1007 while [ $c -ge 0 ]; do
1008 word="${words[c]}"
1009 for val in $values; do
1010 if [ "$short_opt$val" = "$word" ] ||
1011 [ "$long_opt$val" = "$word" ]; then
1012 result="$val"
1013 break 2
1014 fi
1015 done
1016 ((c--))
1017 done
1018
1019 if [ -n "$config_key" ] && [ -z "$result" ]; then
1cd23e9e 1020 result="$(__git config "$config_key")"
7c599e92
TB
1021 fi
1022
1023 echo "$result"
1024}
1025
d773c631
SG
1026__git_has_doubledash ()
1027{
da4902a7 1028 local c=1
da48616f
PD
1029 while [ $c -lt $cword ]; do
1030 if [ "--" = "${words[c]}" ]; then
d773c631
SG
1031 return 0
1032 fi
6e8c755f 1033 ((c++))
d773c631
SG
1034 done
1035 return 1
1036}
1037
fea16b47
MP
1038# Try to count non option arguments passed on the command line for the
1039# specified git command.
1040# When options are used, it is necessary to use the special -- option to
1041# tell the implementation were non option arguments begin.
1042# XXX this can not be improved, since options can appear everywhere, as
1043# an example:
1044# git mv x -n y
1045#
1046# __git_count_arguments requires 1 argument: the git command executed.
1047__git_count_arguments ()
1048{
1049 local word i c=0
1050
1051 # Skip "git" (first argument)
1052 for ((i=1; i < ${#words[@]}; i++)); do
1053 word="${words[i]}"
1054
1055 case "$word" in
1056 --)
1057 # Good; we can assume that the following are only non
1058 # option arguments.
1059 ((c = 0))
1060 ;;
1061 "$1")
1062 # Skip the specified git command and discard git
1063 # main options
1064 ((c = 0))
1065 ;;
1066 ?*)
1067 ((c++))
1068 ;;
1069 esac
1070 done
1071
1072 printf "%d" $c
1073}
1074
7950659d 1075__git_whitespacelist="nowarn warn error error-all fix"
88329195
SP
1076
1077_git_am ()
1078{
fad9484f
SG
1079 __git_find_repo_path
1080 if [ -d "$__git_repo_path"/rebase-apply ]; then
85f6b439 1081 __gitcomp "--skip --continue --resolved --abort"
88329195
SP
1082 return
1083 fi
1084 case "$cur" in
1085 --whitespace=*)
b3391775 1086 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
88329195
SP
1087 return
1088 ;;
1089 --*)
b3391775 1090 __gitcomp "
43acdf24 1091 --3way --committer-date-is-author-date --ignore-date
86c91f91 1092 --ignore-whitespace --ignore-space-change
43acdf24 1093 --interactive --keep --no-utf8 --signoff --utf8
af4e9e8c 1094 --whitespace= --scissors
b3391775 1095 "
88329195
SP
1096 return
1097 esac
88329195
SP
1098}
1099
1100_git_apply ()
1101{
88329195
SP
1102 case "$cur" in
1103 --whitespace=*)
b3391775 1104 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
88329195
SP
1105 return
1106 ;;
1107 --*)
b3391775 1108 __gitcomp "
88329195
SP
1109 --stat --numstat --summary --check --index
1110 --cached --index-info --reverse --reject --unidiff-zero
1111 --apply --no-add --exclude=
86c91f91 1112 --ignore-whitespace --ignore-space-change
88329195 1113 --whitespace= --inaccurate-eof --verbose
f483a0aa 1114 --recount --directory=
b3391775 1115 "
88329195
SP
1116 return
1117 esac
88329195
SP
1118}
1119
8435b548
SP
1120_git_add ()
1121{
8435b548
SP
1122 case "$cur" in
1123 --*)
1d284cba
SG
1124 __gitcomp "
1125 --interactive --refresh --patch --update --dry-run
bd9ab9df 1126 --ignore-errors --intent-to-add --force --edit --chmod=
1d284cba 1127 "
8435b548
SP
1128 return
1129 esac
fea16b47 1130
bd9ab9df
CW
1131 local complete_opt="--others --modified --directory --no-empty-directory"
1132 if test -n "$(__git_find_on_cmdline "-u --update")"
1133 then
1134 complete_opt="--modified"
1135 fi
1136 __git_complete_index_file "$complete_opt"
8435b548
SP
1137}
1138
b3191ce2
LM
1139_git_archive ()
1140{
b3191ce2
LM
1141 case "$cur" in
1142 --format=*)
1143 __gitcomp "$(git archive --list)" "" "${cur##--format=}"
1144 return
1145 ;;
1146 --remote=*)
a31e6262 1147 __gitcomp_nl "$(__git_remotes)" "" "${cur##--remote=}"
b3191ce2
LM
1148 return
1149 ;;
1150 --*)
1151 __gitcomp "
1152 --format= --list --verbose
f483a0aa 1153 --prefix= --remote= --exec= --output
b3191ce2
LM
1154 "
1155 return
1156 ;;
1157 esac
1158 __git_complete_file
1159}
1160
b2e69f62
SP
1161_git_bisect ()
1162{
d773c631
SG
1163 __git_has_doubledash && return
1164
bf11d461 1165 local subcommands="start bad good skip reset visualize replay log run"
918c03c2 1166 local subcommand="$(__git_find_on_cmdline "$subcommands")"
3ff1320d 1167 if [ -z "$subcommand" ]; then
fad9484f
SG
1168 __git_find_repo_path
1169 if [ -f "$__git_repo_path"/BISECT_START ]; then
128191f5
SG
1170 __gitcomp "$subcommands"
1171 else
1172 __gitcomp "replay start"
1173 fi
b2e69f62
SP
1174 return
1175 fi
1176
3ff1320d 1177 case "$subcommand" in
8205ff8e 1178 bad|good|reset|skip|start)
15b4a163 1179 __git_complete_refs
b2e69f62
SP
1180 ;;
1181 *)
b2e69f62
SP
1182 ;;
1183 esac
1184}
1185
690d8824
JH
1186_git_branch ()
1187{
da4902a7 1188 local i c=1 only_local_ref="n" has_r="n"
b9217642 1189
da48616f
PD
1190 while [ $c -lt $cword ]; do
1191 i="${words[c]}"
b9217642 1192 case "$i" in
2703c22f
VS
1193 -d|--delete|-m|--move) only_local_ref="y" ;;
1194 -r|--remotes) has_r="y" ;;
b9217642 1195 esac
6e8c755f 1196 ((c++))
b9217642
SG
1197 done
1198
da48616f 1199 case "$cur" in
ca45d0fa 1200 --set-upstream-to=*)
15b4a163 1201 __git_complete_refs --cur="${cur##--set-upstream-to=}"
ca45d0fa 1202 ;;
3b376b0c
SG
1203 --*)
1204 __gitcomp "
1205 --color --no-color --verbose --abbrev= --no-abbrev
ac3f5a34 1206 --track --no-track --contains --no-contains --merged --no-merged
04308e9d 1207 --set-upstream-to= --edit-description --list
2703c22f 1208 --unset-upstream --delete --move --remotes
f483a0aa 1209 --column --no-column --sort= --points-at
3b376b0c
SG
1210 "
1211 ;;
b9217642
SG
1212 *)
1213 if [ $only_local_ref = "y" -a $has_r = "n" ]; then
227307a6 1214 __gitcomp_direct "$(__git_heads "" "$cur" " ")"
b9217642 1215 else
15b4a163 1216 __git_complete_refs
b9217642
SG
1217 fi
1218 ;;
3b376b0c 1219 esac
690d8824
JH
1220}
1221
374a58c9
ML
1222_git_bundle ()
1223{
da48616f
PD
1224 local cmd="${words[2]}"
1225 case "$cword" in
8d8163f3 1226 2)
374a58c9
ML
1227 __gitcomp "create list-heads verify unbundle"
1228 ;;
8d8163f3 1229 3)
374a58c9
ML
1230 # looking for a file
1231 ;;
1232 *)
1233 case "$cmd" in
1234 create)
1235 __git_complete_revlist
1236 ;;
1237 esac
1238 ;;
1239 esac
1240}
1241
690d8824
JH
1242_git_checkout ()
1243{
c84bb14c
SG
1244 __git_has_doubledash && return
1245
e648f8b6
SG
1246 case "$cur" in
1247 --conflict=*)
1248 __gitcomp "diff3 merge" "" "${cur##--conflict=}"
1249 ;;
1250 --*)
1251 __gitcomp "
1252 --quiet --ours --theirs --track --no-track --merge
86e8e7a5 1253 --conflict= --orphan --patch
e648f8b6
SG
1254 "
1255 ;;
1256 *)
34a6bbb5
KB
1257 # check if --track, --no-track, or --no-guess was specified
1258 # if so, disable DWIM mode
15b4a163 1259 local flags="--track --no-track --no-guess" track_opt="--track"
60e71bbc
JK
1260 if [ "$GIT_COMPLETION_CHECKOUT_NO_GUESS" = "1" ] ||
1261 [ -n "$(__git_find_on_cmdline "$flags")" ]; then
15b4a163 1262 track_opt=''
34a6bbb5 1263 fi
15b4a163 1264 __git_complete_refs $track_opt
e648f8b6
SG
1265 ;;
1266 esac
690d8824
JH
1267}
1268
d8a9fea5
SP
1269_git_cherry ()
1270{
15b4a163 1271 __git_complete_refs
d8a9fea5
SP
1272}
1273
1273231e
SP
1274_git_cherry_pick ()
1275{
fad9484f
SG
1276 __git_find_repo_path
1277 if [ -f "$__git_repo_path"/CHERRY_PICK_HEAD ]; then
7655fa7f
FC
1278 __gitcomp "--continue --quit --abort"
1279 return
1280 fi
1273231e
SP
1281 case "$cur" in
1282 --*)
7655fa7f 1283 __gitcomp "--edit --no-commit --signoff --strategy= --mainline"
1273231e
SP
1284 ;;
1285 *)
15b4a163 1286 __git_complete_refs
1273231e
SP
1287 ;;
1288 esac
1289}
1290
4181c7e8
LM
1291_git_clean ()
1292{
4181c7e8
LM
1293 case "$cur" in
1294 --*)
1295 __gitcomp "--dry-run --quiet"
1296 return
1297 ;;
1298 esac
fea16b47
MP
1299
1300 # XXX should we check for -x option ?
ea95c7b8 1301 __git_complete_index_file "--others --directory"
4181c7e8
LM
1302}
1303
3eb11012
LM
1304_git_clone ()
1305{
3eb11012
LM
1306 case "$cur" in
1307 --*)
1308 __gitcomp "
1309 --local
1310 --no-hardlinks
1311 --shared
1312 --reference
1313 --quiet
1314 --no-checkout
1315 --bare
1316 --mirror
1317 --origin
1318 --upload-pack
1319 --template=
1320 --depth
4047fecf 1321 --single-branch
0dab2468 1322 --no-tags
4047fecf 1323 --branch
5f072e00 1324 --recurse-submodules
f483a0aa
CW
1325 --no-single-branch
1326 --shallow-submodules
3eb11012
LM
1327 "
1328 return
1329 ;;
1330 esac
3eb11012
LM
1331}
1332
21d2a9e3
TB
1333__git_untracked_file_modes="all no normal"
1334
4548e855
SP
1335_git_commit ()
1336{
fea16b47
MP
1337 case "$prev" in
1338 -c|-C)
15b4a163 1339 __git_complete_refs
fea16b47
MP
1340 return
1341 ;;
1342 esac
d773c631 1343
4548e855 1344 case "$cur" in
9a424b27 1345 --cleanup=*)
72dbb365 1346 __gitcomp "default scissors strip verbatim whitespace
9a424b27
SG
1347 " "" "${cur##--cleanup=}"
1348 return
1349 ;;
77653abd
TM
1350 --reuse-message=*|--reedit-message=*|\
1351 --fixup=*|--squash=*)
15b4a163 1352 __git_complete_refs --cur="${cur#*=}"
9a424b27
SG
1353 return
1354 ;;
1355 --untracked-files=*)
21d2a9e3 1356 __gitcomp "$__git_untracked_file_modes" "" "${cur##--untracked-files=}"
9a424b27
SG
1357 return
1358 ;;
4548e855 1359 --*)
b3391775 1360 __gitcomp "
4548e855 1361 --all --author= --signoff --verify --no-verify
7dd9ab0c
YB
1362 --edit --no-edit
1363 --amend --include --only --interactive
9a424b27
SG
1364 --dry-run --reuse-message= --reedit-message=
1365 --reset-author --file= --message= --template=
1366 --cleanup= --untracked-files --untracked-files=
77653abd 1367 --verbose --quiet --fixup= --squash=
f483a0aa 1368 --patch --short --date --allow-empty
b3391775 1369 "
4548e855
SP
1370 return
1371 esac
fea16b47 1372
1cd23e9e 1373 if __git rev-parse --verify --quiet HEAD >/dev/null; then
f825972c 1374 __git_complete_index_file "--committable"
fea16b47
MP
1375 else
1376 # This is the first commit
1377 __git_complete_index_file "--cached"
1378 fi
4548e855
SP
1379}
1380
217926c0
SP
1381_git_describe ()
1382{
cbb504c9
TR
1383 case "$cur" in
1384 --*)
1385 __gitcomp "
1386 --all --tags --contains --abbrev= --candidates=
f483a0aa 1387 --exact-match --debug --long --match --always --first-parent
77d21f29 1388 --exclude
cbb504c9
TR
1389 "
1390 return
1391 esac
15b4a163 1392 __git_complete_refs
217926c0
SP
1393}
1394
07924d4d
MP
1395__git_diff_algorithms="myers minimal patience histogram"
1396
462f2134 1397__git_diff_submodule_formats="diff log short"
ac76fd54 1398
20bf7292 1399__git_diff_common_options="--stat --numstat --shortstat --summary
b3a4f858
JS
1400 --patch-with-stat --name-only --name-status --color
1401 --no-color --color-words --no-renames --check
f135aacb 1402 --full-index --binary --abbrev --diff-filter=
47d5a8fa 1403 --find-copies-harder
b3a4f858 1404 --text --ignore-space-at-eol --ignore-space-change
c2545167
TB
1405 --ignore-all-space --ignore-blank-lines --exit-code
1406 --quiet --ext-diff --no-ext-diff
aba201c6 1407 --no-prefix --src-prefix= --dst-prefix=
6d0e674a 1408 --inter-hunk-context=
216120ab 1409 --patience --histogram --minimal
e6414b46 1410 --raw --word-diff --word-diff-regex=
8fd2cfa7
SB
1411 --dirstat --dirstat= --dirstat-by-file
1412 --dirstat-by-file= --cumulative
07924d4d 1413 --diff-algorithm=
ac76fd54 1414 --submodule --submodule=
20bf7292
TR
1415"
1416
1417_git_diff ()
1418{
1419 __git_has_doubledash && return
1420
20bf7292 1421 case "$cur" in
07924d4d
MP
1422 --diff-algorithm=*)
1423 __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}"
1424 return
1425 ;;
ac76fd54
JK
1426 --submodule=*)
1427 __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}"
1428 return
1429 ;;
20bf7292 1430 --*)
ebd15bf0 1431 __gitcomp "--cached --staged --pickaxe-all --pickaxe-regex
861514d3 1432 --base --ours --theirs --no-index
20bf7292 1433 $__git_diff_common_options
aba201c6 1434 "
b3a4f858
JS
1435 return
1436 ;;
1437 esac
1d66ec58 1438 __git_complete_revlist_file
690d8824
JH
1439}
1440
c5f424fd 1441__git_mergetools_common="diffuse diffmerge ecmerge emerge kdiff3 meld opendiff
f13f9b0e 1442 tkdiff vimdiff gvimdiff xxdiff araxis p4merge bc codecompare
e2dc2de9
DA
1443"
1444
1445_git_difftool ()
1446{
f7ad96cf
MH
1447 __git_has_doubledash && return
1448
e2dc2de9
DA
1449 case "$cur" in
1450 --tool=*)
1451 __gitcomp "$__git_mergetools_common kompare" "" "${cur##--tool=}"
1452 return
1453 ;;
1454 --*)
f7ad96cf
MH
1455 __gitcomp "--cached --staged --pickaxe-all --pickaxe-regex
1456 --base --ours --theirs
1457 --no-renames --diff-filter= --find-copies-harder
1458 --relative --ignore-submodules
1459 --tool="
e2dc2de9
DA
1460 return
1461 ;;
1462 esac
d8517cc6 1463 __git_complete_revlist_file
e2dc2de9
DA
1464}
1465
4dd5c470
SYS
1466__git_fetch_recurse_submodules="yes on-demand no"
1467
0a4e1472
JS
1468__git_fetch_options="
1469 --quiet --verbose --append --upload-pack --force --keep --depth=
4dd5c470 1470 --tags --no-tags --all --prune --dry-run --recurse-submodules=
f483a0aa 1471 --unshallow --update-shallow
0a4e1472
JS
1472"
1473
690d8824
JH
1474_git_fetch ()
1475{
0a4e1472 1476 case "$cur" in
4dd5c470
SYS
1477 --recurse-submodules=*)
1478 __gitcomp "$__git_fetch_recurse_submodules" "" "${cur##--recurse-submodules=}"
1479 return
1480 ;;
0a4e1472
JS
1481 --*)
1482 __gitcomp "$__git_fetch_options"
1483 return
1484 ;;
1485 esac
52d5c3b5 1486 __git_complete_remote_or_refspec
690d8824
JH
1487}
1488
2f65494d 1489__git_format_patch_options="
ea573521 1490 --stdout --attach --no-attach --thread --thread= --no-thread
2f65494d
FC
1491 --numbered --start-number --numbered-files --keep-subject --signoff
1492 --signature --no-signature --in-reply-to= --cc= --full-index --binary
1493 --not --all --cover-letter --no-prefix --src-prefix= --dst-prefix=
1494 --inline --suffix= --ignore-if-in-upstream --subject-prefix=
ea573521 1495 --output-directory --reroll-count --to= --quiet --notes
2f65494d
FC
1496"
1497
f53352fb
SP
1498_git_format_patch ()
1499{
f53352fb 1500 case "$cur" in
e1d37937
SB
1501 --thread=*)
1502 __gitcomp "
1503 deep shallow
1504 " "" "${cur##--thread=}"
1505 return
1506 ;;
f53352fb 1507 --*)
2f65494d 1508 __gitcomp "$__git_format_patch_options"
f53352fb
SP
1509 return
1510 ;;
1511 esac
1512 __git_complete_revlist
1513}
1514
4bca8636
AJ
1515_git_fsck ()
1516{
4bca8636
AJ
1517 case "$cur" in
1518 --*)
1519 __gitcomp "
1520 --tags --root --unreachable --cache --no-reflogs --full
f483a0aa 1521 --strict --verbose --lost-found --name-objects
4bca8636
AJ
1522 "
1523 return
1524 ;;
1525 esac
4bca8636
AJ
1526}
1527
b26c8748
SP
1528_git_gc ()
1529{
b26c8748
SP
1530 case "$cur" in
1531 --*)
47e98eec 1532 __gitcomp "--prune --aggressive"
b26c8748
SP
1533 return
1534 ;;
1535 esac
b26c8748
SP
1536}
1537
66729509
SG
1538_git_gitk ()
1539{
1540 _gitk
1541}
1542
7826a786
SG
1543# Lists matching symbol names from a tag (as in ctags) file.
1544# 1: List symbol names matching this word.
1545# 2: The tag file to list symbol names from.
1546# 3: A prefix to be added to each listed symbol name (optional).
1547# 4: A suffix to be appended to each listed symbol name (optional).
1548__git_match_ctag () {
1549 awk -v pfx="${3-}" -v sfx="${4-}" "
1550 /^${1//\//\\/}/ { print pfx \$1 sfx }
1551 " "$2"
29eec71f
JK
1552}
1553
2f779f91
SG
1554# Complete symbol names from a tag file.
1555# Usage: __git_complete_symbol [<option>]...
1556# --tags=<file>: The tag file to list symbol names from instead of the
1557# default "tags".
1558# --pfx=<prefix>: A prefix to be added to each symbol name.
1559# --cur=<word>: The current symbol name to be completed. Defaults to
1560# the current word to be completed.
1561# --sfx=<suffix>: A suffix to be appended to each symbol name instead
1562# of the default space.
1563__git_complete_symbol () {
1564 local tags=tags pfx="" cur_="${cur-}" sfx=" "
1565
1566 while test $# != 0; do
1567 case "$1" in
1568 --tags=*) tags="${1##--tags=}" ;;
1569 --pfx=*) pfx="${1##--pfx=}" ;;
1570 --cur=*) cur_="${1##--cur=}" ;;
1571 --sfx=*) sfx="${1##--sfx=}" ;;
1572 *) return 1 ;;
1573 esac
1574 shift
1575 done
1576
1577 if test -r "$tags"; then
1578 __gitcomp_direct "$(__git_match_ctag "$cur_" "$tags" "$pfx" "$sfx")"
1579 fi
29eec71f
JK
1580}
1581
c72e0db1
LM
1582_git_grep ()
1583{
1584 __git_has_doubledash && return
1585
c72e0db1
LM
1586 case "$cur" in
1587 --*)
1588 __gitcomp "
1589 --cached
1590 --text --ignore-case --word-regexp --invert-match
5a69eaf5 1591 --full-name --line-number
c72e0db1 1592 --extended-regexp --basic-regexp --fixed-strings
63e7e9d8 1593 --perl-regexp
89f09dd3 1594 --threads
c72e0db1
LM
1595 --files-with-matches --name-only
1596 --files-without-match
a91f453f 1597 --max-depth
c72e0db1
LM
1598 --count
1599 --and --or --not --all-match
f483a0aa
CW
1600 --break --heading --show-function --function-context
1601 --untracked --no-index
c72e0db1
LM
1602 "
1603 return
1604 ;;
1605 esac
17225c49 1606
29eec71f
JK
1607 case "$cword,$prev" in
1608 2,*|*,-*)
2f779f91 1609 __git_complete_symbol && return
29eec71f
JK
1610 ;;
1611 esac
1612
15b4a163 1613 __git_complete_refs
c72e0db1
LM
1614}
1615
1eb7e2f8
LM
1616_git_help ()
1617{
1eb7e2f8
LM
1618 case "$cur" in
1619 --*)
716b29db 1620 __gitcomp "--all --guides --info --man --web"
1eb7e2f8
LM
1621 return
1622 ;;
1623 esac
eaa4e6ee 1624 __git_compute_all_commands
f85a6f0b 1625 __gitcomp "$__git_all_commands $(__git_aliases)
2946cccf 1626 attributes cli core-tutorial cvs-migration
4d10b7e1
RT
1627 diffcore everyday gitk glossary hooks ignore modules
1628 namespaces repository-layout revisions tutorial tutorial-2
99f0b599 1629 workflows
2946cccf 1630 "
1eb7e2f8
LM
1631}
1632
5dad868b
LM
1633_git_init ()
1634{
5dad868b
LM
1635 case "$cur" in
1636 --shared=*)
1637 __gitcomp "
1638 false true umask group all world everybody
1639 " "" "${cur##--shared=}"
1640 return
1641 ;;
1642 --*)
1643 __gitcomp "--quiet --bare --template= --shared --shared="
1644 return
1645 ;;
1646 esac
5dad868b
LM
1647}
1648
b1bc1494
LM
1649_git_ls_files ()
1650{
b1bc1494
LM
1651 case "$cur" in
1652 --*)
1653 __gitcomp "--cached --deleted --modified --others --ignored
1654 --stage --directory --no-empty-directory --unmerged
1655 --killed --exclude= --exclude-from=
1656 --exclude-per-directory= --exclude-standard
1657 --error-unmatch --with-tree= --full-name
1658 --abbrev --ignored --exclude-per-directory
1659 "
1660 return
1661 ;;
1662 esac
fea16b47
MP
1663
1664 # XXX ignore options like --modified and always suggest all cached
1665 # files.
1666 __git_complete_index_file "--cached"
b1bc1494
LM
1667}
1668
690d8824
JH
1669_git_ls_remote ()
1670{
2c0f3a53
CW
1671 case "$cur" in
1672 --*)
1673 __gitcomp "--heads --tags --refs --get-url --symref"
1674 return
1675 ;;
1676 esac
a31e6262 1677 __gitcomp_nl "$(__git_remotes)"
690d8824
JH
1678}
1679
1680_git_ls_tree ()
1681{
1682 __git_complete_file
1683}
1684
a393777e
TR
1685# Options that go well for log, shortlog and gitk
1686__git_log_common_options="
1687 --not --all
1688 --branches --tags --remotes
4fe1a619 1689 --first-parent --merges --no-merges
a393777e
TR
1690 --max-count=
1691 --max-age= --since= --after=
1692 --min-age= --until= --before=
6a6ebded
MG
1693 --min-parents= --max-parents=
1694 --no-min-parents --no-max-parents
a393777e
TR
1695"
1696# Options that go well for log and gitk (not shortlog)
1697__git_log_gitk_options="
1698 --dense --sparse --full-history
1699 --simplify-merges --simplify-by-decoration
3925b575 1700 --left-right --notes --no-notes
a393777e
TR
1701"
1702# Options that go well for log and shortlog (not gitk)
1703__git_log_shortlog_options="
1704 --author= --committer= --grep=
22dfa8a2 1705 --all-match --invert-grep
a393777e
TR
1706"
1707
3d279863 1708__git_log_pretty_formats="oneline short medium full fuller email raw format:"
672c68cb 1709__git_log_date_formats="relative iso8601 rfc2822 short local default raw"
3d279863 1710
690d8824
JH
1711_git_log ()
1712{
d773c631 1713 __git_has_doubledash && return
fad9484f 1714 __git_find_repo_path
d773c631 1715
bf3c20f6 1716 local merge=""
fad9484f 1717 if [ -f "$__git_repo_path/MERGE_HEAD" ]; then
bf3c20f6
TR
1718 merge="--merge"
1719 fi
41d2716c
SG
1720 case "$prev,$cur" in
1721 -L,:*:*)
1722 return # fall back to Bash filename completion
1723 ;;
1724 -L,:*)
1725 __git_complete_symbol --cur="${cur#:}" --sfx=":"
1726 return
1727 ;;
1728 -G,*|-S,*)
1729 __git_complete_symbol
1730 return
1731 ;;
1732 esac
6e31b866 1733 case "$cur" in
e67d71e5 1734 --pretty=*|--format=*)
c3898111 1735 __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
e67d71e5 1736 " "" "${cur#*=}"
72de29c2
TL
1737 return
1738 ;;
47e98eec 1739 --date=*)
672c68cb 1740 __gitcomp "$__git_log_date_formats" "" "${cur##--date=}"
47e98eec
SP
1741 return
1742 ;;
af4e9e8c 1743 --decorate=*)
af16bdaa 1744 __gitcomp "full short no" "" "${cur##--decorate=}"
af4e9e8c
SB
1745 return
1746 ;;
ac76fd54
JK
1747 --diff-algorithm=*)
1748 __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}"
1749 return
1750 ;;
1751 --submodule=*)
1752 __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}"
1753 return
1754 ;;
6e31b866 1755 --*)
b3391775 1756 __gitcomp "
a393777e
TR
1757 $__git_log_common_options
1758 $__git_log_shortlog_options
1759 $__git_log_gitk_options
8f87fae6 1760 --root --topo-order --date-order --reverse
5d0e6343 1761 --follow --full-diff
6e31b866 1762 --abbrev-commit --abbrev=
47e98eec 1763 --relative-date --date=
72de29c2 1764 --pretty= --format= --oneline
2ca0b197 1765 --show-signature
d3bfbf91 1766 --cherry-mark
a393777e 1767 --cherry-pick
20827d99 1768 --graph
af4e9e8c 1769 --decorate --decorate=
20bf7292 1770 --walk-reflogs
a393777e 1771 --parents --children
bf3c20f6 1772 $merge
20bf7292 1773 $__git_diff_common_options
47d5a8fa 1774 --pickaxe-all --pickaxe-regex
b3391775 1775 "
6e31b866
SP
1776 return
1777 ;;
41d2716c
SG
1778 -L:*:*)
1779 return # fall back to Bash filename completion
1780 ;;
1781 -L:*)
1782 __git_complete_symbol --cur="${cur#-L:}" --sfx=":"
1783 return
1784 ;;
1785 -G*)
1786 __git_complete_symbol --pfx="-G" --cur="${cur#-G}"
1787 return
1788 ;;
1789 -S*)
1790 __git_complete_symbol --pfx="-S" --cur="${cur#-S}"
1791 return
1792 ;;
6e31b866 1793 esac
f53352fb 1794 __git_complete_revlist
690d8824
JH
1795}
1796
6d2b06f0 1797# Common merge options shared by git-merge(1) and git-pull(1).
0a4e1472
JS
1798__git_merge_options="
1799 --no-commit --no-stat --log --no-log --squash --strategy
2ff14e31 1800 --commit --stat --no-squash --ff --no-ff --ff-only --edit --no-edit
8fee8726
JK
1801 --verify-signatures --no-verify-signatures --gpg-sign
1802 --quiet --verbose --progress --no-progress
0a4e1472
JS
1803"
1804
4ad91321
SP
1805_git_merge ()
1806{
3c7b480a
JS
1807 __git_complete_strategy && return
1808
4ad91321
SP
1809 case "$cur" in
1810 --*)
8fee8726 1811 __gitcomp "$__git_merge_options
c261a87e 1812 --rerere-autoupdate --no-rerere-autoupdate --abort --continue"
4ad91321
SP
1813 return
1814 esac
15b4a163 1815 __git_complete_refs
4ad91321
SP
1816}
1817
b4c72162
LM
1818_git_mergetool ()
1819{
b4c72162
LM
1820 case "$cur" in
1821 --tool=*)
e2dc2de9 1822 __gitcomp "$__git_mergetools_common tortoisemerge" "" "${cur##--tool=}"
b4c72162
LM
1823 return
1824 ;;
1825 --*)
f483a0aa 1826 __gitcomp "--tool= --prompt --no-prompt"
b4c72162
LM
1827 return
1828 ;;
1829 esac
b4c72162
LM
1830}
1831
690d8824
JH
1832_git_merge_base ()
1833{
85453fd1
JK
1834 case "$cur" in
1835 --*)
1836 __gitcomp "--octopus --independent --is-ancestor --fork-point"
1837 return
1838 ;;
1839 esac
15b4a163 1840 __git_complete_refs
690d8824
JH
1841}
1842
1127c51c
LM
1843_git_mv ()
1844{
1127c51c
LM
1845 case "$cur" in
1846 --*)
1847 __gitcomp "--dry-run"
1848 return
1849 ;;
1850 esac
fea16b47
MP
1851
1852 if [ $(__git_count_arguments "mv") -gt 0 ]; then
1853 # We need to show both cached and untracked files (including
1854 # empty directories) since this may not be the last argument.
1855 __git_complete_index_file "--cached --others --directory"
1856 else
1857 __git_complete_index_file "--cached"
1858 fi
1127c51c
LM
1859}
1860
d33909bf
SP
1861_git_name_rev ()
1862{
b3391775 1863 __gitcomp "--tags --all --stdin"
d33909bf
SP
1864}
1865
00f09d0e
SG
1866_git_notes ()
1867{
2a5da755
SG
1868 local subcommands='add append copy edit list prune remove show'
1869 local subcommand="$(__git_find_on_cmdline "$subcommands")"
00f09d0e 1870
2a5da755
SG
1871 case "$subcommand,$cur" in
1872 ,--*)
1873 __gitcomp '--ref'
1874 ;;
1875 ,*)
39540681 1876 case "$prev" in
2a5da755 1877 --ref)
15b4a163 1878 __git_complete_refs
2a5da755
SG
1879 ;;
1880 *)
1881 __gitcomp "$subcommands --ref"
1882 ;;
1883 esac
1884 ;;
a8f89bfa 1885 add,--reuse-message=*|append,--reuse-message=*|\
2a5da755 1886 add,--reedit-message=*|append,--reedit-message=*)
15b4a163 1887 __git_complete_refs --cur="${cur#*=}"
2a5da755
SG
1888 ;;
1889 add,--*|append,--*)
1890 __gitcomp '--file= --message= --reedit-message=
1891 --reuse-message='
1892 ;;
1893 copy,--*)
1894 __gitcomp '--stdin'
1895 ;;
1896 prune,--*)
1897 __gitcomp '--dry-run --verbose'
1898 ;;
1899 prune,*)
00f09d0e
SG
1900 ;;
1901 *)
39540681 1902 case "$prev" in
2a5da755
SG
1903 -m|-F)
1904 ;;
1905 *)
15b4a163 1906 __git_complete_refs
2a5da755
SG
1907 ;;
1908 esac
00f09d0e
SG
1909 ;;
1910 esac
1911}
1912
690d8824
JH
1913_git_pull ()
1914{
0a4e1472
JS
1915 __git_complete_strategy && return
1916
0a4e1472 1917 case "$cur" in
4dd5c470
SYS
1918 --recurse-submodules=*)
1919 __gitcomp "$__git_fetch_recurse_submodules" "" "${cur##--recurse-submodules=}"
1920 return
1921 ;;
0a4e1472
JS
1922 --*)
1923 __gitcomp "
1924 --rebase --no-rebase
1925 $__git_merge_options
1926 $__git_fetch_options
1927 "
1928 return
1929 ;;
1930 esac
52d5c3b5 1931 __git_complete_remote_or_refspec
690d8824
JH
1932}
1933
446624ce 1934__git_push_recurse_submodules="check on-demand only"
4dd5c470 1935
aaf7253f
JK
1936__git_complete_force_with_lease ()
1937{
1938 local cur_=$1
1939
1940 case "$cur_" in
1941 --*=)
1942 ;;
1943 *:*)
15b4a163 1944 __git_complete_refs --cur="${cur_#*:}"
aaf7253f
JK
1945 ;;
1946 *)
15b4a163 1947 __git_complete_refs --cur="$cur_"
aaf7253f
JK
1948 ;;
1949 esac
1950}
1951
690d8824
JH
1952_git_push ()
1953{
da48616f 1954 case "$prev" in
0a4e1472 1955 --repo)
a31e6262 1956 __gitcomp_nl "$(__git_remotes)"
0a4e1472 1957 return
3a224ff2
JK
1958 ;;
1959 --recurse-submodules)
1960 __gitcomp "$__git_push_recurse_submodules"
1961 return
1962 ;;
0a4e1472
JS
1963 esac
1964 case "$cur" in
1965 --repo=*)
a31e6262 1966 __gitcomp_nl "$(__git_remotes)" "" "${cur##--repo=}"
0a4e1472
JS
1967 return
1968 ;;
4dd5c470
SYS
1969 --recurse-submodules=*)
1970 __gitcomp "$__git_push_recurse_submodules" "" "${cur##--recurse-submodules=}"
1971 return
1972 ;;
aaf7253f
JK
1973 --force-with-lease=*)
1974 __git_complete_force_with_lease "${cur##--force-with-lease=}"
1975 return
1976 ;;
0a4e1472
JS
1977 --*)
1978 __gitcomp "
1979 --all --mirror --tags --dry-run --force --verbose
9e8a6a94 1980 --quiet --prune --delete --follow-tags
3623dc03 1981 --receive-pack= --repo= --set-upstream
aaf7253f 1982 --force-with-lease --force-with-lease= --recurse-submodules=
0a4e1472
JS
1983 "
1984 return
1985 ;;
1986 esac
52d5c3b5 1987 __git_complete_remote_or_refspec
690d8824
JH
1988}
1989
61d926a3
SP
1990_git_rebase ()
1991{
fad9484f
SG
1992 __git_find_repo_path
1993 if [ -f "$__git_repo_path"/rebase-merge/interactive ]; then
9512177b 1994 __gitcomp "--continue --skip --abort --quit --edit-todo"
09bb6520 1995 return
fad9484f
SG
1996 elif [ -d "$__git_repo_path"/rebase-apply ] || \
1997 [ -d "$__git_repo_path"/rebase-merge ]; then
9512177b 1998 __gitcomp "--continue --skip --abort --quit"
61d926a3
SP
1999 return
2000 fi
3c7b480a 2001 __git_complete_strategy && return
61d926a3 2002 case "$cur" in
93cf50a4
BG
2003 --whitespace=*)
2004 __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
2005 return
2006 ;;
61d926a3 2007 --*)
93cf50a4
BG
2008 __gitcomp "
2009 --onto --merge --strategy --interactive
2010 --preserve-merges --stat --no-stat
2011 --committer-date-is-author-date --ignore-date
2012 --ignore-whitespace --whitespace=
fa4b5e3a
JK
2013 --autosquash --no-autosquash
2014 --fork-point --no-fork-point
2015 --autostash --no-autostash
2016 --verify --no-verify
2017 --keep-empty --root --force-rebase --no-ff
2018 --exec
93cf50a4
BG
2019 "
2020
61d926a3
SP
2021 return
2022 esac
15b4a163 2023 __git_complete_refs
61d926a3
SP
2024}
2025
057f3279
TRC
2026_git_reflog ()
2027{
2028 local subcommands="show delete expire"
2029 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2030
2031 if [ -z "$subcommand" ]; then
2032 __gitcomp "$subcommands"
2033 else
15b4a163 2034 __git_complete_refs
057f3279
TRC
2035 fi
2036}
2037
ae616de6 2038__git_send_email_confirm_options="always never auto cc compose"
cb8a9bd5 2039__git_send_email_suppresscc_options="author self cc bodycc sob cccmd body all"
ae616de6 2040
25a1f374
TL
2041_git_send_email ()
2042{
dfbe5eeb
JK
2043 case "$prev" in
2044 --to|--cc|--bcc|--from)
e15098a3 2045 __gitcomp "$(__git send-email --dump-aliases)"
dfbe5eeb
JK
2046 return
2047 ;;
2048 esac
2049
25a1f374 2050 case "$cur" in
ae616de6
SB
2051 --confirm=*)
2052 __gitcomp "
2053 $__git_send_email_confirm_options
2054 " "" "${cur##--confirm=}"
2055 return
2056 ;;
2057 --suppress-cc=*)
2058 __gitcomp "
2059 $__git_send_email_suppresscc_options
2060 " "" "${cur##--suppress-cc=}"
2061
2062 return
2063 ;;
2064 --smtp-encryption=*)
2065 __gitcomp "ssl tls" "" "${cur##--smtp-encryption=}"
2066 return
2067 ;;
2f65494d
FC
2068 --thread=*)
2069 __gitcomp "
2070 deep shallow
2071 " "" "${cur##--thread=}"
2072 return
2073 ;;
dfbe5eeb 2074 --to=*|--cc=*|--bcc=*|--from=*)
e15098a3 2075 __gitcomp "$(__git send-email --dump-aliases)" "" "${cur#--*=}"
dfbe5eeb
JK
2076 return
2077 ;;
25a1f374 2078 --*)
77813151 2079 __gitcomp "--annotate --bcc --cc --cc-cmd --chain-reply-to
ae616de6
SB
2080 --compose --confirm= --dry-run --envelope-sender
2081 --from --identity
25a1f374
TL
2082 --in-reply-to --no-chain-reply-to --no-signed-off-by-cc
2083 --no-suppress-from --no-thread --quiet
2084 --signed-off-by-cc --smtp-pass --smtp-server
ae616de6
SB
2085 --smtp-server-port --smtp-encryption= --smtp-user
2086 --subject --suppress-cc= --suppress-from --thread --to
2f65494d
FC
2087 --validate --no-validate
2088 $__git_format_patch_options"
25a1f374
TL
2089 return
2090 ;;
2091 esac
2f65494d 2092 __git_complete_revlist
25a1f374
TL
2093}
2094
424cce83
SG
2095_git_stage ()
2096{
2097 _git_add
2098}
2099
634d2344
TB
2100_git_status ()
2101{
2102 local complete_opt
2103 local untracked_state
2104
2105 case "$cur" in
2106 --ignore-submodules=*)
2107 __gitcomp "none untracked dirty all" "" "${cur##--ignore-submodules=}"
2108 return
2109 ;;
2110 --untracked-files=*)
2111 __gitcomp "$__git_untracked_file_modes" "" "${cur##--untracked-files=}"
2112 return
2113 ;;
2114 --column=*)
2115 __gitcomp "
2116 always never auto column row plain dense nodense
2117 " "" "${cur##--column=}"
2118 return
2119 ;;
2120 --*)
2121 __gitcomp "
2122 --short --branch --porcelain --long --verbose
2123 --untracked-files= --ignore-submodules= --ignored
2124 --column= --no-column
2125 "
2126 return
2127 ;;
2128 esac
2129
2130 untracked_state="$(__git_get_option_value "-u" "--untracked-files=" \
2131 "$__git_untracked_file_modes" "status.showUntrackedFiles")"
2132
2133 case "$untracked_state" in
2134 no)
2135 # --ignored option does not matter
2136 complete_opt=
2137 ;;
2138 all|normal|*)
2139 complete_opt="--cached --directory --no-empty-directory --others"
2140
2141 if [ -n "$(__git_find_on_cmdline "--ignored")" ]; then
2142 complete_opt="$complete_opt --ignored --exclude=*"
2143 fi
2144 ;;
2145 esac
2146
2147 __git_complete_index_file "$complete_opt"
2148}
2149
00652369
SB
2150__git_config_get_set_variables ()
2151{
da48616f 2152 local prevword word config_file= c=$cword
00652369 2153 while [ $c -gt 1 ]; do
da48616f 2154 word="${words[c]}"
00652369 2155 case "$word" in
66c0786c 2156 --system|--global|--local|--file=*)
00652369
SB
2157 config_file="$word"
2158 break
2159 ;;
2160 -f|--file)
2161 config_file="$word $prevword"
2162 break
2163 ;;
2164 esac
2165 prevword=$word
2166 c=$((--c))
2167 done
2168
e15098a3 2169 __git config $config_file --name-only --list
00652369
SB
2170}
2171
e0d10e1c 2172_git_config ()
5de40f59 2173{
da48616f 2174 case "$prev" in
72f75077 2175 branch.*.remote|branch.*.pushremote)
a31e6262 2176 __gitcomp_nl "$(__git_remotes)"
5de40f59
SP
2177 return
2178 ;;
2179 branch.*.merge)
15b4a163 2180 __git_complete_refs
5de40f59
SP
2181 return
2182 ;;
a05490ed 2183 branch.*.rebase)
17c4ddbb 2184 __gitcomp "false true preserve interactive"
a05490ed
RR
2185 return
2186 ;;
7e6a0cc4
RR
2187 remote.pushdefault)
2188 __gitcomp_nl "$(__git_remotes)"
2189 return
2190 ;;
5de40f59 2191 remote.*.fetch)
da48616f 2192 local remote="${prev#remote.}"
5de40f59 2193 remote="${remote%.fetch}"
d51a8ecd 2194 if [ -z "$cur" ]; then
73704451 2195 __gitcomp_nl "refs/heads/" "" "" ""
d51a8ecd
SG
2196 return
2197 fi
a31e6262 2198 __gitcomp_nl "$(__git_refs_remotes "$remote")"
5de40f59
SP
2199 return
2200 ;;
2201 remote.*.push)
da48616f 2202 local remote="${prev#remote.}"
5de40f59 2203 remote="${remote%.push}"
3ba04201 2204 __gitcomp_nl "$(__git for-each-ref \
1cd23e9e 2205 --format='%(refname):%(refname)' refs/heads)"
78d4d6a2
SP
2206 return
2207 ;;
2208 pull.twohead|pull.octopus)
eaa4e6ee
JN
2209 __git_compute_merge_strategies
2210 __gitcomp "$__git_merge_strategies"
78d4d6a2
SP
2211 return
2212 ;;
6123d719
MH
2213 color.branch|color.diff|color.interactive|\
2214 color.showbranch|color.status|color.ui)
78d4d6a2
SP
2215 __gitcomp "always never auto"
2216 return
2217 ;;
901d615c
MK
2218 color.pager)
2219 __gitcomp "false true"
2220 return
2221 ;;
78d4d6a2
SP
2222 color.*.*)
2223 __gitcomp "
98171a07 2224 normal black red green yellow blue magenta cyan white
78d4d6a2
SP
2225 bold dim ul blink reverse
2226 "
5de40f59
SP
2227 return
2228 ;;
2651baae
RR
2229 diff.submodule)
2230 __gitcomp "log short"
2231 return
2232 ;;
9b82d63b
SB
2233 help.format)
2234 __gitcomp "man info web html"
2235 return
2236 ;;
672c68cb
SB
2237 log.date)
2238 __gitcomp "$__git_log_date_formats"
2239 return
2240 ;;
ae616de6
SB
2241 sendemail.aliasesfiletype)
2242 __gitcomp "mutt mailrc pine elm gnus"
2243 return
2244 ;;
2245 sendemail.confirm)
2246 __gitcomp "$__git_send_email_confirm_options"
2247 return
2248 ;;
2249 sendemail.suppresscc)
2250 __gitcomp "$__git_send_email_suppresscc_options"
2251 return
2252 ;;
8d814084
PB
2253 sendemail.transferencoding)
2254 __gitcomp "7bit 8bit quoted-printable base64"
2255 return
2256 ;;
00652369 2257 --get|--get-all|--unset|--unset-all)
a31e6262 2258 __gitcomp_nl "$(__git_config_get_set_variables)"
00652369
SB
2259 return
2260 ;;
5de40f59 2261 *.*)
5de40f59
SP
2262 return
2263 ;;
2264 esac
2265 case "$cur" in
2266 --*)
78d4d6a2 2267 __gitcomp "
66c0786c 2268 --system --global --local --file=
12977705 2269 --list --replace-all
5de40f59 2270 --get --get-all --get-regexp
1b71eb35 2271 --add --unset --unset-all
12977705 2272 --remove-section --rename-section
578625fa 2273 --name-only
78d4d6a2 2274 "
5de40f59
SP
2275 return
2276 ;;
2277 branch.*.*)
9244d69b 2278 local pfx="${cur%.*}." cur_="${cur##*.}"
72f75077 2279 __gitcomp "remote pushremote merge mergeoptions rebase" "$pfx" "$cur_"
5de40f59
SP
2280 return
2281 ;;
2282 branch.*)
9244d69b 2283 local pfx="${cur%.*}." cur_="${cur#*.}"
227307a6 2284 __gitcomp_direct "$(__git_heads "$pfx" "$cur_" ".")"
422553df 2285 __gitcomp_nl_append $'autosetupmerge\nautosetuprebase\n' "$pfx" "$cur_"
5de40f59
SP
2286 return
2287 ;;
0aa62fd0 2288 guitool.*.*)
9244d69b 2289 local pfx="${cur%.*}." cur_="${cur##*.}"
0aa62fd0
SB
2290 __gitcomp "
2291 argprompt cmd confirm needsfile noconsole norescan
2292 prompt revprompt revunmerged title
9244d69b 2293 " "$pfx" "$cur_"
0aa62fd0
SB
2294 return
2295 ;;
2296 difftool.*.*)
9244d69b
SG
2297 local pfx="${cur%.*}." cur_="${cur##*.}"
2298 __gitcomp "cmd path" "$pfx" "$cur_"
0aa62fd0
SB
2299 return
2300 ;;
2301 man.*.*)
9244d69b
SG
2302 local pfx="${cur%.*}." cur_="${cur##*.}"
2303 __gitcomp "cmd path" "$pfx" "$cur_"
0aa62fd0
SB
2304 return
2305 ;;
2306 mergetool.*.*)
9244d69b
SG
2307 local pfx="${cur%.*}." cur_="${cur##*.}"
2308 __gitcomp "cmd path trustExitCode" "$pfx" "$cur_"
0aa62fd0
SB
2309 return
2310 ;;
2311 pager.*)
9244d69b 2312 local pfx="${cur%.*}." cur_="${cur#*.}"
eaa4e6ee 2313 __git_compute_all_commands
a31e6262 2314 __gitcomp_nl "$__git_all_commands" "$pfx" "$cur_"
0aa62fd0
SB
2315 return
2316 ;;
5de40f59 2317 remote.*.*)
9244d69b 2318 local pfx="${cur%.*}." cur_="${cur##*.}"
12977705 2319 __gitcomp "
98171a07 2320 url proxy fetch push mirror skipDefaultUpdate
6fac1b83 2321 receivepack uploadpack tagopt pushurl
9244d69b 2322 " "$pfx" "$cur_"
5de40f59
SP
2323 return
2324 ;;
2325 remote.*)
9244d69b 2326 local pfx="${cur%.*}." cur_="${cur#*.}"
a31e6262 2327 __gitcomp_nl "$(__git_remotes)" "$pfx" "$cur_" "."
c39a2f11 2328 __gitcomp_nl_append "pushdefault" "$pfx" "$cur_"
5de40f59
SP
2329 return
2330 ;;
0aa62fd0 2331 url.*.*)
9244d69b
SG
2332 local pfx="${cur%.*}." cur_="${cur##*.}"
2333 __gitcomp "insteadOf pushInsteadOf" "$pfx" "$cur_"
0aa62fd0
SB
2334 return
2335 ;;
5de40f59 2336 esac
78d4d6a2 2337 __gitcomp "
6068ac88 2338 add.ignoreErrors
fd1552d5 2339 advice.amWorkDir
6068ac88
MZ
2340 advice.commitBeforeMerge
2341 advice.detachedHead
2342 advice.implicitIdentity
fd1552d5
RF
2343 advice.pushAlreadyExists
2344 advice.pushFetchFirst
2345 advice.pushNeedsForce
2346 advice.pushNonFFCurrent
2347 advice.pushNonFFMatching
2348 advice.pushUpdateRejected
6068ac88 2349 advice.resolveConflict
fd1552d5 2350 advice.rmHints
6068ac88 2351 advice.statusHints
fd1552d5 2352 advice.statusUoption
226b343c 2353 alias.
6068ac88 2354 am.keepcr
e8dec567 2355 am.threeWay
86c91f91 2356 apply.ignorewhitespace
5de40f59 2357 apply.whitespace
98171a07
LM
2358 branch.autosetupmerge
2359 branch.autosetuprebase
6068ac88 2360 browser.
2122591b 2361 clean.requireForce
78d4d6a2
SP
2362 color.branch
2363 color.branch.current
2364 color.branch.local
78d4d6a2 2365 color.branch.plain
025a1929 2366 color.branch.remote
6068ac88
MZ
2367 color.decorate.HEAD
2368 color.decorate.branch
2369 color.decorate.remoteBranch
2370 color.decorate.stash
2371 color.decorate.tag
a159ca0c 2372 color.diff
025a1929 2373 color.diff.commit
78d4d6a2 2374 color.diff.frag
6068ac88 2375 color.diff.func
025a1929 2376 color.diff.meta
78d4d6a2 2377 color.diff.new
025a1929
LM
2378 color.diff.old
2379 color.diff.plain
78d4d6a2 2380 color.diff.whitespace
226b343c 2381 color.grep
6068ac88
MZ
2382 color.grep.context
2383 color.grep.filename
2384 color.grep.function
2385 color.grep.linenumber
226b343c 2386 color.grep.match
6068ac88
MZ
2387 color.grep.selected
2388 color.grep.separator
98171a07 2389 color.interactive
6068ac88 2390 color.interactive.error
98171a07
LM
2391 color.interactive.header
2392 color.interactive.help
2393 color.interactive.prompt
a159ca0c 2394 color.pager
6123d719 2395 color.showbranch
a159ca0c 2396 color.status
78d4d6a2
SP
2397 color.status.added
2398 color.status.changed
025a1929 2399 color.status.header
93fdf301 2400 color.status.localBranch
98171a07 2401 color.status.nobranch
93fdf301 2402 color.status.remoteBranch
0d6accc0 2403 color.status.unmerged
78d4d6a2 2404 color.status.untracked
98171a07
LM
2405 color.status.updated
2406 color.ui
9ee4aa95
RF
2407 commit.cleanup
2408 commit.gpgSign
6068ac88 2409 commit.status
98171a07 2410 commit.template
9ee4aa95 2411 commit.verbose
cdb791f6 2412 core.abbrev
6068ac88
MZ
2413 core.askpass
2414 core.attributesfile
98171a07
LM
2415 core.autocrlf
2416 core.bare
6068ac88 2417 core.bigFileThreshold
f254eab2
RF
2418 core.checkStat
2419 core.commentChar
025a1929 2420 core.compression
226b343c 2421 core.createObject
98171a07
LM
2422 core.deltaBaseCacheLimit
2423 core.editor
6068ac88 2424 core.eol
98171a07 2425 core.excludesfile
025a1929 2426 core.fileMode
98171a07 2427 core.fsyncobjectfiles
025a1929 2428 core.gitProxy
f254eab2
RF
2429 core.hideDotFiles
2430 core.hooksPath
025a1929 2431 core.ignoreStat
6068ac88 2432 core.ignorecase
025a1929
LM
2433 core.logAllRefUpdates
2434 core.loosecompression
6068ac88 2435 core.notesRef
025a1929
LM
2436 core.packedGitLimit
2437 core.packedGitWindowSize
f254eab2 2438 core.packedRefsTimeout
98171a07 2439 core.pager
f254eab2 2440 core.precomposeUnicode
025a1929 2441 core.preferSymlinkRefs
98171a07 2442 core.preloadindex
f254eab2
RF
2443 core.protectHFS
2444 core.protectNTFS
98171a07 2445 core.quotepath
025a1929 2446 core.repositoryFormatVersion
98171a07 2447 core.safecrlf
025a1929 2448 core.sharedRepository
6068ac88 2449 core.sparseCheckout
f254eab2
RF
2450 core.splitIndex
2451 core.sshCommand
98171a07
LM
2452 core.symlinks
2453 core.trustctime
435ec090 2454 core.untrackedCache
025a1929 2455 core.warnAmbiguousRefs
98171a07
LM
2456 core.whitespace
2457 core.worktree
6ecef737
RF
2458 credential.helper
2459 credential.useHttpPath
2460 credential.username
d78d237b 2461 credentialCache.ignoreSIGHUP
98171a07
LM
2462 diff.autorefreshindex
2463 diff.external
6068ac88 2464 diff.ignoreSubmodules
98171a07 2465 diff.mnemonicprefix
6068ac88 2466 diff.noprefix
78d4d6a2
SP
2467 diff.renameLimit
2468 diff.renames
de7c201a 2469 diff.statGraphWidth
2651baae 2470 diff.submodule
226b343c
SB
2471 diff.suppressBlankEmpty
2472 diff.tool
2473 diff.wordRegex
07ab4dec 2474 diff.algorithm
0aa62fd0 2475 difftool.
226b343c 2476 difftool.prompt
6068ac88 2477 fetch.recurseSubmodules
78d4d6a2 2478 fetch.unpackLimit
226b343c
SB
2479 format.attach
2480 format.cc
de06c13a 2481 format.coverLetter
6bc6b6c0 2482 format.from
78d4d6a2 2483 format.headers
98171a07
LM
2484 format.numbered
2485 format.pretty
d8e1e5df 2486 format.signature
226b343c
SB
2487 format.signoff
2488 format.subjectprefix
98171a07 2489 format.suffix
226b343c 2490 format.thread
6068ac88
MZ
2491 format.to
2492 gc.
19428042 2493 gc.aggressiveDepth
98171a07
LM
2494 gc.aggressiveWindow
2495 gc.auto
19428042 2496 gc.autoDetach
98171a07 2497 gc.autopacklimit
19428042 2498 gc.logExpiry
12977705 2499 gc.packrefs
98171a07 2500 gc.pruneexpire
78d4d6a2
SP
2501 gc.reflogexpire
2502 gc.reflogexpireunreachable
2503 gc.rerereresolved
2504 gc.rerereunresolved
19428042 2505 gc.worktreePruneExpire
025a1929 2506 gitcvs.allbinary
226b343c 2507 gitcvs.commitmsgannotation
98171a07 2508 gitcvs.dbTableNamePrefix
025a1929
LM
2509 gitcvs.dbdriver
2510 gitcvs.dbname
2511 gitcvs.dbpass
025a1929
LM
2512 gitcvs.dbuser
2513 gitcvs.enabled
2514 gitcvs.logfile
98171a07 2515 gitcvs.usecrlfattr
0aa62fd0 2516 guitool.
98171a07
LM
2517 gui.blamehistoryctx
2518 gui.commitmsgwidth
2519 gui.copyblamethreshold
2520 gui.diffcontext
2521 gui.encoding
2522 gui.fastcopyblame
2523 gui.matchtrackingbranch
2524 gui.newbranchtemplate
2525 gui.pruneduringfetch
2526 gui.spellingdictionary
2527 gui.trustmtime
2528 help.autocorrect
2529 help.browser
2530 help.format
78d4d6a2
SP
2531 http.lowSpeedLimit
2532 http.lowSpeedTime
025a1929 2533 http.maxRequests
6068ac88 2534 http.minSessions
5de40f59 2535 http.noEPSV
6068ac88 2536 http.postBuffer
98171a07 2537 http.proxy
f6f2a9e4 2538 http.sslCipherList
01861cb7 2539 http.sslVersion
025a1929
LM
2540 http.sslCAInfo
2541 http.sslCAPath
2542 http.sslCert
6068ac88 2543 http.sslCertPasswordProtected
025a1929
LM
2544 http.sslKey
2545 http.sslVerify
6068ac88 2546 http.useragent
78d4d6a2
SP
2547 i18n.commitEncoding
2548 i18n.logOutputEncoding
6068ac88 2549 imap.authMethod
226b343c
SB
2550 imap.folder
2551 imap.host
2552 imap.pass
2553 imap.port
2554 imap.preformattedHTML
2555 imap.sslverify
2556 imap.tunnel
2557 imap.user
6068ac88 2558 init.templatedir
98171a07
LM
2559 instaweb.browser
2560 instaweb.httpd
2561 instaweb.local
2562 instaweb.modulepath
2563 instaweb.port
226b343c 2564 interactive.singlekey
98171a07 2565 log.date
6068ac88 2566 log.decorate
78d4d6a2 2567 log.showroot
226b343c 2568 mailmap.file
0aa62fd0 2569 man.
98171a07 2570 man.viewer
6068ac88 2571 merge.
98171a07
LM
2572 merge.conflictstyle
2573 merge.log
2574 merge.renameLimit
6068ac88 2575 merge.renormalize
98171a07 2576 merge.stat
025a1929 2577 merge.tool
78d4d6a2 2578 merge.verbosity
0aa62fd0 2579 mergetool.
98171a07 2580 mergetool.keepBackup
6068ac88 2581 mergetool.keepTemporaries
226b343c 2582 mergetool.prompt
6068ac88
MZ
2583 notes.displayRef
2584 notes.rewrite.
2585 notes.rewrite.amend
2586 notes.rewrite.rebase
2587 notes.rewriteMode
2588 notes.rewriteRef
47e98eec 2589 pack.compression
47e98eec 2590 pack.deltaCacheLimit
025a1929
LM
2591 pack.deltaCacheSize
2592 pack.depth
98171a07
LM
2593 pack.indexVersion
2594 pack.packSizeLimit
2595 pack.threads
025a1929
LM
2596 pack.window
2597 pack.windowMemory
0aa62fd0 2598 pager.
6068ac88 2599 pretty.
78d4d6a2
SP
2600 pull.octopus
2601 pull.twohead
226b343c 2602 push.default
a8bc269f 2603 push.followTags
6068ac88 2604 rebase.autosquash
226b343c 2605 rebase.stat
6068ac88 2606 receive.autogc
98171a07 2607 receive.denyCurrentBranch
6068ac88 2608 receive.denyDeleteCurrent
98171a07 2609 receive.denyDeletes
025a1929 2610 receive.denyNonFastForwards
98171a07 2611 receive.fsckObjects
025a1929 2612 receive.unpackLimit
6068ac88 2613 receive.updateserverinfo
7e6a0cc4 2614 remote.pushdefault
6068ac88 2615 remotes.
98171a07
LM
2616 repack.usedeltabaseoffset
2617 rerere.autoupdate
2618 rerere.enabled
6068ac88 2619 sendemail.
226b343c 2620 sendemail.aliasesfile
6068ac88 2621 sendemail.aliasfiletype
226b343c
SB
2622 sendemail.bcc
2623 sendemail.cc
2624 sendemail.cccmd
2625 sendemail.chainreplyto
2626 sendemail.confirm
2627 sendemail.envelopesender
6068ac88
MZ
2628 sendemail.from
2629 sendemail.identity
226b343c
SB
2630 sendemail.multiedit
2631 sendemail.signedoffbycc
6068ac88 2632 sendemail.smtpdomain
226b343c
SB
2633 sendemail.smtpencryption
2634 sendemail.smtppass
2635 sendemail.smtpserver
6068ac88 2636 sendemail.smtpserveroption
226b343c
SB
2637 sendemail.smtpserverport
2638 sendemail.smtpuser
2639 sendemail.suppresscc
2640 sendemail.suppressfrom
2641 sendemail.thread
2642 sendemail.to
2643 sendemail.validate
5453b83b 2644 sendemail.smtpbatchsize
2645 sendemail.smtprelogindelay
78d4d6a2 2646 showbranch.default
98171a07
LM
2647 status.relativePaths
2648 status.showUntrackedFiles
6068ac88
MZ
2649 status.submodulesummary
2650 submodule.
78d4d6a2
SP
2651 tar.umask
2652 transfer.unpackLimit
0aa62fd0 2653 url.
78d4d6a2 2654 user.email
025a1929 2655 user.name
78d4d6a2 2656 user.signingkey
98171a07 2657 web.browser
5de40f59 2658 branch. remote.
78d4d6a2 2659 "
5de40f59
SP
2660}
2661
88293c67
SP
2662_git_remote ()
2663{
cac84960
CW
2664 local subcommands="
2665 add rename remove set-head set-branches
2666 get-url set-url show prune update
2667 "
918c03c2 2668 local subcommand="$(__git_find_on_cmdline "$subcommands")"
3ff1320d 2669 if [ -z "$subcommand" ]; then
cac84960
CW
2670 case "$cur" in
2671 --*)
2672 __gitcomp "--verbose"
2673 ;;
2674 *)
2675 __gitcomp "$subcommands"
2676 ;;
2677 esac
88293c67
SP
2678 return
2679 fi
2680
cac84960
CW
2681 case "$subcommand,$cur" in
2682 add,--*)
2683 __gitcomp "--track --master --fetch --tags --no-tags --mirror="
88293c67 2684 ;;
cac84960
CW
2685 add,*)
2686 ;;
2687 set-head,--*)
2688 __gitcomp "--auto --delete"
2689 ;;
2690 set-branches,--*)
2691 __gitcomp "--add"
88293c67 2692 ;;
cac84960 2693 set-head,*|set-branches,*)
f1c6ffe6
PJ
2694 __git_complete_remote_or_refspec
2695 ;;
cac84960
CW
2696 update,--*)
2697 __gitcomp "--prune"
2698 ;;
2699 update,*)
e8f9e428 2700 __gitcomp "$(__git_get_config_variables "remotes")"
fb72759b 2701 ;;
cac84960
CW
2702 set-url,--*)
2703 __gitcomp "--push --add --delete"
2704 ;;
2705 get-url,--*)
2706 __gitcomp "--push --all"
2707 ;;
2708 prune,--*)
2709 __gitcomp "--dry-run"
2710 ;;
88293c67 2711 *)
cac84960 2712 __gitcomp_nl "$(__git_remotes)"
88293c67
SP
2713 ;;
2714 esac
2715}
2716
e1c1a067
BG
2717_git_replace ()
2718{
188fba11
CW
2719 case "$cur" in
2720 --*)
2721 __gitcomp "--edit --graft --format= --list --delete"
2722 return
2723 ;;
2724 esac
15b4a163 2725 __git_complete_refs
e1c1a067
BG
2726}
2727
e24a256b
CW
2728_git_rerere ()
2729{
2730 local subcommands="clear forget diff remaining status gc"
2731 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2732 if test -z "$subcommand"
2733 then
2734 __gitcomp "$subcommands"
2735 return
2736 fi
2737}
2738
67e78c3b
SP
2739_git_reset ()
2740{
d773c631
SG
2741 __git_has_doubledash && return
2742
b3391775
SP
2743 case "$cur" in
2744 --*)
f483a0aa 2745 __gitcomp "--merge --mixed --hard --soft --patch --keep"
b3391775
SP
2746 return
2747 ;;
2748 esac
15b4a163 2749 __git_complete_refs
67e78c3b
SP
2750}
2751
a6c2be24
LM
2752_git_revert ()
2753{
fad9484f
SG
2754 __git_find_repo_path
2755 if [ -f "$__git_repo_path"/REVERT_HEAD ]; then
956352b6
TB
2756 __gitcomp "--continue --quit --abort"
2757 return
2758 fi
a6c2be24
LM
2759 case "$cur" in
2760 --*)
f483a0aa
CW
2761 __gitcomp "
2762 --edit --mainline --no-edit --no-commit --signoff
2763 --strategy= --strategy-option=
2764 "
a6c2be24
LM
2765 return
2766 ;;
2767 esac
15b4a163 2768 __git_complete_refs
a6c2be24
LM
2769}
2770
08c701d4
LM
2771_git_rm ()
2772{
08c701d4
LM
2773 case "$cur" in
2774 --*)
2775 __gitcomp "--cached --dry-run --ignore-unmatch --quiet"
2776 return
2777 ;;
2778 esac
fea16b47
MP
2779
2780 __git_complete_index_file "--cached"
08c701d4
LM
2781}
2782
1fd6bec9
SP
2783_git_shortlog ()
2784{
d773c631
SG
2785 __git_has_doubledash && return
2786
1fd6bec9
SP
2787 case "$cur" in
2788 --*)
2789 __gitcomp "
a393777e
TR
2790 $__git_log_common_options
2791 $__git_log_shortlog_options
f483a0aa 2792 --numbered --summary --email
1fd6bec9
SP
2793 "
2794 return
2795 ;;
2796 esac
2797 __git_complete_revlist
2798}
2799
90131924
SP
2800_git_show ()
2801{
41d8cf7d
MH
2802 __git_has_doubledash && return
2803
90131924 2804 case "$cur" in
e67d71e5 2805 --pretty=*|--format=*)
c3898111 2806 __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
e67d71e5 2807 " "" "${cur#*=}"
72de29c2
TL
2808 return
2809 ;;
07924d4d
MP
2810 --diff-algorithm=*)
2811 __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}"
2812 return
2813 ;;
ac76fd54
JK
2814 --submodule=*)
2815 __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}"
2816 return
2817 ;;
90131924 2818 --*)
076c3237 2819 __gitcomp "--pretty= --format= --abbrev-commit --oneline
2ca0b197 2820 --show-signature
20bf7292
TR
2821 $__git_diff_common_options
2822 "
90131924
SP
2823 return
2824 ;;
2825 esac
5269f7f8 2826 __git_complete_revlist_file
90131924
SP
2827}
2828
2ca880fe
TR
2829_git_show_branch ()
2830{
2ca880fe
TR
2831 case "$cur" in
2832 --*)
2833 __gitcomp "
f7c2e1a0 2834 --all --remotes --topo-order --date-order --current --more=
2ca880fe 2835 --list --independent --merge-base --no-name
6123d719 2836 --color --no-color
076c3237 2837 --sha1-name --sparse --topics --reflog
2ca880fe
TR
2838 "
2839 return
2840 ;;
2841 esac
2842 __git_complete_revlist
2843}
2844
7fd53fce
JH
2845_git_stash ()
2846{
d7d4ca87 2847 local save_opts='--all --keep-index --no-keep-index --quiet --patch --include-untracked'
3851e448 2848 local subcommands='push save list show apply clear drop pop create branch'
918c03c2 2849 local subcommand="$(__git_find_on_cmdline "$subcommands")"
7bedebca 2850 if [ -z "$subcommand" ]; then
59d5eeee
SG
2851 case "$cur" in
2852 --*)
2853 __gitcomp "$save_opts"
2854 ;;
2855 *)
2856 if [ -z "$(__git_find_on_cmdline "$save_opts")" ]; then
2857 __gitcomp "$subcommands"
59d5eeee
SG
2858 fi
2859 ;;
2860 esac
7bedebca 2861 else
7bedebca 2862 case "$subcommand,$cur" in
3851e448
TG
2863 push,--*)
2864 __gitcomp "$save_opts --message"
2865 ;;
7bedebca 2866 save,--*)
59d5eeee 2867 __gitcomp "$save_opts"
7bedebca 2868 ;;
8513c54b 2869 apply,--*|pop,--*)
59d5eeee 2870 __gitcomp "--index --quiet"
95d43780 2871 ;;
d7d4ca87
PW
2872 drop,--*)
2873 __gitcomp "--quiet"
95d43780 2874 ;;
d7d4ca87
PW
2875 show,--*|branch,--*)
2876 ;;
2877 branch,*)
59305aee 2878 if [ $cword -eq 3 ]; then
15b4a163 2879 __git_complete_refs
d7d4ca87 2880 else
1cd23e9e 2881 __gitcomp_nl "$(__git stash list \
d7d4ca87
PW
2882 | sed -n -e 's/:.*//p')"
2883 fi
2884 ;;
2885 show,*|apply,*|drop,*|pop,*)
1cd23e9e 2886 __gitcomp_nl "$(__git stash list \
95d43780
LM
2887 | sed -n -e 's/:.*//p')"
2888 ;;
7bedebca 2889 *)
7bedebca
SG
2890 ;;
2891 esac
3ff1320d 2892 fi
7fd53fce
JH
2893}
2894
be86f7a0
SP
2895_git_submodule ()
2896{
d773c631
SG
2897 __git_has_doubledash && return
2898
cf419828 2899 local subcommands="add status init deinit update summary foreach sync"
65d5a1e0
CW
2900 local subcommand="$(__git_find_on_cmdline "$subcommands")"
2901 if [ -z "$subcommand" ]; then
be86f7a0
SP
2902 case "$cur" in
2903 --*)
65d5a1e0 2904 __gitcomp "--quiet"
be86f7a0
SP
2905 ;;
2906 *)
3ff1320d 2907 __gitcomp "$subcommands"
be86f7a0
SP
2908 ;;
2909 esac
2910 return
2911 fi
65d5a1e0
CW
2912
2913 case "$subcommand,$cur" in
2914 add,--*)
2915 __gitcomp "--branch --force --name --reference --depth"
2916 ;;
2917 status,--*)
2918 __gitcomp "--cached --recursive"
2919 ;;
2920 deinit,--*)
2921 __gitcomp "--force --all"
2922 ;;
2923 update,--*)
2924 __gitcomp "
2925 --init --remote --no-fetch
2926 --recommend-shallow --no-recommend-shallow
2927 --force --rebase --merge --reference --depth --recursive --jobs
2928 "
2929 ;;
2930 summary,--*)
2931 __gitcomp "--cached --files --summary-limit"
2932 ;;
2933 foreach,--*|sync,--*)
2934 __gitcomp "--recursive"
2935 ;;
2936 *)
2937 ;;
2938 esac
be86f7a0
SP
2939}
2940
47f6ee28
SG
2941_git_svn ()
2942{
2943 local subcommands="
2944 init fetch clone rebase dcommit log find-rev
2945 set-tree commit-diff info create-ignore propget
4a5856cb 2946 proplist show-ignore show-externals branch tag blame
c18d5d82 2947 migrate mkdirs reset gc
47f6ee28 2948 "
918c03c2 2949 local subcommand="$(__git_find_on_cmdline "$subcommands")"
47f6ee28
SG
2950 if [ -z "$subcommand" ]; then
2951 __gitcomp "$subcommands"
2952 else
2953 local remote_opts="--username= --config-dir= --no-auth-cache"
2954 local fc_opts="
2955 --follow-parent --authors-file= --repack=
2956 --no-metadata --use-svm-props --use-svnsync-props
2957 --log-window-size= --no-checkout --quiet
4a5856cb 2958 --repack-flags --use-log-author --localtime
2cbad176 2959 --add-author-from
a7b10230 2960 --ignore-paths= --include-paths= $remote_opts
47f6ee28
SG
2961 "
2962 local init_opts="
2963 --template= --shared= --trunk= --tags=
2964 --branches= --stdlayout --minimize-url
2965 --no-metadata --use-svm-props --use-svnsync-props
2cbad176 2966 --rewrite-root= --prefix= $remote_opts
47f6ee28
SG
2967 "
2968 local cmt_opts="
2969 --edit --rmdir --find-copies-harder --copy-similarity=
2970 "
2971
47f6ee28
SG
2972 case "$subcommand,$cur" in
2973 fetch,--*)
2974 __gitcomp "--revision= --fetch-all $fc_opts"
2975 ;;
2976 clone,--*)
2977 __gitcomp "--revision= $fc_opts $init_opts"
2978 ;;
2979 init,--*)
2980 __gitcomp "$init_opts"
2981 ;;
2982 dcommit,--*)
2983 __gitcomp "
2984 --merge --strategy= --verbose --dry-run
4a5856cb 2985 --fetch-all --no-rebase --commit-url
7b151f49 2986 --revision --interactive $cmt_opts $fc_opts
47f6ee28
SG
2987 "
2988 ;;
2989 set-tree,--*)
2990 __gitcomp "--stdin $cmt_opts $fc_opts"
2991 ;;
2992 create-ignore,--*|propget,--*|proplist,--*|show-ignore,--*|\
c18d5d82 2993 show-externals,--*|mkdirs,--*)
47f6ee28
SG
2994 __gitcomp "--revision="
2995 ;;
2996 log,--*)
2997 __gitcomp "
2998 --limit= --revision= --verbose --incremental
2999 --oneline --show-commit --non-recursive
4a5856cb 3000 --authors-file= --color
47f6ee28
SG
3001 "
3002 ;;
3003 rebase,--*)
3004 __gitcomp "
3005 --merge --verbose --strategy= --local
4a5856cb 3006 --fetch-all --dry-run $fc_opts
47f6ee28
SG
3007 "
3008 ;;
3009 commit-diff,--*)
3010 __gitcomp "--message= --file= --revision= $cmt_opts"
3011 ;;
3012 info,--*)
3013 __gitcomp "--url"
3014 ;;
4a5856cb
SG
3015 branch,--*)
3016 __gitcomp "--dry-run --message --tag"
3017 ;;
3018 tag,--*)
3019 __gitcomp "--dry-run --message"
3020 ;;
3021 blame,--*)
3022 __gitcomp "--git-format"
3023 ;;
3024 migrate,--*)
3025 __gitcomp "
3026 --config-dir= --ignore-paths= --minimize
3027 --no-auth-cache --username=
3028 "
3029 ;;
c18d5d82
RZ
3030 reset,--*)
3031 __gitcomp "--revision= --parent"
3032 ;;
47f6ee28 3033 *)
47f6ee28
SG
3034 ;;
3035 esac
3036 fi
3037}
3038
88e21dc7
SP
3039_git_tag ()
3040{
3041 local i c=1 f=0
da48616f
PD
3042 while [ $c -lt $cword ]; do
3043 i="${words[c]}"
88e21dc7
SP
3044 case "$i" in
3045 -d|-v)
227307a6 3046 __gitcomp_direct "$(__git_tags "" "$cur" " ")"
88e21dc7
SP
3047 return
3048 ;;
3049 -f)
3050 f=1
3051 ;;
3052 esac
6e8c755f 3053 ((c++))
88e21dc7
SP
3054 done
3055
da48616f 3056 case "$prev" in
88e21dc7 3057 -m|-F)
88e21dc7 3058 ;;
8d8163f3 3059 -*|tag)
88e21dc7 3060 if [ $f = 1 ]; then
227307a6 3061 __gitcomp_direct "$(__git_tags "" "$cur" " ")"
88e21dc7
SP
3062 fi
3063 ;;
3064 *)
15b4a163 3065 __git_complete_refs
88e21dc7
SP
3066 ;;
3067 esac
85ed2f32
RT
3068
3069 case "$cur" in
3070 --*)
3071 __gitcomp "
3072 --list --delete --verify --annotate --message --file
f483a0aa 3073 --sign --cleanup --local-user --force --column --sort=
ac3f5a34 3074 --contains --no-contains --points-at --merged --no-merged --create-reflog
85ed2f32
RT
3075 "
3076 ;;
3077 esac
88e21dc7
SP
3078}
3079
424cce83
SG
3080_git_whatchanged ()
3081{
3082 _git_log
3083}
3084
b462c024
NTND
3085_git_worktree ()
3086{
6d308627 3087 local subcommands="add list lock prune unlock"
b462c024
NTND
3088 local subcommand="$(__git_find_on_cmdline "$subcommands")"
3089 if [ -z "$subcommand" ]; then
3090 __gitcomp "$subcommands"
3091 else
3092 case "$subcommand,$cur" in
3093 add,--*)
3094 __gitcomp "--detach"
3095 ;;
3096 list,--*)
3097 __gitcomp "--porcelain"
3098 ;;
58142c09
NTND
3099 lock,--*)
3100 __gitcomp "--reason"
3101 ;;
b462c024
NTND
3102 prune,--*)
3103 __gitcomp "--dry-run --expire --verbose"
3104 ;;
3105 *)
3106 ;;
3107 esac
3108 fi
3109}
3110
93b291e0 3111__git_main ()
690d8824 3112{
beb6ee71 3113 local i c=1 command __git_dir __git_repo_path
80ac0744 3114 local __git_C_args C_args_count=0
873537fa 3115
da48616f
PD
3116 while [ $c -lt $cword ]; do
3117 i="${words[c]}"
873537fa
SP
3118 case "$i" in
3119 --git-dir=*) __git_dir="${i#--git-dir=}" ;;
776009d1 3120 --git-dir) ((c++)) ; __git_dir="${words[c]}" ;;
873537fa 3121 --bare) __git_dir="." ;;
1eb7e2f8 3122 --help) command="help"; break ;;
776009d1 3123 -c|--work-tree|--namespace) ((c++)) ;;
80ac0744
SG
3124 -C) __git_C_args[C_args_count++]=-C
3125 ((c++))
3126 __git_C_args[C_args_count++]="${words[c]}"
3127 ;;
911d5da6 3128 -*) ;;
873537fa
SP
3129 *) command="$i"; break ;;
3130 esac
6e8c755f 3131 ((c++))
873537fa
SP
3132 done
3133
1d17b22e 3134 if [ -z "$command" ]; then
7b329b9d
SG
3135 case "$prev" in
3136 --git-dir|-C|--work-tree)
3137 # these need a path argument, let's fall back to
3138 # Bash filename completion
3139 return
3140 ;;
3141 -c|--namespace)
3142 # we don't support completing these options' arguments
3143 return
3144 ;;
3145 esac
da48616f 3146 case "$cur" in
47e98eec 3147 --*) __gitcomp "
ce5a2c95 3148 --paginate
47e98eec
SP
3149 --no-pager
3150 --git-dir=
3151 --bare
3152 --version
3153 --exec-path
3ffcd086 3154 --exec-path=
89a56bfb 3155 --html-path
66fb37d0 3156 --man-path
69ef3c02 3157 --info-path
ce5a2c95 3158 --work-tree=
a1bea2c1 3159 --namespace=
69ef3c02 3160 --no-replace-objects
ce5a2c95 3161 --help
47e98eec
SP
3162 "
3163 ;;
eaa4e6ee
JN
3164 *) __git_compute_porcelain_commands
3165 __gitcomp "$__git_porcelain_commands $(__git_aliases)" ;;
72e5e989
SP
3166 esac
3167 return
873537fa 3168 fi
367dce2a 3169
424cce83 3170 local completion_func="_git_${command//-/_}"
336d694c 3171 declare -f $completion_func >/dev/null 2>/dev/null && $completion_func && return
8024ea60 3172
873537fa 3173 local expansion=$(__git_aliased_command "$command")
8024ea60 3174 if [ -n "$expansion" ]; then
880111c1 3175 words[1]=$expansion
8024ea60 3176 completion_func="_git_${expansion//-/_}"
336d694c 3177 declare -f $completion_func >/dev/null 2>/dev/null && $completion_func
8024ea60 3178 fi
690d8824
JH
3179}
3180
93b291e0 3181__gitk_main ()
690d8824 3182{
d773c631
SG
3183 __git_has_doubledash && return
3184
beb6ee71 3185 local __git_repo_path
fad9484f
SG
3186 __git_find_repo_path
3187
07ba53f7 3188 local merge=""
fad9484f 3189 if [ -f "$__git_repo_path/MERGE_HEAD" ]; then
07ba53f7
RQ
3190 merge="--merge"
3191 fi
b3391775
SP
3192 case "$cur" in
3193 --*)
a393777e
TR
3194 __gitcomp "
3195 $__git_log_common_options
3196 $__git_log_gitk_options
3197 $merge
3198 "
b3391775
SP
3199 return
3200 ;;
3201 esac
ec804891 3202 __git_complete_revlist
690d8824
JH
3203}
3204
d8b45314
FC
3205if [[ -n ${ZSH_VERSION-} ]]; then
3206 echo "WARNING: this script is deprecated, please see git-completion.zsh" 1>&2
6b179adf 3207
9cd67bd2
FC
3208 autoload -U +X compinit && compinit
3209
d8b45314
FC
3210 __gitcomp ()
3211 {
3212 emulate -L zsh
6b179adf 3213
d8b45314
FC
3214 local cur_="${3-$cur}"
3215
3216 case "$cur_" in
3217 --*=)
3218 ;;
3219 *)
3220 local c IFS=$' \t\n'
3221 local -a array
3222 for c in ${=1}; do
3223 c="$c${4-}"
3224 case $c in
3225 --*=*|*.) ;;
3226 *) c="$c " ;;
3227 esac
5d5812f4 3228 array[${#array[@]}+1]="$c"
d8b45314
FC
3229 done
3230 compset -P '*[=:]'
3231 compadd -Q -S '' -p "${2-}" -a -- array && _ret=0
3232 ;;
3233 esac
3234 }
3235
fef56eb0
SG
3236 __gitcomp_direct ()
3237 {
3238 emulate -L zsh
3239
3240 local IFS=$'\n'
3241 compset -P '*[=:]'
3242 compadd -Q -- ${=1} && _ret=0
3243 }
3244
d8b45314
FC
3245 __gitcomp_nl ()
3246 {
3247 emulate -L zsh
3248
3249 local IFS=$'\n'
3250 compset -P '*[=:]'
3251 compadd -Q -S "${4- }" -p "${2-}" -- ${=1} && _ret=0
3252 }
3253
fea16b47
MP
3254 __gitcomp_file ()
3255 {
3256 emulate -L zsh
3257
3258 local IFS=$'\n'
3259 compset -P '*[=:]'
3260 compadd -Q -p "${2-}" -f -- ${=1} && _ret=0
3261 }
3262
d8b45314
FC
3263 _git ()
3264 {
2bcf694b
FC
3265 local _ret=1 cur cword prev
3266 cur=${words[CURRENT]}
3267 prev=${words[CURRENT-1]}
3268 let cword=CURRENT-1
3269 emulate ksh -c __${service}_main
734b2f05 3270 let _ret && _default && _ret=0
d8b45314
FC
3271 return _ret
3272 }
3273
3274 compdef _git git gitk
3275 return
3276fi
3277
3278__git_func_wrap ()
3279{
6b179adf
FC
3280 local cur words cword prev
3281 _get_comp_words_by_ref -n =: cur words cword prev
3282 $1
3283}
3284
3285# Setup completion for certain functions defined above by setting common
3286# variables and workarounds.
3287# This is NOT a public function; use at your own risk.
3288__git_complete ()
3289{
3290 local wrapper="__git_wrap${2}"
3291 eval "$wrapper () { __git_func_wrap $2 ; }"
3292 complete -o bashdefault -o default -o nospace -F $wrapper $1 2>/dev/null \
3293 || complete -o default -o nospace -F $wrapper $1
3294}
3295
b0a4b2d2
FC
3296# wrapper for backwards compatibility
3297_git ()
3298{
93b291e0 3299 __git_wrap__git_main
b0a4b2d2
FC
3300}
3301
3302# wrapper for backwards compatibility
3303_gitk ()
3304{
93b291e0 3305 __git_wrap__gitk_main
b0a4b2d2
FC
3306}
3307
93b291e0
SG
3308__git_complete git __git_main
3309__git_complete gitk __gitk_main
690d8824
JH
3310
3311# The following are necessary only for Cygwin, and only are needed
3312# when the user has tab-completed the executable name and consequently
3313# included the '.exe' suffix.
3314#
76c3eb51 3315if [ Cygwin = "$(uname -o 2>/dev/null)" ]; then
93b291e0 3316__git_complete git.exe __git_main
76c3eb51 3317fi