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