git-completion.bash 55.7 KB
Newer Older
1
#!bash
2
#
3
# bash/zsh completion support for core Git.
4
#
5
# Copyright (C) 2006,2007 Shawn O. Pearce <spearce@spearce.org>
6
# Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/).
7
# Distributed under the GNU General Public License, version 2.0.
8 9 10 11 12 13 14 15
#
# The contained completion routines provide support for completing:
#
#    *) local and remote branch names
#    *) local and remote tag names
#    *) .git/remotes file names
#    *) git 'subcommands'
#    *) tree paths within 'ref:path/to/file' expressions
16
#    *) common --long-options
17 18 19 20
#
# To use these routines:
#
#    1) Copy this file to somewhere (e.g. ~/.git-completion.sh).
21
#    2) Add the following line to your .bashrc/.zshrc:
22 23
#        source ~/.git-completion.sh
#
J
Jonathan Nieder 已提交
24
#    3) Consider changing your PS1 to also show the current branch:
25 26
#         Bash: PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ '
#         ZSH:  PS1='[%n@%m %c$(__git_ps1 " (%s)")]\$ '
27 28 29 30 31
#
#       The argument to __git_ps1 will be displayed only if you
#       are currently in a git repository.  The %s token will be
#       the name of the current branch.
#
32 33 34 35 36
#       In addition, if you set GIT_PS1_SHOWDIRTYSTATE to a nonempty
#       value, unstaged (*) and staged (+) changes will be shown next
#       to the branch name.  You can configure this per-repository
#       with the bash.showDirtyState variable, which defaults to true
#       once GIT_PS1_SHOWDIRTYSTATE is enabled.
37
#
38 39 40 41
#       You can also see if currently something is stashed, by setting
#       GIT_PS1_SHOWSTASHSTATE to a nonempty value. If something is stashed,
#       then a '$' will be shown next to the branch name.
#
42 43 44 45
#       If you would like to see if there're untracked files, then you can
#       set GIT_PS1_SHOWUNTRACKEDFILES to a nonempty value. If there're
#       untracked files, then a '%' will be shown next to the branch name.
#
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
#       If you would like to see the difference between HEAD and its
#       upstream, set GIT_PS1_SHOWUPSTREAM="auto".  A "<" indicates
#       you are behind, ">" indicates you are ahead, and "<>"
#       indicates you have diverged.  You can further control
#       behaviour by setting GIT_PS1_SHOWUPSTREAM to a space-separated
#       list of values:
#           verbose       show number of commits ahead/behind (+/-) upstream
#           legacy        don't use the '--count' option available in recent
#                         versions of git-rev-list
#           git           always compare HEAD to @{upstream}
#           svn           always compare HEAD to your SVN upstream
#       By default, __git_ps1 will compare HEAD to your SVN upstream
#       if it can find one, or @{upstream} otherwise.  Once you have
#       set GIT_PS1_SHOWUPSTREAM, you can override it on a
#       per-repository basis by setting the bash.showUpstream config
#       variable.
#
#
64 65 66 67 68 69 70 71 72 73 74
# To submit patches:
#
#    *) Read Documentation/SubmittingPatches
#    *) Send all patches to the current maintainer:
#
#       "Shawn O. Pearce" <spearce@spearce.org>
#
#    *) Always CC the Git mailing list:
#
#       git@vger.kernel.org
#
75

76 77 78 79
if [[ -n ${ZSH_VERSION-} ]]; then
	autoload -U +X bashcompinit && bashcompinit
fi

80 81 82 83 84
case "$COMP_WORDBREAKS" in
*:*) : great ;;
*)   COMP_WORDBREAKS="$COMP_WORDBREAKS:"
esac

85 86
# __gitdir accepts 0 or 1 arguments (i.e., location)
# returns location of .git repo
87 88
__gitdir ()
{
89
	if [ -z "${1-}" ]; then
90
		if [ -n "${__git_dir-}" ]; then
91 92 93 94 95 96 97 98 99 100 101
			echo "$__git_dir"
		elif [ -d .git ]; then
			echo .git
		else
			git rev-parse --git-dir 2>/dev/null
		fi
	elif [ -d "$1/.git" ]; then
		echo "$1/.git"
	else
		echo "$1"
	fi
102 103
}

104 105 106 107 108 109 110 111 112
# stores the divergence from upstream in $p
# used by GIT_PS1_SHOWUPSTREAM
__git_ps1_show_upstream ()
{
	local key value
	local svn_remote=() svn_url_pattern count n
	local upstream=git legacy="" verbose=""

	# get some config options from git-config
113
	local output="$(git config -z --get-regexp '^(svn-remote\..*\.url|bash\.showupstream)$' 2>/dev/null | tr '\0\n' '\n ')"
114
	while read -r key value; do
115 116 117 118 119 120 121 122 123 124 125 126 127 128
		case "$key" in
		bash.showupstream)
			GIT_PS1_SHOWUPSTREAM="$value"
			if [[ -z "${GIT_PS1_SHOWUPSTREAM}" ]]; then
				p=""
				return
			fi
			;;
		svn-remote.*.url)
			svn_remote[ $((${#svn_remote[@]} + 1)) ]="$value"
			svn_url_pattern+="\\|$value"
			upstream=svn+git # default upstream is SVN if available, else git
			;;
		esac
129
	done <<< "$output"
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146

	# parse configuration values
	for option in ${GIT_PS1_SHOWUPSTREAM}; do
		case "$option" in
		git|svn) upstream="$option" ;;
		verbose) verbose=1 ;;
		legacy)  legacy=1  ;;
		esac
	done

	# Find our upstream
	case "$upstream" in
	git)    upstream="@{upstream}" ;;
	svn*)
		# get the upstream from the "git-svn-id: ..." in a commit message
		# (git-svn uses essentially the same procedure internally)
		local svn_upstream=($(git log --first-parent -1 \
147
					--grep="^git-svn-id: \(${svn_url_pattern#??}\)" 2>/dev/null))
148 149 150
		if [[ 0 -ne ${#svn_upstream[@]} ]]; then
			svn_upstream=${svn_upstream[ ${#svn_upstream[@]} - 2 ]}
			svn_upstream=${svn_upstream%@*}
151 152
			local n_stop="${#svn_remote[@]}"
			for ((n=1; n <= n_stop; ++n)); do
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
				svn_upstream=${svn_upstream#${svn_remote[$n]}}
			done

			if [[ -z "$svn_upstream" ]]; then
				# default branch name for checkouts with no layout:
				upstream=${GIT_SVN_ID:-git-svn}
			else
				upstream=${svn_upstream#/}
			fi
		elif [[ "svn+git" = "$upstream" ]]; then
			upstream="@{upstream}"
		fi
		;;
	esac

	# Find how many commits we are ahead/behind our upstream
	if [[ -z "$legacy" ]]; then
		count="$(git rev-list --count --left-right \
				"$upstream"...HEAD 2>/dev/null)"
	else
		# produce equivalent output to --count for older versions of git
		local commits
		if commits="$(git rev-list --left-right "$upstream"...HEAD 2>/dev/null)"
		then
			local commit behind=0 ahead=0
			for commit in $commits
			do
				case "$commit" in
				"<"*) let ++behind
					;;
				*)    let ++ahead
					;;
				esac
			done
			count="$behind	$ahead"
		else
			count=""
		fi
	fi

	# calculate the result
	if [[ -z "$verbose" ]]; then
		case "$count" in
		"") # no upstream
			p="" ;;
		"0	0") # equal to upstream
			p="=" ;;
		"0	"*) # ahead of upstream
			p=">" ;;
		*"	0") # behind upstream
			p="<" ;;
		*)	    # diverged from upstream
			p="<>" ;;
		esac
	else
		case "$count" in
		"") # no upstream
			p="" ;;
		"0	0") # equal to upstream
			p=" u=" ;;
		"0	"*) # ahead of upstream
			p=" u+${count#0	}" ;;
		*"	0") # behind upstream
			p=" u-${count%	0}" ;;
		*)	    # diverged from upstream
			p=" u+${count#*	}-${count%	*}" ;;
		esac
	fi

}


225 226
# __git_ps1 accepts 0 or 1 arguments (i.e., format string)
# returns text to add to bash PS1 prompt (includes branch name)
227 228
__git_ps1 ()
{
229
	local g="$(__gitdir)"
230
	if [ -n "$g" ]; then
231 232
		local r=""
		local b=""
233
		if [ -f "$g/rebase-merge/interactive" ]; then
234
			r="|REBASE-i"
235
			b="$(cat "$g/rebase-merge/head-name")"
236
		elif [ -d "$g/rebase-merge" ]; then
237
			r="|REBASE-m"
238
			b="$(cat "$g/rebase-merge/head-name")"
239
		else
240 241 242 243 244 245 246 247 248
			if [ -d "$g/rebase-apply" ]; then
				if [ -f "$g/rebase-apply/rebasing" ]; then
					r="|REBASE"
				elif [ -f "$g/rebase-apply/applying" ]; then
					r="|AM"
				else
					r="|AM/REBASE"
				fi
			elif [ -f "$g/MERGE_HEAD" ]; then
249
				r="|MERGING"
250 251
			elif [ -f "$g/CHERRY_PICK_HEAD" ]; then
				r="|CHERRY-PICKING"
252
			elif [ -f "$g/BISECT_LOG" ]; then
253 254
				r="|BISECTING"
			fi
255 256

			b="$(git symbolic-ref HEAD 2>/dev/null)" || {
257 258 259 260 261 262 263 264 265 266

				b="$(
				case "${GIT_PS1_DESCRIBE_STYLE-}" in
				(contains)
					git describe --contains HEAD ;;
				(branch)
					git describe --contains --all HEAD ;;
				(describe)
					git describe HEAD ;;
				(* | default)
K
knittl 已提交
267
					git describe --tags --exact-match HEAD ;;
268 269
				esac 2>/dev/null)" ||

270 271 272 273
				b="$(cut -c1-7 "$g/HEAD" 2>/dev/null)..." ||
				b="unknown"
				b="($b)"
			}
274 275
		fi

276 277 278 279 280
		local w=""
		local i=""
		local s=""
		local u=""
		local c=""
281
		local p=""
282

283
		if [ "true" = "$(git rev-parse --is-inside-git-dir 2>/dev/null)" ]; then
284
			if [ "true" = "$(git rev-parse --is-bare-repository 2>/dev/null)" ]; then
285 286 287 288
				c="BARE:"
			else
				b="GIT_DIR!"
			fi
289 290 291
		elif [ "true" = "$(git rev-parse --is-inside-work-tree 2>/dev/null)" ]; then
			if [ -n "${GIT_PS1_SHOWDIRTYSTATE-}" ]; then
				if [ "$(git config --bool bash.showDirtyState)" != "false" ]; then
292
					git diff --no-ext-diff --quiet --exit-code || w="*"
293
					if git rev-parse --quiet --verify HEAD >/dev/null; then
