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