294
						git diff-index --cached --quiet HEAD -- || i="+"
295 296 297
					else
						i="#"
					fi
298 299
				fi
			fi
300 301 302
			if [ -n "${GIT_PS1_SHOWSTASHSTATE-}" ]; then
			        git rev-parse --verify refs/stash >/dev/null 2>&1 && s="$"
			fi
303 304 305 306 307 308

			if [ -n "${GIT_PS1_SHOWUNTRACKEDFILES-}" ]; then
			   if [ -n "$(git ls-files --others --exclude-standard)" ]; then
			      u="%"
			   fi
			fi
309 310 311 312

			if [ -n "${GIT_PS1_SHOWUPSTREAM-}" ]; then
				__git_ps1_show_upstream
			fi
313 314
		fi

315
		local f="$w$i$s$u"
316
		printf "${1:- (%s)}" "$c${b##refs/heads/}${f:+ $f}$r$p"
317 318 319
	fi
}

320
# __gitcomp_1 requires 2 arguments
321 322 323 324 325 326 327 328 329 330 331 332
__gitcomp_1 ()
{
	local c IFS=' '$'\t'$'\n'
	for c in $1; do
		case "$c$2" in
		--*=*) printf %s$'\n' "$c$2" ;;
		*.)    printf %s$'\n' "$c$2" ;;
		*)     printf %s$'\n' "$c$2 " ;;
		esac
	done
}

333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431
# The following function is based on code from:
#
#   bash_completion - programmable completion functions for bash 3.2+
#
#   Copyright © 2006-2008, Ian Macdonald <ian@caliban.org>
#             © 2009-2010, Bash Completion Maintainers
#                     <bash-completion-devel@lists.alioth.debian.org>
#
#   This program is free software; you can redistribute it and/or modify
#   it under the terms of the GNU General Public License as published by
#   the Free Software Foundation; either version 2, or (at your option)
#   any later version.
#
#   This program is distributed in the hope that it will be useful,
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#   GNU General Public License for more details.
#
#   You should have received a copy of the GNU General Public License
#   along with this program; if not, write to the Free Software Foundation,
#   Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
#   The latest version of this software can be obtained here:
#
#   http://bash-completion.alioth.debian.org/
#
#   RELEASE: 2.x

# This function can be used to access a tokenized list of words
# on the command line:
#
#	__git_reassemble_comp_words_by_ref '=:'
#	if test "${words_[cword_-1]}" = -w
#	then
#		...
#	fi
#
# The argument should be a collection of characters from the list of
# word completion separators (COMP_WORDBREAKS) to treat as ordinary
# characters.
#
# This is roughly equivalent to going back in time and setting
# COMP_WORDBREAKS to exclude those characters.  The intent is to
# make option types like --date=<type> and <rev>:<path> easy to
# recognize by treating each shell word as a single token.
#
# It is best not to set COMP_WORDBREAKS directly because the value is
# shared with other completion scripts.  By the time the completion
# function gets called, COMP_WORDS has already been populated so local
# changes to COMP_WORDBREAKS have no effect.
#
# Output: words_, cword_, cur_.

__git_reassemble_comp_words_by_ref()
{
	local exclude i j first
	# Which word separators to exclude?
	exclude="${1//[^$COMP_WORDBREAKS]}"
	cword_=$COMP_CWORD
	if [ -z "$exclude" ]; then
		words_=("${COMP_WORDS[@]}")
		return
	fi
	# List of word completion separators has shrunk;
	# re-assemble words to complete.
	for ((i=0, j=0; i < ${#COMP_WORDS[@]}; i++, j++)); do
		# Append each nonempty word consisting of just
		# word separator characters to the current word.
		first=t
		while
			[ $i -gt 0 ] &&
			[ -n "${COMP_WORDS[$i]}" ] &&
			# word consists of excluded word separators
			[ "${COMP_WORDS[$i]//[^$exclude]}" = "${COMP_WORDS[$i]}" ]
		do
			# Attach to the previous token,
			# unless the previous token is the command name.
			if [ $j -ge 2 ] && [ -n "$first" ]; then
				((j--))
			fi
			first=
			words_[$j]=${words_[j]}${COMP_WORDS[i]}
			if [ $i = $COMP_CWORD ]; then
				cword_=$j
			fi
			if (($i < ${#COMP_WORDS[@]} - 1)); then
				((i++))
			else
				# Done.
				return
			fi
		done
		words_[$j]=${words_[j]}${COMP_WORDS[i]}
		if [ $i = $COMP_CWORD ]; then
			cword_=$j
		fi
	done
}

432
if ! type _get_comp_words_by_ref >/dev/null 2>&1; then
433
if [[ -z ${ZSH_VERSION:+set} ]]; then
434 435
_get_comp_words_by_ref ()
{
436 437 438 439 440 441 442
	local exclude cur_ words_ cword_
	if [ "$1" = "-n" ]; then
		exclude=$2
		shift 2
	fi
	__git_reassemble_comp_words_by_ref "$exclude"
	cur_=${words_[cword_]}
443 444 445
	while [ $# -gt 0 ]; do
		case "$1" in
		cur)
446
			cur=$cur_
447 448
			;;
		prev)
449
			prev=${words_[$cword_-1]}
450 451
			;;
		words)
452
			words=("${words_[@]}")
453 454
			;;
		cword)
455
			cword=$cword_
456 457 458 459 460
			;;
		esac
		shift
	done
}
461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486
else
_get_comp_words_by_ref ()
{
	while [ $# -gt 0 ]; do
		case "$1" in
		cur)
			cur=${COMP_WORDS[COMP_CWORD]}
			;;
		prev)
			prev=${COMP_WORDS[COMP_CWORD-1]}
			;;
		words)
			words=("${COMP_WORDS[@]}")
			;;
		cword)
			cword=$COMP_CWORD
			;;
		-n)
			# assume COMP_WORDBREAKS is already set sanely
			shift
			;;
		esac
		shift
	done
}
fi
487 488
fi

S
SZEDER Gábor 已提交
489 490 491 492 493 494 495
# Generates completion reply with compgen, appending a space to possible
# completion words, if necessary.
# It accepts 1 to 4 arguments:
# 1: List of possible completion words.
# 2: A prefix to be added to each possible completion word (optional).
# 3: Generate possible completion matches for this word (optional).
# 4: A suffix to be appended to each possible completion word (optional).
496 497
__gitcomp ()
{
498 499
	local cur_="$cur"

500
	if [ $# -gt 2 ]; then
501
		cur_="$3"
502
	fi
503
	case "$cur_" in
504 505 506 507
	--*=)
		COMPREPLY=()
		;;
	*)
508
		local IFS=$'\n'
509 510
		COMPREPLY=($(compgen -P "${2-}" \
			-W "$(__gitcomp_1 "${1-}" "${4-}")" \
511
			-- "$cur_"))
512 513
		;;
	esac
514 515
}

516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540
# Generates completion reply with compgen from newline-separated possible
# completion words by appending a space to all of them.
# It accepts 1 to 4 arguments:
# 1: List of possible completion words, separated by a single newline.
# 2: A prefix to be added to each possible completion word (optional).
# 3: Generate possible completion matches for this word (optional).
# 4: A suffix to be appended to each possible completion word instead of
#    the default space (optional).  If specified but empty, nothing is
#    appended.
__gitcomp_nl ()
{
	local s=$'\n' IFS=' '$'\t'$'\n'
	local cur_="$cur" suffix=" "

	if [ $# -gt 2 ]; then
		cur_="$3"
		if [ $# -gt 3 ]; then
			suffix="$4"
		fi
	fi

	IFS=$s
	COMPREPLY=($(compgen -P "${2-}" -S "$suffix" -W "$1" -- "$cur_"))
}

541 542
__git_heads ()
{
543
	local dir="$(__gitdir)"
544
	if [ -d "$dir" ]; then
545 546
		git --git-dir="$dir" for-each-ref --format='%(refname:short)' \
			refs/heads
547 548 549 550
		return
	fi
}

551 552
__git_tags ()
{
553
	local dir="$(__gitdir)"
554
	if [ -d "$dir" ]; then
555 556
		git --git-dir="$dir" for-each-ref --format='%(refname:short)' \
			refs/tags
557 558 559 560
		return
	fi
}

561 562 563
# __git_refs accepts 0, 1 (to pass to __gitdir), or 2 arguments
# presence of 2nd argument means use the guess heuristic employed
# by checkout for tracking branches
564 565
__git_refs ()
{
566
	local i hash dir="$(__gitdir "${1-}")" track="${2-}"
567
	local format refs
568
	if [ -d "$dir" ]; then
S
SZEDER Gábor 已提交
569 570 571 572
		case "$cur" in
		refs|refs/*)
			format="refname"
			refs="${cur%/*}"
573
			track=""
S
SZEDER Gábor 已提交
574 575
			;;
		*)
576 577 578
			for i in HEAD FETCH_HEAD ORIG_HEAD MERGE_HEAD; do
				if [ -e "$dir/$i" ]; then echo $i; fi
			done
S
SZEDER Gábor 已提交
579 580 581 582 583 584
			format="refname:short"
			refs="refs/tags refs/heads refs/remotes"
			;;
		esac
		git --git-dir="$dir" for-each-ref --format="%($format)" \
			$refs
585 586 587 588 589 590 591
		if [ -n "$track" ]; then
			# employ the heuristic used by git checkout
			# Try to find a remote branch that matches the completion word
			# but only output if the branch name is unique
			local ref entry
			git --git-dir="$dir" for-each-ref --shell --format="ref=%(refname:short)" \
				"refs/remotes/" | \
592
			while read -r entry; do
593 594 595 596 597 598 599
				eval "$entry"
				ref="${ref#*/}"
				if [[ "$ref" == "$cur"* ]]; then
					echo "$ref"
				fi
			done | uniq -u
		fi
600
		return
601
	fi
602 603 604
	case "$cur" in
	refs|refs/*)
		git ls-remote "$dir" "$cur*" 2>/dev/null | \
605
		while read -r hash i; do
606 607 608 609 610 611 612 613
			case "$i" in
			*^{}) ;;
			*) echo "$i" ;;
			esac
		done
		;;
	*)
		git ls-remote "$dir" HEAD ORIG_HEAD 'refs/tags/*' 'refs/heads/*' 'refs/remotes/*' 2>/dev/null | \
614
		while read -r hash i; do
615 616 617 618 619 620 621 622
			case "$i" in
			*^{}) ;;
			refs/*) echo "${i#refs/*/}" ;;
			*) echo "$i" ;;
			esac
		done
		;;
	esac
623 624
}

625
# __git_refs2 requires 1 argument (to pass to __git_refs)
626 627
__git_refs2 ()
{
628 629 630
	local i
	for i in $(__git_refs "$1"); do
		echo "$i:$i"
631 632 633
	done
}

634
# __git_refs_remotes requires 1 argument (to pass to ls-remote)
635 636
__git_refs_remotes ()
{
637 638
	local i hash
	git ls-remote "$1" 'refs/heads/*' 2>/dev/null | \
639
	while read -r hash i; do
640
		echo "$i:refs/remotes/$1/${i#refs/heads/}"
641 642 643
	done
}

644 645
__git_remotes ()
{
646
	local i ngoff IFS=$'\n' d="$(__gitdir)"
647 648
	__git_shopt -q nullglob || ngoff=1
	__git_shopt -s nullglob
649 650
	for i in "$d/remotes"/*; do
		echo ${i#$d/remotes/}
651
	done
652
	[ "$ngoff" ] && __git_shopt -u nullglob
653 654 655
	for i in $(git --git-dir="$d" config --get-regexp 'remote\..*\.url' 2>/dev/null); do
		i="${i#remote.}"
		echo "${i/.url*/}"
656
	done
657 658
}

J
Jonathan Nieder 已提交
659
__git_list_merge_strategies ()
660
{
661 662 663 664 665 666
	git merge -s help 2>&1 |
	sed -n -e '/[Aa]vailable strategies are: /,/^$/{
		s/\.$//
		s/.*://
		s/^[ 	]*//
		s/[ 	]*$//
667
		p
668
	}'
669
}
J
Jonathan Nieder 已提交
670 671 672 673 674 675 676 677 678

__git_merge_strategies=
# 'git merge -s help' (and thus detection of the merge strategy
# list) fails, unfortunately, if run outside of any git working
# tree.  __git_merge_strategies is set to the empty string in
# that case, and the detection will be repeated the next time it
# is needed.
__git_compute_merge_strategies ()
{
679 680
	test -n "$__git_merge_strategies" ||
	__git_merge_strategies=$(__git_list_merge_strategies)
J
Jonathan Nieder 已提交
681
}
682

683
__git_complete_revlist_file ()
684
{
685
	local pfx ls ref cur_="$cur"
686
	case "$cur_" in
687 688 689
	*..?*:*)
		return
		;;
690
	?*:*)
691 692 693
		ref="${cur_%%:*}"
		cur_="${cur_#*:}"
		case "$cur_" in
694
		?*/*)
695 696
			pfx="${cur_%/*}"
			cur_="${cur_##*/}"
697 698 699 700 701 702
			ls="$ref:$pfx"
			pfx="$pfx/"
			;;
		*)
			ls="$ref"
			;;
703
		esac
704 705 706 707 708 709

		case "$COMP_WORDBREAKS" in
		*:*) : great ;;
		*)   pfx="$ref:$pfx" ;;
		esac

710
		local IFS=$'\n'
711
		COMPREPLY=($(compgen -P "$pfx" \
712
			-W "$(git --git-dir="$(__gitdir)" ls-tree "$ls" \
713 714 715 716 717 718 719 720
				| sed '/^100... blob /{
				           s,^.*	,,
				           s,$, ,
				       }
				       /^120000 blob /{
				           s,^.*	,,
				           s,$, ,
				       }
721 722 723 724 725
				       /^040000 tree /{
				           s,^.*	,,
				           s,$,/,
				       }
				       s/^.*	//')" \
726
			-- "$cur_"))
727
		;;
728
	*...*)
729 730
		pfx="${cur_%...*}..."
		cur_="${cur_#*...}"
731
		__gitcomp_nl "$(__git_refs)" "$pfx" "$cur_"
732 733
		;;
	*..*)
734 735
		pfx="${cur_%..*}.."
		cur_="${cur_#*..}"
736
		__gitcomp_nl "$(__git_refs)" "$pfx" "$cur_"
737
		;;
738
	*)
739
		__gitcomp_nl "$(__git_refs)"
740 741 742 743
		;;
	esac
}

744 745 746 747 748 749 750 751 752 753 754

__git_complete_file ()
{
	__git_complete_revlist_file
}

__git_complete_revlist ()
{
	__git_complete_revlist_file
}

755 756
__git_complete_remote_or_refspec ()
{
757
	local cur_="$cur" cmd="${words[1]}"
758
	local i c=2 remote="" pfx="" lhs=1 no_complete_refspec=0
759 760
	while [ $c -lt $cword ]; do
		i="${words[c]}"
761
		case "$i" in
762 763 764 765 766 767 768 769 770 771 772
		--mirror) [ "$cmd" = "push" ] && no_complete_refspec=1 ;;
		--all)
			case "$cmd" in
			push) no_complete_refspec=1 ;;
			fetch)
				COMPREPLY=()
				return
				;;
			*) ;;
			esac
			;;
773 774 775 776 777 778
		-*) ;;
		*) remote="$i"; break ;;
		esac
		c=$((++c))
	done
	if [ -z "$remote" ]; then
779
		__gitcomp_nl "$(__git_remotes)"
780 781
		return
	fi
782 783 784 785
	if [ $no_complete_refspec = 1 ]; then
		COMPREPLY=()
		return
	fi
786
	[ "$remote" = "." ] && remote=
787
	case "$cur_" in
788 789 790
	*:*)
		case "$COMP_WORDBREAKS" in
		*:*) : great ;;
791
		*)   pfx="${cur_%%:*}:" ;;
792
		esac
793
		cur_="${cur_#*:}"
794 795 796 797
		lhs=0
		;;
	+*)
		pfx="+"
798
		cur_="${cur_#+}"
799 800 801 802 803
		;;
	esac
	case "$cmd" in
	fetch)
		if [ $lhs = 1 ]; then
804
			__gitcomp_nl "$(__git_refs2 "$remote")" "$pfx" "$cur_"
805
		else
806
			__gitcomp_nl "$(__git_refs)" "$pfx" "$cur_"
807 808 809 810
		fi
		;;
	pull)
		if [ $lhs = 1 ]; then
811
			__gitcomp_nl "$(__git_refs "$remote")" "$pfx" "$cur_"
812
		else
813
			__gitcomp_nl "$(__git_refs)" "$pfx" "$cur_"
814 815 816 817
		fi
		;;
	push)
		if [ $lhs = 1 ]; then
818
			__gitcomp_nl "$(__git_refs)" "$pfx" "$cur_"
819
		else
820
			__gitcomp_nl "$(__git_refs "$remote")" "$pfx" "$cur_"
821 822 823 824 825
		fi
		;;
	esac
}

826 827
__git_complete_strategy ()
{
J
Jonathan Nieder 已提交
828
	__git_compute_merge_strategies
829
	case "$prev" in
830
	-s|--strategy)
J
Jonathan Nieder 已提交
831
		__gitcomp "$__git_merge_strategies"
832 833 834 835
		return 0
	esac
	case "$cur" in
	--strategy=*)
J
Jonathan Nieder 已提交
836
		__gitcomp "$__git_merge_strategies" "" "${cur##--strategy=}"
837 838 839 840 841 842
		return 0
		;;
	esac
	return 1
}

J
Jonathan Nieder 已提交
843
__git_list_all_commands ()
844 845
{
	local i IFS=" "$'\n'
846
	for i in $(git help -a|egrep '^  [a-zA-Z0-9]')
847 848 849 850 851 852 853 854
	do
		case $i in
		*--*)             : helper pattern;;
		*) echo $i;;
		esac
	done
}

J
Jonathan Nieder 已提交
855 856 857
__git_all_commands=
__git_compute_all_commands ()
{
858 859
	test -n "$__git_all_commands" ||
	__git_all_commands=$(__git_list_all_commands)
J
Jonathan Nieder 已提交
860 861 862
}

__git_list_porcelain_commands ()
863 864
{
	local i IFS=" "$'\n'
J
Jonathan Nieder 已提交
865 866
	__git_compute_all_commands
	for i in "help" $__git_all_commands
867 868
	do
		case $i in
869
		*--*)             : helper pattern;;
870 871 872
		applymbox)        : ask gittus;;
		applypatch)       : ask gittus;;
		archimport)       : import;;
873
		cat-file)         : plumbing;;
874
		check-attr)       : plumbing;;
875
		check-ref-format) : plumbing;;
876
		checkout-index)   : plumbing;;
877
		commit-tree)      : plumbing;;
878
		count-objects)    : infrequent;;
879 880
		cvsexportcommit)  : export;;
		cvsimport)        : import;;
881 882
		cvsserver)        : daemon;;
		daemon)           : daemon;;
883 884 885
		diff-files)       : plumbing;;
		diff-index)       : plumbing;;
		diff-tree)        : plumbing;;
S
Shawn O. Pearce 已提交
886
		fast-import)      : import;;
887
		fast-export)      : export;;
888
		fsck-objects)     : plumbing;;
889
		fetch-pack)       : plumbing;;
890
		fmt-merge-msg)    : plumbing;;
891
		for-each-ref)     : plumbing;;
892 893 894
		hash-object)      : plumbing;;
		http-*)           : transport;;
		index-pack)       : plumbing;;
895
		init-db)          : deprecated;;
896
		local-fetch)      : plumbing;;
897 898 899 900
		lost-found)       : infrequent;;
		ls-files)         : plumbing;;
		ls-remote)        : plumbing;;
		ls-tree)          : plumbing;;
901 902 903 904 905 906 907 908 909 910 911
		mailinfo)         : plumbing;;
		mailsplit)        : plumbing;;
		merge-*)          : plumbing;;
		mktree)           : plumbing;;
		mktag)            : plumbing;;
		pack-objects)     : plumbing;;
		pack-redundant)   : plumbing;;
		pack-refs)        : plumbing;;
		parse-remote)     : plumbing;;
		patch-id)         : plumbing;;
		peek-remote)      : plumbing;;
912 913 914
		prune)            : plumbing;;
		prune-packed)     : plumbing;;
		quiltimport)      : import;;
915 916
		read-tree)        : plumbing;;
		receive-pack)     : plumbing;;
917
		remote-*)         : transport;;
918
		repo-config)      : deprecated;;
919 920 921 922 923 924
		rerere)           : plumbing;;
		rev-list)         : plumbing;;
		rev-parse)        : plumbing;;
		runstatus)        : plumbing;;
		sh-setup)         : internal;;
		shell)            : daemon;;
925
		show-ref)         : plumbing;;
926 927 928 929 930
		send-pack)        : plumbing;;
		show-index)       : plumbing;;
		ssh-*)            : transport;;
		stripspace)       : plumbing;;
		symbolic-ref)     : plumbing;;
931
		tar-tree)         : deprecated;;
932 933
		unpack-file)      : plumbing;;
		unpack-objects)   : plumbing;;
934
		update-index)     : plumbing;;
935 936 937 938 939
		update-ref)       : plumbing;;
		update-server-info) : daemon;;
		upload-archive)   : plumbing;;
		upload-pack)      : plumbing;;
		write-tree)       : plumbing;;
940 941
		var)              : infrequent;;
		verify-pack)      : infrequent;;
942
		verify-tag)       : plumbing;;
943 944 945 946
		*) echo $i;;
		esac
	done
}
J
Jonathan Nieder 已提交
947 948 949 950 951

__git_porcelain_commands=
__git_compute_porcelain_commands ()
{
	__git_compute_all_commands
952 953
	test -n "$__git_porcelain_commands" ||
	__git_porcelain_commands=$(__git_list_porcelain_commands)
J
Jonathan Nieder 已提交
954
}
955

956 957 958 959 960 961 962 963 964 965 966 967 968
__git_pretty_aliases ()
{
	local i IFS=$'\n'
	for i in $(git --git-dir="$(__gitdir)" config --get-regexp "pretty\..*" 2>/dev/null); do
		case "$i" in
		pretty.*)
			i="${i#pretty.}"
			echo "${i/ */}"
			;;
		esac
	done
}

969 970
__git_aliases ()
{
971
	local i IFS=$'\n'
972
	for i in $(git --git-dir="$(__gitdir)" config --get-regexp "alias\..*" 2>/dev/null); do
973 974 975 976 977 978
		case "$i" in
		alias.*)
			i="${i#alias.}"
			echo "${i/ */}"
			;;
		esac
979
	done
980 981
}

982
# __git_aliased_command requires 1 argument
983 984
__git_aliased_command ()
{
985
	local word cmdline=$(git --git-dir="$(__gitdir)" \
986
		config --get "alias.$1")
987
	for word in $cmdline; do
988
		case "$word" in
989 990
		\!gitk|gitk)
			echo "gitk"
991
			return
992
			;;
993 994 995 996 997 998
		\!*)	: shell command alias ;;
		-*)	: option ;;
		*=*)	: setting env ;;
		git)	: git itself ;;
		*)
			echo "$word"
999
			return
1000
		esac
1001 1002 1003
	done
}

1004 1005
# __git_find_on_cmdline requires 1 argument
__git_find_on_cmdline ()
1006
{
1007
	local word subcommand c=1
1008 1009
	while [ $c -lt $cword ]; do
		word="${words[c]}"
1010 1011 1012 1013 1014 1015 1016 1017 1018 1019
		for subcommand in $1; do
			if [ "$subcommand" = "$word" ]; then
				echo "$subcommand"
				return
			fi
		done
		c=$((++c))
	done
}

1020 1021
__git_has_doubledash ()
{
1022
	local c=1
1023 1024
	while [ $c -lt $cword ]; do
		if [ "--" = "${words[c]}" ]; then
1025 1026 1027 1028 1029 1030 1031
			return 0
		fi
		c=$((++c))
	done
	return 1
}

1032
__git_whitespacelist="nowarn warn error error-all fix"
1033 1034 1035

_git_am ()
{
1036
	local dir="$(__gitdir)"
1037
	if [ -d "$dir"/rebase-apply ]; then
1038
		__gitcomp "--skip --continue --resolved --abort"
1039 1040 1041 1042
		return
	fi
	case "$cur" in
	--whitespace=*)
1043
		__gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
1044 1045 1046
		return
		;;
	--*)
1047
		__gitcomp "
1048
			--3way --committer-date-is-author-date --ignore-date
1049
			--ignore-whitespace --ignore-space-change
1050
			--interactive --keep --no-utf8 --signoff --utf8
1051
			--whitespace= --scissors
1052
			"
1053 1054 1055 1056 1057 1058 1059 1060 1061
		return
	esac
	COMPREPLY=()
}

_git_apply ()
{
	case "$cur" in
	--whitespace=*)
1062
		__gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
1063 1064 1065
		return
		;;
	--*)
1066
		__gitcomp "
1067 1068 1069
			--stat --numstat --summary --check --index
			--cached --index-info --reverse --reject --unidiff-zero
			--apply --no-add --exclude=
1070
			--ignore-whitespace --ignore-space-change
1071
			--whitespace= --inaccurate-eof --verbose
1072
			"
1073 1074 1075 1076 1077
		return
	esac
	COMPREPLY=()
}

1078 1079
_git_add ()
{
1080 1081
	__git_has_doubledash && return

1082 1083
	case "$cur" in
	--*)
1084 1085
		__gitcomp "
			--interactive --refresh --patch --update --dry-run
1086
			--ignore-errors --intent-to-add
1087
			"
1088 1089 1090 1091 1092
		return
	esac
	COMPREPLY=()
}

1093 1094 1095 1096 1097 1098 1099 1100
_git_archive ()
{
	case "$cur" in
	--format=*)
		__gitcomp "$(git archive --list)" "" "${cur##--format=}"
		return
		;;
	--remote=*)
1101
		__gitcomp_nl "$(__git_remotes)" "" "${cur##--remote=}"
1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114
		return
		;;
	--*)
		__gitcomp "
			--format= --list --verbose
			--prefix= --remote= --exec=
			"
		return
		;;
	esac
	__git_complete_file
}

1115 1116
_git_bisect ()
{
1117 1118
	__git_has_doubledash && return

1119
	local subcommands="start bad good skip reset visualize replay log run"
1120
	local subcommand="$(__git_find_on_cmdline "$subcommands")"
1121
	if [ -z "$subcommand" ]; then
1122 1123 1124 1125 1126
		if [ -f "$(__gitdir)"/BISECT_START ]; then
			__gitcomp "$subcommands"
		else
			__gitcomp "replay start"
		fi
1127 1128 1129
		return
	fi

1130
	case "$subcommand" in
1131
	bad|good|reset|skip|start)
1132
		__gitcomp_nl "$(__git_refs)"
1133 1134 1135 1136 1137 1138 1139
		;;
	*)
		COMPREPLY=()
		;;
	esac
}

1140 1141
_git_branch ()
{
1142
	local i c=1 only_local_ref="n" has_r="n"
1143

1144 1145
	while [ $c -lt $cword ]; do
		i="${words[c]}"
1146 1147 1148 1149 1150 1151 1152
		case "$i" in
		-d|-m)	only_local_ref="y" ;;
		-r)	has_r="y" ;;
		esac
		c=$((++c))
	done

1153
	case "$cur" in
S
SZEDER Gábor 已提交
1154 1155 1156
	--*)
		__gitcomp "
			--color --no-color --verbose --abbrev= --no-abbrev
1157
			--track --no-track --contains --merged --no-merged
1158
			--set-upstream
S
SZEDER Gábor 已提交
1159 1160
			"
		;;
1161 1162
	*)
		if [ $only_local_ref = "y" -a $has_r = "n" ]; then
1163
			__gitcomp_nl "$(__git_heads)"
1164
		else
1165
			__gitcomp_nl "$(__git_refs)"
1166 1167
		fi
		;;
S
SZEDER Gábor 已提交
1168
	esac
1169 1170
}

1171 1172
_git_bundle ()
{
1173 1174
	local cmd="${words[2]}"
	case "$cword" in
1175
	2)
1176 1177
		__gitcomp "create list-heads verify unbundle"
		;;
1178
	3)
1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190
		# looking for a file
		;;
	*)
		case "$cmd" in
			create)
				__git_complete_revlist
			;;
		esac
		;;
	esac
}

1191 1192
_git_checkout ()
{
1193 1194
	__git_has_doubledash && return

1195 1196 1197 1198 1199 1200 1201
	case "$cur" in
	--conflict=*)
		__gitcomp "diff3 merge" "" "${cur##--conflict=}"
		;;
	--*)
		__gitcomp "
			--quiet --ours --theirs --track --no-track --merge
1202
			--conflict= --orphan --patch
1203 1204 1205
			"
		;;
	*)
1206 1207 1208 1209 1210 1211
		# check if --track, --no-track, or --no-guess was specified
		# if so, disable DWIM mode
		local flags="--track --no-track --no-guess" track=1
		if [ -n "$(__git_find_on_cmdline "$flags")" ]; then
			track=''
		fi
1212
		__gitcomp_nl "$(__git_refs '' $track)"
1213 1214
		;;
	esac
1215 1216
}

1217 1218 1219 1220 1221
_git_cherry ()
{
	__gitcomp "$(__git_refs)"
}

1222 1223 1224 1225
_git_cherry_pick ()
{
	case "$cur" in
	--*)
1226
		__gitcomp "--edit --no-commit"
1227 1228
		;;
	*)
1229
		__gitcomp_nl "$(__git_refs)"
1230 1231 1232 1233
		;;
	esac
}

1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246
_git_clean ()
{
	__git_has_doubledash && return

	case "$cur" in
	--*)
		__gitcomp "--dry-run --quiet"
		return
		;;
	esac
	COMPREPLY=()
}

1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270
_git_clone ()
{
	case "$cur" in
	--*)
		__gitcomp "
			--local
			--no-hardlinks
			--shared
			--reference
			--quiet
			--no-checkout
			--bare
			--mirror
			--origin
			--upload-pack
			--template=
			--depth
			"
		return
		;;
	esac
	COMPREPLY=()
}

1271 1272
_git_commit ()
{
1273 1274
	__git_has_doubledash && return

1275
	case "$cur" in
1276 1277 1278 1279 1280
	--cleanup=*)
		__gitcomp "default strip verbatim whitespace
			" "" "${cur##--cleanup=}"
		return
		;;
1281 1282
	--reuse-message=*|--reedit-message=*|\
	--fixup=*|--squash=*)
1283
		__gitcomp_nl "$(__git_refs)" "" "${cur#*=}"
1284 1285 1286 1287 1288 1289
		return
		;;
	--untracked-files=*)
		__gitcomp "all no normal" "" "${cur##--untracked-files=}"
		return
		;;
1290
	--*)
1291
		__gitcomp "
1292
			--all --author= --signoff --verify --no-verify
1293
			--edit --amend --include --only --interactive
1294 1295 1296
			--dry-run --reuse-message= --reedit-message=
			--reset-author --file= --message= --template=
			--cleanup= --untracked-files --untracked-files=
1297
			--verbose --quiet --fixup= --squash=
1298
			"
1299 1300 1301 1302 1303
		return
	esac
	COMPREPLY=()
}

1304 1305
_git_describe ()
{
1306 1307 1308 1309 1310 1311 1312 1313
	case "$cur" in
	--*)
		__gitcomp "
			--all --tags --contains --abbrev= --candidates=
			--exact-match --debug --long --match --always
			"
		return
	esac
1314
	__gitcomp_nl "$(__git_refs)"
1315 1316
}

1317
__git_diff_common_options="--stat --numstat --shortstat --summary
1318 1319
			--patch-with-stat --name-only --name-status --color
			--no-color --color-words --no-renames --check
1320
			--full-index --binary --abbrev --diff-filter=
1321
			--find-copies-harder
1322 1323
			--text --ignore-space-at-eol --ignore-space-change
			--ignore-all-space --exit-code --quiet --ext-diff
1324 1325
			--no-ext-diff
			--no-prefix --src-prefix= --dst-prefix=
1326
			--inter-hunk-context=
1327
			--patience
1328
			--raw
1329 1330
			--dirstat --dirstat= --dirstat-by-file
			--dirstat-by-file= --cumulative
1331 1332 1333 1334 1335 1336 1337 1338
"

_git_diff ()
{
	__git_has_doubledash && return

	case "$cur" in
	--*)
1339
		__gitcomp "--cached --staged --pickaxe-all --pickaxe-regex
1340
			--base --ours --theirs --no-index
1341
			$__git_diff_common_options
1342
			"
1343 1344 1345
		return
		;;
	esac
1346
	__git_complete_revlist_file
1347 1348
}

1349
__git_mergetools_common="diffuse ecmerge emerge kdiff3 meld opendiff
1350
			tkdiff vimdiff gvimdiff xxdiff araxis p4merge bc3
1351 1352 1353 1354
"

_git_difftool ()
{
1355 1356
	__git_has_doubledash && return

1357 1358 1359 1360 1361 1362
	case "$cur" in
	--tool=*)
		__gitcomp "$__git_mergetools_common kompare" "" "${cur##--tool=}"
		return
		;;
	--*)
1363 1364 1365 1366 1367
		__gitcomp "--cached --staged --pickaxe-all --pickaxe-regex
			--base --ours --theirs
			--no-renames --diff-filter= --find-copies-harder
			--relative --ignore-submodules
			--tool="
1368 1369 1370
		return
		;;
	esac
1371
	__git_complete_file
1372 1373
}

1374 1375
__git_fetch_options="
	--quiet --verbose --append --upload-pack --force --keep --depth=
1376
	--tags --no-tags --all --prune --dry-run
1377 1378
"

1379 1380
_git_fetch ()
{
1381 1382 1383 1384 1385 1386
	case "$cur" in
	--*)
		__gitcomp "$__git_fetch_options"
		return
		;;
	esac
1387
	__git_complete_remote_or_refspec
1388 1389
}

1390 1391 1392
_git_format_patch ()
{
	case "$cur" in
1393 1394 1395 1396 1397 1398
	--thread=*)
		__gitcomp "
			deep shallow
			" "" "${cur##--thread=}"
		return
		;;
1399
	--*)
1400
		__gitcomp "
1401
			--stdout --attach --no-attach --thread --thread=
1402 1403
			--output-directory
			--numbered --start-number
1404
			--numbered-files
1405
			--keep-subject
1406
			--signoff --signature --no-signature
1407
			--in-reply-to= --cc=
1408
			--full-index --binary
1409
			--not --all
1410
			--cover-letter
1411
			--no-prefix --src-prefix= --dst-prefix=
1412 1413
			--inline --suffix= --ignore-if-in-upstream
			--subject-prefix=
1414
			"
1415 1416 1417 1418 1419 1420
		return
		;;
	esac
	__git_complete_revlist
}

1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434
_git_fsck ()
{
	case "$cur" in
	--*)
		__gitcomp "
			--tags --root --unreachable --cache --no-reflogs --full
			--strict --verbose --lost-found
			"
		return
		;;
	esac
	COMPREPLY=()
}

1435 1436 1437 1438
_git_gc ()
{
	case "$cur" in
	--*)
1439
		__gitcomp "--prune --aggressive"
1440 1441 1442 1443 1444 1445
		return
		;;
	esac
	COMPREPLY=()
}

1446 1447 1448 1449 1450
_git_gitk ()
{
	_gitk
}

1451 1452 1453 1454
__git_match_ctag() {
	awk "/^${1////\\/}/ { print \$1 }" "$2"
}

1455 1456 1457 1458 1459 1460 1461 1462 1463
_git_grep ()
{
	__git_has_doubledash && return

	case "$cur" in
	--*)
		__gitcomp "
			--cached
			--text --ignore-case --word-regexp --invert-match
1464
			--full-name --line-number
1465
			--extended-regexp --basic-regexp --fixed-strings
M
Michał Kiedrowicz 已提交
1466
			--perl-regexp
1467 1468
			--files-with-matches --name-only
			--files-without-match
1469
			--max-depth
1470 1471 1472 1473 1474 1475
			--count
			--and --or --not --all-match
			"
		return
		;;
	esac
1476

1477 1478 1479
	case "$cword,$prev" in
	2,*|*,-*)
		if test -r tags; then
J
Junio C Hamano 已提交
1480
			__gitcomp_nl "$(__git_match_ctag "$cur" tags)"
1481 1482 1483 1484 1485
			return
		fi
		;;
	esac

1486
	__gitcomp_nl "$(__git_refs)"
1487 1488
}

1489 1490 1491 1492 1493 1494 1495 1496
_git_help ()
{
	case "$cur" in
	--*)
		__gitcomp "--all --info --man --web"
		return
		;;
	esac
J
Jonathan Nieder 已提交
1497
	__git_compute_all_commands
1498
	__gitcomp "$__git_all_commands $(__git_aliases)
1499 1500
		attributes cli core-tutorial cvs-migration
		diffcore gitk glossary hooks ignore modules
J
Josh Triplett 已提交
1501
		namespaces repository-layout tutorial tutorial-2
1502
		workflows
1503
		"
1504 1505
}

1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522
_git_init ()
{
	case "$cur" in
	--shared=*)
		__gitcomp "
			false true umask group all world everybody
			" "" "${cur##--shared=}"
		return
		;;
	--*)
		__gitcomp "--quiet --bare --template= --shared --shared="
		return
		;;
	esac
	COMPREPLY=()
}

1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541
_git_ls_files ()
{
	__git_has_doubledash && return

	case "$cur" in
	--*)
		__gitcomp "--cached --deleted --modified --others --ignored
			--stage --directory --no-empty-directory --unmerged
			--killed --exclude= --exclude-from=
			--exclude-per-directory= --exclude-standard
			--error-unmatch --with-tree= --full-name
			--abbrev --ignored --exclude-per-directory
			"
		return
		;;
	esac
	COMPREPLY=()
}

1542 1543
_git_ls_remote ()
{
1544
	__gitcomp_nl "$(__git_remotes)"
1545 1546 1547 1548 1549 1550 1551
}

_git_ls_tree ()
{
	__git_complete_file
}

1552 1553 1554 1555
# Options that go well for log, shortlog and gitk
__git_log_common_options="
	--not --all
	--branches --tags --remotes
1556
	--first-parent --merges --no-merges
1557 1558 1559
	--max-count=
	--max-age= --since= --after=
	--min-age= --until= --before=
1560 1561
	--min-parents= --max-parents=
	--no-min-parents --no-max-parents
1562 1563 1564 1565 1566
"
# Options that go well for log and gitk (not shortlog)
__git_log_gitk_options="
	--dense --sparse --full-history
	--simplify-merges --simplify-by-decoration
1567
	--left-right --notes --no-notes
1568 1569 1570 1571 1572 1573 1574
"
# Options that go well for log and shortlog (not gitk)
__git_log_shortlog_options="
	--author= --committer= --grep=
	--all-match
"

1575
__git_log_pretty_formats="oneline short medium full fuller email raw format:"
1576
__git_log_date_formats="relative iso8601 rfc2822 short local default raw"
1577

1578 1579
_git_log ()
{
1580 1581
	__git_has_doubledash && return

1582 1583
	local g="$(git rev-parse --git-dir 2>/dev/null)"
	local merge=""
1584
	if [ -f "$g/MERGE_HEAD" ]; then
1585 1586
		merge="--merge"
	fi
1587
	case "$cur" in
1588
	--pretty=*|--format=*)
1589
		__gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
1590
			" "" "${cur#*=}"
1591 1592
		return
		;;
1593
	--date=*)
1594
		__gitcomp "$__git_log_date_formats" "" "${cur##--date=}"
1595 1596
		return
		;;
1597 1598 1599 1600
	--decorate=*)
		__gitcomp "long short" "" "${cur##--decorate=}"
		return
		;;
1601
	--*)
1602
		__gitcomp "
1603 1604 1605
			$__git_log_common_options
			$__git_log_shortlog_options
			$__git_log_gitk_options
1606
			--root --topo-order --date-order --reverse
1607
			--follow --full-diff
1608
			--abbrev-commit --abbrev=
1609
			--relative-date --date=
1610
			--pretty= --format= --oneline
1611
			--cherry-pick
1612
			--graph
1613
			--decorate --decorate=
1614
			--walk-reflogs
1615
			--parents --children
1616
			$merge
1617
			$__git_diff_common_options
1618
			--pickaxe-all --pickaxe-regex
1619
			"
1620 1621 1622
		return
		;;
	esac
1623
	__git_complete_revlist
1624 1625
}

1626 1627
__git_merge_options="
	--no-commit --no-stat --log --no-log --squash --strategy
1628
	--commit --stat --no-squash --ff --no-ff --ff-only
1629 1630
"

1631 1632
_git_merge ()
{
1633 1634
	__git_complete_strategy && return

1635 1636
	case "$cur" in
	--*)
1637
		__gitcomp "$__git_merge_options"
1638 1639
		return
	esac
1640
	__gitcomp_nl "$(__git_refs)"
1641 1642
}

1643 1644 1645 1646
_git_mergetool ()
{
	case "$cur" in
	--tool=*)
1647
		__gitcomp "$__git_mergetools_common tortoisemerge" "" "${cur##--tool=}"
1648 1649 1650 1651 1652 1653 1654 1655 1656 1657
		return
		;;
	--*)
		__gitcomp "--tool="
		return
		;;
	esac
	COMPREPLY=()
}

1658 1659
_git_merge_base ()
{
1660
	__gitcomp_nl "$(__git_refs)"
1661 1662
}

1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673
_git_mv ()
{
	case "$cur" in
	--*)
		__gitcomp "--dry-run"
		return
		;;
	esac
	COMPREPLY=()
}

1674 1675
_git_name_rev ()
{
1676
	__gitcomp "--tags --all --stdin"
1677 1678
}

1679 1680
_git_notes ()
{
1681 1682
	local subcommands='add append copy edit list prune remove show'
	local subcommand="$(__git_find_on_cmdline "$subcommands")"
1683

1684 1685 1686 1687 1688
	case "$subcommand,$cur" in
	,--*)
		__gitcomp '--ref'
		;;
	,*)
1689
		case "${words[cword-1]}" in
1690
		--ref)
1691
			__gitcomp_nl "$(__git_refs)"
1692 1693 1694 1695 1696 1697
			;;
		*)
			__gitcomp "$subcommands --ref"
			;;
		esac
		;;
1698
	add,--reuse-message=*|append,--reuse-message=*|\
1699
	add,--reedit-message=*|append,--reedit-message=*)
1700
		__gitcomp_nl "$(__git_refs)" "" "${cur#*=}"
1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712
		;;
	add,--*|append,--*)
		__gitcomp '--file= --message= --reedit-message=
				--reuse-message='
		;;
	copy,--*)
		__gitcomp '--stdin'
		;;
	prune,--*)
		__gitcomp '--dry-run --verbose'
		;;
	prune,*)
1713 1714
		;;
	*)
1715
		case "${words[cword-1]}" in
1716 1717 1718
		-m|-F)
			;;
		*)
1719
			__gitcomp_nl "$(__git_refs)"
1720 1721
			;;
		esac
1722 1723 1724 1725
		;;
	esac
}

1726 1727
_git_pull ()
{
1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739
	__git_complete_strategy && return

	case "$cur" in
	--*)
		__gitcomp "
			--rebase --no-rebase
			$__git_merge_options
			$__git_fetch_options
		"
		return
		;;
	esac
1740
	__git_complete_remote_or_refspec
1741 1742 1743 1744
}

_git_push ()
{
1745
	case "$prev" in
1746
	--repo)
1747
		__gitcomp_nl "$(__git_remotes)"
1748 1749 1750 1751
		return
	esac
	case "$cur" in
	--repo=*)
1752
		__gitcomp_nl "$(__git_remotes)" "" "${cur##--repo=}"
1753 1754 1755 1756 1757
		return
		;;
	--*)
		__gitcomp "
			--all --mirror --tags --dry-run --force --verbose
T
Teemu Matilainen 已提交
1758
			--receive-pack= --repo= --set-upstream
1759 1760 1761 1762
		"
		return
		;;
	esac
1763
	__git_complete_remote_or_refspec
1764 1765
}

1766 1767
_git_rebase ()
{
1768
	local dir="$(__gitdir)"
1769
	if [ -d "$dir"/rebase-apply ] || [ -d "$dir"/rebase-merge ]; then
1770
		__gitcomp "--continue --skip --abort"
1771 1772
		return
	fi
1773
	__git_complete_strategy && return
1774
	case "$cur" in
1775 1776 1777 1778
	--whitespace=*)
		__gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
		return
		;;
1779
	--*)
1780 1781 1782 1783 1784
		__gitcomp "
			--onto --merge --strategy --interactive
			--preserve-merges --stat --no-stat
			--committer-date-is-author-date --ignore-date
			--ignore-whitespace --whitespace=
1785
			--autosquash
1786 1787
			"

1788 1789
		return
	esac
1790
	__gitcomp_nl "$(__git_refs)"
1791 1792
}

1793 1794 1795 1796 1797 1798 1799 1800
_git_reflog ()
{
	local subcommands="show delete expire"
	local subcommand="$(__git_find_on_cmdline "$subcommands")"

	if [ -z "$subcommand" ]; then
		__gitcomp "$subcommands"
	else
1801
		__gitcomp_nl "$(__git_refs)"
1802 1803 1804
	fi
}

1805
__git_send_email_confirm_options="always never auto cc compose"
1806
__git_send_email_suppresscc_options="author self cc bodycc sob cccmd body all"
1807

1808 1809 1810
_git_send_email ()
{
	case "$cur" in
1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827
	--confirm=*)
		__gitcomp "
			$__git_send_email_confirm_options
			" "" "${cur##--confirm=}"
		return
		;;
	--suppress-cc=*)
		__gitcomp "
			$__git_send_email_suppresscc_options
			" "" "${cur##--suppress-cc=}"

		return
		;;
	--smtp-encryption=*)
		__gitcomp "ssl tls" "" "${cur##--smtp-encryption=}"
		return
		;;
1828
	--*)
1829
		__gitcomp "--annotate --bcc --cc --cc-cmd --chain-reply-to
1830 1831
			--compose --confirm= --dry-run --envelope-sender
			--from --identity
1832 1833 1834
			--in-reply-to --no-chain-reply-to --no-signed-off-by-cc
			--no-suppress-from --no-thread --quiet
			--signed-off-by-cc --smtp-pass --smtp-server
1835 1836
			--smtp-server-port --smtp-encryption= --smtp-user
			--subject --suppress-cc= --suppress-from --thread --to
1837
			--validate --no-validate"
1838 1839 1840 1841 1842 1843
		return
		;;
	esac
	COMPREPLY=()
}

1844 1845 1846 1847 1848
_git_stage ()
{
	_git_add
}

1849 1850
__git_config_get_set_variables ()
{
1851
	local prevword word config_file= c=$cword
1852
	while [ $c -gt 1 ]; do
1853
		word="${words[c]}"
1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867
		case "$word" in
		--global|--system|--file=*)
			config_file="$word"
			break
			;;
		-f|--file)
			config_file="$word $prevword"
			break
			;;
		esac
		prevword=$word
		c=$((--c))
	done

1868
	git --git-dir="$(__gitdir)" config $config_file --list 2>/dev/null |
1869
	while read -r line
1870 1871 1872 1873
	do
		case "$line" in
		*.*=*)
			echo "${line/=*/}"
1874 1875 1876 1877 1878
			;;
		esac
	done
}

1879
_git_config ()
1880
{
1881
	case "$prev" in
1882
	branch.*.remote)
1883
		__gitcomp_nl "$(__git_remotes)"
1884 1885 1886
		return
		;;
	branch.*.merge)
1887
		__gitcomp_nl "$(__git_refs)"
1888 1889 1890
		return
		;;
	remote.*.fetch)
1891
		local remote="${prev#remote.}"
1892
		remote="${remote%.fetch}"
1893 1894 1895 1896
		if [ -z "$cur" ]; then
			COMPREPLY=("refs/heads/")
			return
		fi
1897
		__gitcomp_nl "$(__git_refs_remotes "$remote")"
1898 1899 1900
		return
		;;
	remote.*.push)
1901
		local remote="${prev#remote.}"
1902
		remote="${remote%.push}"
1903
		__gitcomp_nl "$(git --git-dir="$(__gitdir)" \
1904
			for-each-ref --format='%(refname):%(refname)' \
1905 1906 1907 1908
			refs/heads)"
		return
		;;
	pull.twohead|pull.octopus)
J
Jonathan Nieder 已提交
1909 1910
		__git_compute_merge_strategies
		__gitcomp "$__git_merge_strategies"
1911 1912
		return
		;;
1913 1914
	color.branch|color.diff|color.interactive|\
	color.showbranch|color.status|color.ui)
1915 1916 1917
		__gitcomp "always never auto"
		return
		;;
1918 1919 1920 1921
	color.pager)
		__gitcomp "false true"
		return
		;;
1922 1923
	color.*.*)
		__gitcomp "
1924
			normal black red green yellow blue magenta cyan white
1925 1926
			bold dim ul blink reverse
			"
1927 1928
		return
		;;
1929 1930 1931 1932
	help.format)
		__gitcomp "man info web html"
		return
		;;
1933 1934 1935 1936
	log.date)
		__gitcomp "$__git_log_date_formats"
		return
		;;
1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948
	sendemail.aliasesfiletype)
		__gitcomp "mutt mailrc pine elm gnus"
		return
		;;
	sendemail.confirm)
		__gitcomp "$__git_send_email_confirm_options"
		return
		;;
	sendemail.suppresscc)
		__gitcomp "$__git_send_email_suppresscc_options"
		return
		;;
1949
	--get|--get-all|--unset|--unset-all)
1950
		__gitcomp_nl "$(__git_config_get_set_variables)"
1951 1952
		return
		;;
1953 1954 1955 1956 1957 1958 1959
	*.*)
		COMPREPLY=()
		return
		;;
	esac
	case "$cur" in
	--*)
1960
		__gitcomp "
1961
			--global --system --file=
1962
			--list --replace-all
1963
			--get --get-all --get-regexp
1964
			--add --unset --unset-all
1965
			--remove-section --rename-section
1966
			"
1967 1968 1969
		return
		;;
	branch.*.*)
1970 1971
		local pfx="${cur%.*}." cur_="${cur##*.}"
		__gitcomp "remote merge mergeoptions rebase" "$pfx" "$cur_"
1972 1973 1974
		return
		;;
	branch.*)
1975
		local pfx="${cur%.*}." cur_="${cur#*.}"
1976
		__gitcomp_nl "$(__git_heads)" "$pfx" "$cur_" "."
1977 1978
		return
		;;
1979
	guitool.*.*)
1980
		local pfx="${cur%.*}." cur_="${cur##*.}"
1981 1982 1983
		__gitcomp "
			argprompt cmd confirm needsfile noconsole norescan
			prompt revprompt revunmerged title
1984
			" "$pfx" "$cur_"
1985 1986 1987
		return
		;;
	difftool.*.*)
1988 1989
		local pfx="${cur%.*}." cur_="${cur##*.}"
		__gitcomp "cmd path" "$pfx" "$cur_"
1990 1991 1992
		return
		;;
	man.*.*)
1993 1994
		local pfx="${cur%.*}." cur_="${cur##*.}"
		__gitcomp "cmd path" "$pfx" "$cur_"
1995 1996 1997
		return
		;;
	mergetool.*.*)
1998 1999
		local pfx="${cur%.*}." cur_="${cur##*.}"
		__gitcomp "cmd path trustExitCode" "$pfx" "$cur_"
2000 2001 2002
		return
		;;
	pager.*)
2003
		local pfx="${cur%.*}." cur_="${cur#*.}"
J
Jonathan Nieder 已提交
2004
		__git_compute_all_commands
2005
		__gitcomp_nl "$__git_all_commands" "$pfx" "$cur_"
2006 2007
		return
		;;
2008
	remote.*.*)
2009
		local pfx="${cur%.*}." cur_="${cur##*.}"
2010
		__gitcomp "
2011
			url proxy fetch push mirror skipDefaultUpdate
2012
			receivepack uploadpack tagopt pushurl
2013
			" "$pfx" "$cur_"
2014 2015 2016
		return
		;;
	remote.*)
2017
		local pfx="${cur%.*}." cur_="${cur#*.}"
2018
		__gitcomp_nl "$(__git_remotes)" "$pfx" "$cur_" "."
2019 2020
		return
		;;
2021
	url.*.*)
2022 2023
		local pfx="${cur%.*}." cur_="${cur##*.}"
		__gitcomp "insteadOf pushInsteadOf" "$pfx" "$cur_"
2024 2025
		return
		;;
2026
	esac
2027
	__gitcomp "
2028 2029 2030 2031 2032 2033 2034
		add.ignoreErrors
		advice.commitBeforeMerge
		advice.detachedHead
		advice.implicitIdentity
		advice.pushNonFastForward
		advice.resolveConflict
		advice.statusHints
2035
		alias.
2036
		am.keepcr
2037
		apply.ignorewhitespace
2038
		apply.whitespace
2039 2040
		branch.autosetupmerge
		branch.autosetuprebase
2041
		browser.
2042
		clean.requireForce
2043 2044 2045 2046
		color.branch
		color.branch.current
		color.branch.local
		color.branch.plain
2047
		color.branch.remote
2048 2049 2050 2051 2052
		color.decorate.HEAD
		color.decorate.branch
		color.decorate.remoteBranch
		color.decorate.stash
		color.decorate.tag
2053
		color.diff
2054
		color.diff.commit
2055
		color.diff.frag
2056
		color.diff.func
2057
		color.diff.meta
2058
		color.diff.new
2059 2060
		color.diff.old
		color.diff.plain
2061
		color.diff.whitespace
2062
		color.grep
2063 2064 2065 2066
		color.grep.context
		color.grep.filename
		color.grep.function
		color.grep.linenumber
2067
		color.grep.match
2068 2069
		color.grep.selected
		color.grep.separator
2070
		color.interactive
2071
		color.interactive.error
2072 2073 2074
		color.interactive.header
		color.interactive.help
		color.interactive.prompt
2075
		color.pager
2076
		color.showbranch
2077
		color.status
2078 2079
		color.status.added
		color.status.changed
2080
		color.status.header
2081
		color.status.nobranch
2082
		color.status.untracked
2083 2084
		color.status.updated
		color.ui
2085
		commit.status
2086
		commit.template
2087
		core.abbrev
2088 2089
		core.askpass
		core.attributesfile
2090 2091
		core.autocrlf
		core.bare
2092
		core.bigFileThreshold
2093
		core.compression
2094
		core.createObject
2095 2096
		core.deltaBaseCacheLimit
		core.editor
2097
		core.eol
2098
		core.excludesfile
2099
		core.fileMode
2100
		core.fsyncobjectfiles
2101
		core.gitProxy
2102
		core.ignoreCygwinFSTricks
2103
		core.ignoreStat
2104
		core.ignorecase
2105 2106
		core.logAllRefUpdates
		core.loosecompression
2107
		core.notesRef
2108 2109
		core.packedGitLimit
		core.packedGitWindowSize
2110
		core.pager
2111
		core.preferSymlinkRefs
2112 2113
		core.preloadindex
		core.quotepath
2114
		core.repositoryFormatVersion
2115
		core.safecrlf
2116
		core.sharedRepository
2117
		core.sparseCheckout
2118 2119
		core.symlinks
		core.trustctime
2120
		core.warnAmbiguousRefs
2121 2122 2123 2124
		core.whitespace
		core.worktree
		diff.autorefreshindex
		diff.external
2125
		diff.ignoreSubmodules
2126
		diff.mnemonicprefix
2127
		diff.noprefix
2128 2129
		diff.renameLimit
		diff.renames
2130 2131 2132
		diff.suppressBlankEmpty
		diff.tool
		diff.wordRegex
2133
		difftool.
2134
		difftool.prompt
2135
		fetch.recurseSubmodules
2136
		fetch.unpackLimit
2137 2138
		format.attach
		format.cc
2139
		format.headers
2140 2141
		format.numbered
		format.pretty
2142
		format.signature
2143 2144
		format.signoff
		format.subjectprefix
2145
		format.suffix
2146
		format.thread
2147 2148
		format.to
		gc.
2149 2150 2151
		gc.aggressiveWindow
		gc.auto
		gc.autopacklimit
2152
		gc.packrefs
2153
		gc.pruneexpire
2154 2155 2156 2157
		gc.reflogexpire
		gc.reflogexpireunreachable
		gc.rerereresolved
		gc.rerereunresolved
2158
		gitcvs.allbinary
2159
		gitcvs.commitmsgannotation
2160
		gitcvs.dbTableNamePrefix
2161 2162 2163 2164 2165 2166
		gitcvs.dbdriver
		gitcvs.dbname
		gitcvs.dbpass
		gitcvs.dbuser
		gitcvs.enabled
		gitcvs.logfile
2167
		gitcvs.usecrlfattr
2168
		guitool.
2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182
		gui.blamehistoryctx
		gui.commitmsgwidth
		gui.copyblamethreshold
		gui.diffcontext
		gui.encoding
		gui.fastcopyblame
		gui.matchtrackingbranch
		gui.newbranchtemplate
		gui.pruneduringfetch
		gui.spellingdictionary
		gui.trustmtime
		help.autocorrect
		help.browser
		help.format
2183 2184
		http.lowSpeedLimit
		http.lowSpeedTime
2185
		http.maxRequests
2186
		http.minSessions
2187
		http.noEPSV
2188
		http.postBuffer
2189
		http.proxy
2190 2191 2192
		http.sslCAInfo
		http.sslCAPath
		http.sslCert
2193
		http.sslCertPasswordProtected
2194 2195
		http.sslKey
		http.sslVerify
2196
		http.useragent
2197 2198
		i18n.commitEncoding
		i18n.logOutputEncoding
2199
		imap.authMethod
2200 2201 2202 2203 2204 2205 2206 2207
		imap.folder
		imap.host
		imap.pass
		imap.port
		imap.preformattedHTML
		imap.sslverify
		imap.tunnel
		imap.user
2208
		init.templatedir
2209 2210 2211 2212 2213
		instaweb.browser
		instaweb.httpd
		instaweb.local
		instaweb.modulepath
		instaweb.port
2214
		interactive.singlekey
2215
		log.date
2216
		log.decorate
2217
		log.showroot
2218
		mailmap.file
2219
		man.
2220
		man.viewer
2221
		merge.
2222 2223 2224
		merge.conflictstyle
		merge.log
		merge.renameLimit
2225
		merge.renormalize
2226
		merge.stat
2227
		merge.tool
2228
		merge.verbosity
2229
		mergetool.
2230
		mergetool.keepBackup
2231
		mergetool.keepTemporaries
2232
		mergetool.prompt
2233 2234 2235 2236 2237 2238
		notes.displayRef
		notes.rewrite.
		notes.rewrite.amend
		notes.rewrite.rebase
		notes.rewriteMode
		notes.rewriteRef
2239 2240
		pack.compression
		pack.deltaCacheLimit
2241 2242
		pack.deltaCacheSize
		pack.depth
2243 2244 2245
		pack.indexVersion
		pack.packSizeLimit
		pack.threads
2246 2247
		pack.window
		pack.windowMemory
2248
		pager.
2249
		pretty.
2250 2251
		pull.octopus
		pull.twohead
2252
		push.default
2253
		rebase.autosquash
2254
		rebase.stat
2255
		receive.autogc
2256
		receive.denyCurrentBranch
2257
		receive.denyDeleteCurrent
2258
		receive.denyDeletes
2259
		receive.denyNonFastForwards
2260
		receive.fsckObjects
2261
		receive.unpackLimit
2262 2263
		receive.updateserverinfo
		remotes.
2264 2265 2266
		repack.usedeltabaseoffset
		rerere.autoupdate
		rerere.enabled
2267
		sendemail.
2268
		sendemail.aliasesfile
2269
		sendemail.aliasfiletype
2270 2271 2272 2273 2274 2275
		sendemail.bcc
		sendemail.cc
		sendemail.cccmd
		sendemail.chainreplyto
		sendemail.confirm
		sendemail.envelopesender
2276 2277
		sendemail.from
		sendemail.identity
2278 2279
		sendemail.multiedit
		sendemail.signedoffbycc
2280
		sendemail.smtpdomain
2281 2282 2283
		sendemail.smtpencryption
		sendemail.smtppass
		sendemail.smtpserver
2284
		sendemail.smtpserveroption
2285 2286 2287 2288 2289 2290 2291
		sendemail.smtpserverport
		sendemail.smtpuser
		sendemail.suppresscc
		sendemail.suppressfrom
		sendemail.thread
		sendemail.to
		sendemail.validate
2292
		showbranch.default
2293 2294
		status.relativePaths
		status.showUntrackedFiles
2295 2296
		status.submodulesummary
		submodule.
2297 2298
		tar.umask
		transfer.unpackLimit
2299
		url.
2300
		user.email
2301
		user.name
2302
		user.signingkey
2303
		web.browser
2304
		branch. remote.
2305
	"
2306 2307
}

2308 2309
_git_remote ()
{
2310
	local subcommands="add rename rm show prune update set-head"
2311
	local subcommand="$(__git_find_on_cmdline "$subcommands")"
2312
	if [ -z "$subcommand" ]; then
2313
		__gitcomp "$subcommands"
2314 2315 2316
		return
	fi

2317
	case "$subcommand" in
2318
	rename|rm|show|prune)
2319
		__gitcomp_nl "$(__git_remotes)"
2320
		;;
2321 2322
	update)
		local i c='' IFS=$'\n'
2323 2324 2325
		for i in $(git --git-dir="$(__gitdir)" config --get-regexp "remotes\..*" 2>/dev/null); do
			i="${i#remotes.}"
			c="$c ${i/ */}"
2326 2327 2328
		done
		__gitcomp "$c"
		;;
2329 2330 2331 2332 2333 2334
	*)
		COMPREPLY=()
		;;
	esac
}

2335 2336
_git_replace ()
{
2337
	__gitcomp_nl "$(__git_refs)"
2338 2339
}

2340 2341
_git_reset ()
{
2342 2343
	__git_has_doubledash && return

2344 2345
	case "$cur" in
	--*)
S
SZEDER Gábor 已提交
2346
		__gitcomp "--merge --mixed --hard --soft --patch"
2347 2348 2349
		return
		;;
	esac
2350
	__gitcomp_nl "$(__git_refs)"
2351 2352
}

2353 2354 2355 2356 2357 2358 2359 2360
_git_revert ()
{
	case "$cur" in
	--*)
		__gitcomp "--edit --mainline --no-edit --no-commit --signoff"
		return
		;;
	esac
2361
	__gitcomp_nl "$(__git_refs)"
2362 2363
}

2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376
_git_rm ()
{
	__git_has_doubledash && return

	case "$cur" in
	--*)
		__gitcomp "--cached --dry-run --ignore-unmatch --quiet"
		return
		;;
	esac
	COMPREPLY=()
}

2377 2378
_git_shortlog ()
{
2379 2380
	__git_has_doubledash && return

2381 2382 2383
	case "$cur" in
	--*)
		__gitcomp "
2384 2385
			$__git_log_common_options
			$__git_log_shortlog_options
2386 2387 2388 2389 2390 2391 2392 2393
			--numbered --summary
			"
		return
		;;
	esac
	__git_complete_revlist
}

2394 2395
_git_show ()
{
2396 2397
	__git_has_doubledash && return

2398
	case "$cur" in
2399
	--pretty=*|--format=*)
2400
		__gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
2401
			" "" "${cur#*=}"
2402 2403
		return
		;;
2404
	--*)
2405
		__gitcomp "--pretty= --format= --abbrev-commit --oneline
2406 2407
			$__git_diff_common_options
			"
2408 2409 2410 2411 2412 2413
		return
		;;
	esac
	__git_complete_file
}

2414 2415 2416 2417 2418 2419 2420
_git_show_branch ()
{
	case "$cur" in
	--*)
		__gitcomp "
			--all --remotes --topo-order --current --more=
			--list --independent --merge-base --no-name
2421
			--color --no-color
2422
			--sha1-name --sparse --topics --reflog
2423 2424 2425 2426 2427 2428 2429
			"
		return
		;;
	esac
	__git_complete_revlist
}

J
Junio C Hamano 已提交
2430 2431
_git_stash ()
{
2432
	local save_opts='--keep-index --no-keep-index --quiet --patch'
2433
	local subcommands='save list show apply clear drop pop create branch'
2434
	local subcommand="$(__git_find_on_cmdline "$subcommands")"
2435
	if [ -z "$subcommand" ]; then
2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447
		case "$cur" in
		--*)
			__gitcomp "$save_opts"
			;;
		*)
			if [ -z "$(__git_find_on_cmdline "$save_opts")" ]; then
				__gitcomp "$subcommands"
			else
				COMPREPLY=()
			fi
			;;
		esac
2448 2449 2450
	else
		case "$subcommand,$cur" in
		save,--*)
2451
			__gitcomp "$save_opts"
2452
			;;
2453
		apply,--*|pop,--*)
2454
			__gitcomp "--index --quiet"
2455
			;;
2456
		show,--*|drop,--*|branch,--*)
2457 2458 2459
			COMPREPLY=()
			;;
		show,*|apply,*|drop,*|pop,*|branch,*)
2460
			__gitcomp_nl "$(git --git-dir="$(__gitdir)" stash list \
2461 2462
					| sed -n -e 's/:.*//p')"
			;;
2463 2464 2465 2466
		*)
			COMPREPLY=()
			;;
		esac
2467
	fi
J
Junio C Hamano 已提交
2468 2469
}

2470 2471
_git_submodule ()
{
2472 2473
	__git_has_doubledash && return

2474
	local subcommands="add status init update summary foreach sync"
2475
	if [ -z "$(__git_find_on_cmdline "$subcommands")" ]; then
2476 2477 2478 2479 2480
		case "$cur" in
		--*)
			__gitcomp "--quiet --cached"
			;;
		*)
2481
			__gitcomp "$subcommands"
2482 2483 2484 2485 2486 2487
			;;
		esac
		return
	fi
}

2488 2489 2490 2491 2492
_git_svn ()
{
	local subcommands="
		init fetch clone rebase dcommit log find-rev
		set-tree commit-diff info create-ignore propget
S
SZEDER Gábor 已提交
2493
		proplist show-ignore show-externals branch tag blame
2494
		migrate mkdirs reset gc
2495
		"
2496
	local subcommand="$(__git_find_on_cmdline "$subcommands")"
2497 2498 2499 2500 2501 2502 2503 2504
	if [ -z "$subcommand" ]; then
		__gitcomp "$subcommands"
	else
		local remote_opts="--username= --config-dir= --no-auth-cache"
		local fc_opts="
			--follow-parent --authors-file= --repack=
			--no-metadata --use-svm-props --use-svnsync-props
			--log-window-size= --no-checkout --quiet
S
SZEDER Gábor 已提交
2505 2506
			--repack-flags --use-log-author --localtime
			--ignore-paths= $remote_opts
2507 2508 2509 2510 2511
			"
		local init_opts="
			--template= --shared= --trunk= --tags=
			--branches= --stdlayout --minimize-url
			--no-metadata --use-svm-props --use-svnsync-props
S
SZEDER Gábor 已提交
2512 2513
			--rewrite-root= --prefix= --use-log-author
			--add-author-from $remote_opts
2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531
			"
		local cmt_opts="
			--edit --rmdir --find-copies-harder --copy-similarity=
			"

		case "$subcommand,$cur" in
		fetch,--*)
			__gitcomp "--revision= --fetch-all $fc_opts"
			;;
		clone,--*)
			__gitcomp "--revision= $fc_opts $init_opts"
			;;
		init,--*)
			__gitcomp "$init_opts"
			;;
		dcommit,--*)
			__gitcomp "
				--merge --strategy= --verbose --dry-run
S
SZEDER Gábor 已提交
2532 2533
				--fetch-all --no-rebase --commit-url
				--revision $cmt_opts $fc_opts
2534 2535 2536 2537 2538 2539
				"
			;;
		set-tree,--*)
			__gitcomp "--stdin $cmt_opts $fc_opts"
			;;
		create-ignore,--*|propget,--*|proplist,--*|show-ignore,--*|\
2540
		show-externals,--*|mkdirs,--*)
2541 2542 2543 2544 2545 2546
			__gitcomp "--revision="
			;;
		log,--*)
			__gitcomp "
				--limit= --revision= --verbose --incremental
				--oneline --show-commit --non-recursive
S
SZEDER Gábor 已提交
2547
				--authors-file= --color
2548 2549 2550 2551 2552
				"
			;;
		rebase,--*)
			__gitcomp "
				--merge --verbose --strategy= --local
S
SZEDER Gábor 已提交
2553
				--fetch-all --dry-run $fc_opts
2554 2555 2556 2557 2558 2559 2560 2561
				"
			;;
		commit-diff,--*)
			__gitcomp "--message= --file= --revision= $cmt_opts"
			;;
		info,--*)
			__gitcomp "--url"
			;;
S
SZEDER Gábor 已提交
2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576
		branch,--*)
			__gitcomp "--dry-run --message --tag"
			;;
		tag,--*)
			__gitcomp "--dry-run --message"
			;;
		blame,--*)
			__gitcomp "--git-format"
			;;
		migrate,--*)
			__gitcomp "
				--config-dir= --ignore-paths= --minimize
				--no-auth-cache --username=
				"
			;;
2577 2578 2579
		reset,--*)
			__gitcomp "--revision= --parent"
			;;
2580 2581 2582 2583 2584 2585 2586
		*)
			COMPREPLY=()
			;;
		esac
	fi
}

2587 2588 2589
_git_tag ()
{
	local i c=1 f=0
2590 2591
	while [ $c -lt $cword ]; do
		i="${words[c]}"
2592 2593
		case "$i" in
		-d|-v)
2594
			__gitcomp_nl "$(__git_tags)"
2595 2596 2597 2598 2599 2600 2601 2602 2603
			return
			;;
		-f)
			f=1
			;;
		esac
		c=$((++c))
	done

2604
	case "$prev" in
2605 2606 2607
	-m|-F)
		COMPREPLY=()
		;;
2608
	-*|tag)
2609
		if [ $f = 1 ]; then
2610
			__gitcomp_nl "$(__git_tags)"
2611 2612 2613 2614 2615
		else
			COMPREPLY=()
		fi
		;;
	*)
2616
		__gitcomp_nl "$(__git_refs)"
2617 2618 2619 2620
		;;
	esac
}

2621 2622 2623 2624 2625
_git_whatchanged ()
{
	_git_log
}

2626 2627
_git ()
{
2628 2629
	local i c=1 command __git_dir

2630
	if [[ -n ${ZSH_VERSION-} ]]; then
2631 2632
		emulate -L bash
		setopt KSH_TYPESET
2633 2634 2635 2636

		# workaround zsh's bug that leaves 'words' as a special
		# variable in versions < 4.3.12
		typeset -h words
2637 2638 2639 2640

		# workaround zsh's bug that quotes spaces in the COMPREPLY
		# array if IFS doesn't contain spaces.
		typeset -h IFS
2641 2642
	fi

2643 2644
	local cur words cword prev
	_get_comp_words_by_ref -n =: cur words cword prev
2645 2646
	while [ $c -lt $cword ]; do
		i="${words[c]}"
2647 2648 2649
		case "$i" in
		--git-dir=*) __git_dir="${i#--git-dir=}" ;;
		--bare)      __git_dir="." ;;
2650 2651
		--version|-p|--paginate) ;;
		--help) command="help"; break ;;
2652 2653 2654 2655 2656
		*) command="$i"; break ;;
		esac
		c=$((++c))
	done

2657
	if [ -z "$command" ]; then
2658
		case "$cur" in
2659
		--*)   __gitcomp "
2660
			--paginate
2661 2662 2663 2664 2665
			--no-pager
			--git-dir=
			--bare
			--version
			--exec-path
2666
			--html-path
2667
			--work-tree=
J
Josh Triplett 已提交
2668
			--namespace=
2669
			--help
2670 2671
			"
			;;
J
Jonathan Nieder 已提交
2672 2673
		*)     __git_compute_porcelain_commands
		       __gitcomp "$__git_porcelain_commands $(__git_aliases)" ;;
2674 2675
		esac
		return
2676
	fi
2677

2678
	local completion_func="_git_${command//-/_}"
2679
	declare -f $completion_func >/dev/null && $completion_func && return
2680

2681
	local expansion=$(__git_aliased_command "$command")
2682 2683
	if [ -n "$expansion" ]; then
		completion_func="_git_${expansion//-/_}"
2684
		declare -f $completion_func >/dev/null && $completion_func
2685
	fi
2686 2687 2688 2689
}

_gitk ()
{
2690
	if [[ -n ${ZSH_VERSION-} ]]; then
2691 2692
		emulate -L bash
		setopt KSH_TYPESET
2693 2694 2695 2696

		# workaround zsh's bug that leaves 'words' as a special
		# variable in versions < 4.3.12
		typeset -h words
2697 2698 2699 2700

		# workaround zsh's bug that quotes spaces in the COMPREPLY
		# array if IFS doesn't contain spaces.
		typeset -h IFS
2701 2702
	fi

2703 2704 2705
	local cur words cword prev
	_get_comp_words_by_ref -n =: cur words cword prev

2706 2707
	__git_has_doubledash && return

2708
	local g="$(__gitdir)"
2709
	local merge=""
2710
	if [ -f "$g/MERGE_HEAD" ]; then
2711 2712
		merge="--merge"
	fi
2713 2714
	case "$cur" in
	--*)
2715 2716 2717 2718 2719
		__gitcomp "
			$__git_log_common_options
			$__git_log_gitk_options
			$merge
			"
2720 2721 2722
		return
		;;
	esac
2723
	__git_complete_revlist
2724 2725
}

2726 2727 2728 2729
complete -o bashdefault -o default -o nospace -F _git git 2>/dev/null \
	|| complete -o default -o nospace -F _git git
complete -o bashdefault -o default -o nospace -F _gitk gitk 2>/dev/null \
	|| complete -o default -o nospace -F _gitk gitk
2730 2731 2732 2733 2734

# The following are necessary only for Cygwin, and only are needed
# when the user has tab-completed the executable name and consequently
# included the '.exe' suffix.
#
2735
if [ Cygwin = "$(uname -o 2>/dev/null)" ]; then
2736 2737
complete -o bashdefault -o default -o nospace -F _git git.exe 2>/dev/null \
	|| complete -o default -o nospace -F _git git.exe
2738
fi
2739

2740
if [[ -n ${ZSH_VERSION-} ]]; then
2741
	__git_shopt () {
2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763
		local option
		if [ $# -ne 2 ]; then
			echo "USAGE: $0 (-q|-s|-u) <option>" >&2
			return 1
		fi
		case "$2" in
		nullglob)
			option="$2"
			;;
		*)
			echo "$0: invalid option: $2" >&2
			return 1
		esac
		case "$1" in
		-q)	setopt | grep -q "$option" ;;
		-u)	unsetopt "$option" ;;
		-s)	setopt "$option" ;;
		*)
			echo "$0: invalid flag: $1" >&2
			return 1
		esac
	}
2764 2765 2766 2767
else
	__git_shopt () {
		shopt "$@"
	}
2768
fi