git-completion.bash 56.7 KB
Newer Older
1
#!bash
2 3 4
#
# bash completion support for core Git.
#
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 21 22 23
#
# To use these routines:
#
#    1) Copy this file to somewhere (e.g. ~/.git-completion.sh).
#    2) Added the following line to your .bashrc:
#        source ~/.git-completion.sh
#
24 25 26 27 28
#       Or, add the following lines to your .zshrc:
#        autoload bashcompinit
#        bashcompinit
#        source ~/.git-completion.sh
#
J
Jonathan Nieder 已提交
29
#    3) Consider changing your PS1 to also show the current branch:
30 31 32 33 34 35
#        PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ '
#
#       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.
#
36 37 38 39 40
#       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.
41
#
42 43 44 45
#       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.
#
46 47 48 49
#       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.
#
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
#       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.
#
#
68 69 70 71 72 73 74 75 76 77 78
# 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
#
79

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 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
# 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
	while read key value; do
		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
	done < <(git config -z --get-regexp '^(svn-remote\..*\.url|bash\.showupstream)$' 2>/dev/null | tr '\0\n' '\n ')

	# 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 \
146
					--grep="^git-svn-id: \(${svn_url_pattern#??}\)" 2>/dev/null))
147 148 149
		if [[ 0 -ne ${#svn_upstream[@]} ]]; then
			svn_upstream=${svn_upstream[ ${#svn_upstream[@]} - 2 ]}
			svn_upstream=${svn_upstream%@*}
150 151
			local n_stop="${#svn_remote[@]}"
			for ((n=1; n <= n_stop; ++n)); do
152 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
				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

}


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

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

				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 已提交
266
					git describe --tags --exact-match HEAD ;;
267 268
				esac 2>/dev/null)" ||

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

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

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

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

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

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

319
# __gitcomp_1 requires 2 arguments
320 321 322 323 324 325 326 327 328 329 330 331
__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
}

332 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
# 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
}

431
if ! type _get_comp_words_by_ref >/dev/null 2>&1; then
432
if [[ -z ${ZSH_VERSION:+set} ]]; then
433 434
_get_comp_words_by_ref ()
{
435 436 437 438 439 440 441
	local exclude cur_ words_ cword_
	if [ "$1" = "-n" ]; then
		exclude=$2
		shift 2
	fi
	__git_reassemble_comp_words_by_ref "$exclude"
	cur_=${words_[cword_]}
442 443 444
	while [ $# -gt 0 ]; do
		case "$1" in
		cur)
445
			cur=$cur_
446 447
			;;
		prev)
448
			prev=${words_[$cword_-1]}
449 450
			;;
		words)
451
			words=("${words_[@]}")
452 453
			;;
		cword)
454
			cword=$cword_
455 456 457 458 459
			;;
		esac
		shift
	done
}
460 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
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
486 487
fi

488 489
# __gitcomp accepts 1, 2, 3, or 4 arguments
# generates completion reply with compgen
490 491
__gitcomp ()
{
492 493
	local cur
	_get_comp_words_by_ref -n =: cur
494
	if [ $# -gt 2 ]; then
495 496
		cur="$3"
	fi
497 498 499 500 501
	case "$cur" in
	--*=)
		COMPREPLY=()
		;;
	*)
502
		local IFS=$'\n'
503 504
		COMPREPLY=($(compgen -P "${2-}" \
			-W "$(__gitcomp_1 "${1-}" "${4-}")" \
505
			-- "$cur"))
506 507
		;;
	esac
508 509
}

510
# __git_heads accepts 0 or 1 arguments (to pass to __gitdir)
511 512
__git_heads ()
{
513
	local cmd i is_hash=y dir="$(__gitdir "${1-}")"
514
	if [ -d "$dir" ]; then
515 516
		git --git-dir="$dir" for-each-ref --format='%(refname:short)' \
			refs/heads
517 518
		return
	fi
519
	for i in $(git ls-remote "${1-}" 2>/dev/null); do
520 521 522 523 524 525 526 527 528
		case "$is_hash,$i" in
		y,*) is_hash=n ;;
		n,*^{}) is_hash=y ;;
		n,refs/heads/*) is_hash=y; echo "${i#refs/heads/}" ;;
		n,*) is_hash=y; echo "$i" ;;
		esac
	done
}

529
# __git_tags accepts 0 or 1 arguments (to pass to __gitdir)
530 531
__git_tags ()
{
532
	local cmd i is_hash=y dir="$(__gitdir "${1-}")"
533
	if [ -d "$dir" ]; then
534 535
		git --git-dir="$dir" for-each-ref --format='%(refname:short)' \
			refs/tags
536 537
		return
	fi
538
	for i in $(git ls-remote "${1-}" 2>/dev/null); do
539 540 541 542 543 544 545 546 547
		case "$is_hash,$i" in
		y,*) is_hash=n ;;
		n,*^{}) is_hash=y ;;
		n,refs/tags/*) is_hash=y; echo "${i#refs/tags/}" ;;
		n,*) is_hash=y; echo "$i" ;;
		esac
	done
}

548 549 550
# __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
551 552
__git_refs ()
{
553
	local i is_hash=y dir="$(__gitdir "${1-}")" track="${2-}"
554 555
	local cur format refs
	_get_comp_words_by_ref -n =: cur
556
	if [ -d "$dir" ]; then
S
SZEDER Gábor 已提交
557 558 559 560
		case "$cur" in
		refs|refs/*)
			format="refname"
			refs="${cur%/*}"
561
			track=""
S
SZEDER Gábor 已提交
562 563
			;;
		*)
564 565 566
			for i in HEAD FETCH_HEAD ORIG_HEAD MERGE_HEAD; do
				if [ -e "$dir/$i" ]; then echo $i; fi
			done
S
SZEDER Gábor 已提交
567 568 569 570 571 572
			format="refname:short"
			refs="refs/tags refs/heads refs/remotes"
			;;
		esac
		git --git-dir="$dir" for-each-ref --format="%($format)" \
			$refs
573 574 575 576 577 578 579 580 581 582 583 584 585 586 587
		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/" | \
			while read entry; do
				eval "$entry"
				ref="${ref#*/}"
				if [[ "$ref" == "$cur"* ]]; then
					echo "$ref"
				fi
			done | uniq -u
		fi
588
		return
589
	fi
590
	for i in $(git ls-remote "$dir" 2>/dev/null); do
591 592 593 594 595
		case "$is_hash,$i" in
		y,*) is_hash=n ;;
		n,*^{}) is_hash=y ;;
		n,refs/tags/*) is_hash=y; echo "${i#refs/tags/}" ;;
		n,refs/heads/*) is_hash=y; echo "${i#refs/heads/}" ;;
596
		n,refs/remotes/*) is_hash=y; echo "${i#refs/remotes/}" ;;
597 598 599 600 601
		n,*) is_hash=y; echo "$i" ;;
		esac
	done
}

602
# __git_refs2 requires 1 argument (to pass to __git_refs)
603 604
__git_refs2 ()
{
605 606 607
	local i
	for i in $(__git_refs "$1"); do
		echo "$i:$i"
608 609 610
	done
}

611
# __git_refs_remotes requires 1 argument (to pass to ls-remote)
612 613 614
__git_refs_remotes ()
{
	local cmd i is_hash=y
615
	for i in $(git ls-remote "$1" 2>/dev/null); do
616 617 618 619 620 621 622 623 624 625 626 627 628
		case "$is_hash,$i" in
		n,refs/heads/*)
			is_hash=y
			echo "$i:refs/remotes/$1/${i#refs/heads/}"
			;;
		y,*) is_hash=n ;;
		n,*^{}) is_hash=y ;;
		n,refs/tags/*) is_hash=y;;
		n,*) is_hash=y; ;;
		esac
	done
}

629 630
__git_remotes ()
{
631
	local i ngoff IFS=$'\n' d="$(__gitdir)"
632
	shopt -q nullglob || ngoff=1
633
	shopt -s nullglob
634 635
	for i in "$d/remotes"/*; do
		echo ${i#$d/remotes/}
636
	done
637
	[ "$ngoff" ] && shopt -u nullglob
638 639 640
	for i in $(git --git-dir="$d" config --get-regexp 'remote\..*\.url' 2>/dev/null); do
		i="${i#remote.}"
		echo "${i/.url*/}"
641
	done
642 643
}

J
Jonathan Nieder 已提交
644
__git_list_merge_strategies ()
645
{
646 647 648 649 650 651
	git merge -s help 2>&1 |
	sed -n -e '/[Aa]vailable strategies are: /,/^$/{
		s/\.$//
		s/.*://
		s/^[ 	]*//
		s/[ 	]*$//
652
		p
653
	}'
654
}
J
Jonathan Nieder 已提交
655 656 657 658 659 660 661 662 663 664 665

__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 ()
{
	: ${__git_merge_strategies:=$(__git_list_merge_strategies)}
}
666

667 668
__git_complete_file ()
{
669 670
	local pfx ls ref cur
	_get_comp_words_by_ref -n =: cur
671 672
	case "$cur" in
	?*:*)
673 674
		ref="${cur%%:*}"
		cur="${cur#*:}"
675 676
		case "$cur" in
		?*/*)
677 678
			pfx="${cur%/*}"
			cur="${cur##*/}"
679 680 681 682 683 684 685
			ls="$ref:$pfx"
			pfx="$pfx/"
			;;
		*)
			ls="$ref"
			;;
	    esac
686 687 688 689 690 691

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

692
		local IFS=$'\n'
693
		COMPREPLY=($(compgen -P "$pfx" \
694
			-W "$(git --git-dir="$(__gitdir)" ls-tree "$ls" \
695 696 697 698 699 700 701 702
				| sed '/^100... blob /{
				           s,^.*	,,
				           s,$, ,
				       }
				       /^120000 blob /{
				           s,^.*	,,
				           s,$, ,
				       }
703 704 705 706 707 708 709 710
				       /^040000 tree /{
				           s,^.*	,,
				           s,$,/,
				       }
				       s/^.*	//')" \
			-- "$cur"))
		;;
	*)
711
		__gitcomp "$(__git_refs)"
712 713 714 715
		;;
	esac
}

716 717
__git_complete_revlist ()
{
718 719
	local pfx cur
	_get_comp_words_by_ref -n =: cur
720 721 722 723
	case "$cur" in
	*...*)
		pfx="${cur%...*}..."
		cur="${cur#*...}"
724
		__gitcomp "$(__git_refs)" "$pfx" "$cur"
725 726 727 728
		;;
	*..*)
		pfx="${cur%..*}.."
		cur="${cur#*..}"
729 730
		__gitcomp "$(__git_refs)" "$pfx" "$cur"
		;;
731
	*)
732
		__gitcomp "$(__git_refs)"
733 734 735 736
		;;
	esac
}

737 738
__git_complete_remote_or_refspec ()
{
739 740 741
	local cur words cword
	_get_comp_words_by_ref -n =: cur words cword
	local cmd="${words[1]}"
742
	local i c=2 remote="" pfx="" lhs=1 no_complete_refspec=0
743 744
	while [ $c -lt $cword ]; do
		i="${words[c]}"
745
		case "$i" in
746 747 748 749 750 751 752 753 754 755 756
		--mirror) [ "$cmd" = "push" ] && no_complete_refspec=1 ;;
		--all)
			case "$cmd" in
			push) no_complete_refspec=1 ;;
			fetch)
				COMPREPLY=()
				return
				;;
			*) ;;
			esac
			;;
757 758 759 760 761 762 763 764 765
		-*) ;;
		*) remote="$i"; break ;;
		esac
		c=$((++c))
	done
	if [ -z "$remote" ]; then
		__gitcomp "$(__git_remotes)"
		return
	fi
766 767 768 769
	if [ $no_complete_refspec = 1 ]; then
		COMPREPLY=()
		return
	fi
770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809
	[ "$remote" = "." ] && remote=
	case "$cur" in
	*:*)
		case "$COMP_WORDBREAKS" in
		*:*) : great ;;
		*)   pfx="${cur%%:*}:" ;;
		esac
		cur="${cur#*:}"
		lhs=0
		;;
	+*)
		pfx="+"
		cur="${cur#+}"
		;;
	esac
	case "$cmd" in
	fetch)
		if [ $lhs = 1 ]; then
			__gitcomp "$(__git_refs2 "$remote")" "$pfx" "$cur"
		else
			__gitcomp "$(__git_refs)" "$pfx" "$cur"
		fi
		;;
	pull)
		if [ $lhs = 1 ]; then
			__gitcomp "$(__git_refs "$remote")" "$pfx" "$cur"
		else
			__gitcomp "$(__git_refs)" "$pfx" "$cur"
		fi
		;;
	push)
		if [ $lhs = 1 ]; then
			__gitcomp "$(__git_refs)" "$pfx" "$cur"
		else
			__gitcomp "$(__git_refs "$remote")" "$pfx" "$cur"
		fi
		;;
	esac
}

810 811
__git_complete_strategy ()
{
812 813
	local cur prev
	_get_comp_words_by_ref -n =: cur prev
J
Jonathan Nieder 已提交
814
	__git_compute_merge_strategies
815
	case "$prev" in
816
	-s|--strategy)
J
Jonathan Nieder 已提交
817
		__gitcomp "$__git_merge_strategies"
818 819 820 821
		return 0
	esac
	case "$cur" in
	--strategy=*)
J
Jonathan Nieder 已提交
822
		__gitcomp "$__git_merge_strategies" "" "${cur##--strategy=}"
823 824 825 826 827 828
		return 0
		;;
	esac
	return 1
}

J
Jonathan Nieder 已提交
829
__git_list_all_commands ()
830 831
{
	local i IFS=" "$'\n'
832
	for i in $(git help -a|egrep '^  [a-zA-Z0-9]')
833 834 835 836 837 838 839 840
	do
		case $i in
		*--*)             : helper pattern;;
		*) echo $i;;
		esac
	done
}

J
Jonathan Nieder 已提交
841 842 843 844 845 846 847
__git_all_commands=
__git_compute_all_commands ()
{
	: ${__git_all_commands:=$(__git_list_all_commands)}
}

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

__git_porcelain_commands=
__git_compute_porcelain_commands ()
{
	__git_compute_all_commands
	: ${__git_porcelain_commands:=$(__git_list_porcelain_commands)}
}
939

940 941 942 943 944 945 946 947 948 949 950 951 952
__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
}

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

966
# __git_aliased_command requires 1 argument
967 968
__git_aliased_command ()
{
969
	local word cmdline=$(git --git-dir="$(__gitdir)" \
970
		config --get "alias.$1")
971
	for word in $cmdline; do
972
		case "$word" in
973 974
		\!gitk|gitk)
			echo "gitk"
975
			return
976
			;;
977 978 979 980 981 982
		\!*)	: shell command alias ;;
		-*)	: option ;;
		*=*)	: setting env ;;
		git)	: git itself ;;
		*)
			echo "$word"
983
			return
984
		esac
985 986 987
	done
}

988 989
# __git_find_on_cmdline requires 1 argument
__git_find_on_cmdline ()
990
{
991 992 993 994
	local word subcommand c=1 words cword
	_get_comp_words_by_ref -n =: words cword
	while [ $c -lt $cword ]; do
		word="${words[c]}"
995 996 997 998 999 1000 1001 1002 1003 1004
		for subcommand in $1; do
			if [ "$subcommand" = "$word" ]; then
				echo "$subcommand"
				return
			fi
		done
		c=$((++c))
	done
}

1005 1006
__git_has_doubledash ()
{
1007 1008 1009 1010
	local c=1 words cword
	_get_comp_words_by_ref -n =: words cword
	while [ $c -lt $cword ]; do
		if [ "--" = "${words[c]}" ]; then
1011 1012 1013 1014 1015 1016 1017
			return 0
		fi
		c=$((++c))
	done
	return 1
}

1018
__git_whitespacelist="nowarn warn error error-all fix"
1019 1020 1021

_git_am ()
{
1022 1023
	local cur dir="$(__gitdir)"
	_get_comp_words_by_ref -n =: cur
1024
	if [ -d "$dir"/rebase-apply ]; then
1025
		__gitcomp "--skip --continue --resolved --abort"
1026 1027 1028 1029
		return
	fi
	case "$cur" in
	--whitespace=*)
1030
		__gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
1031 1032 1033
		return
		;;
	--*)
1034
		__gitcomp "
1035
			--3way --committer-date-is-author-date --ignore-date
1036
			--ignore-whitespace --ignore-space-change
1037
			--interactive --keep --no-utf8 --signoff --utf8
1038
			--whitespace= --scissors
1039
			"
1040 1041 1042 1043 1044 1045 1046
		return
	esac
	COMPREPLY=()
}

_git_apply ()
{
1047 1048
	local cur
	_get_comp_words_by_ref -n =: cur
1049 1050
	case "$cur" in
	--whitespace=*)
1051
		__gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
1052 1053 1054
		return
		;;
	--*)
1055
		__gitcomp "
1056 1057 1058
			--stat --numstat --summary --check --index
			--cached --index-info --reverse --reject --unidiff-zero
			--apply --no-add --exclude=
1059
			--ignore-whitespace --ignore-space-change
1060
			--whitespace= --inaccurate-eof --verbose
1061
			"
1062 1063 1064 1065 1066
		return
	esac
	COMPREPLY=()
}

1067 1068
_git_add ()
{
1069 1070
	__git_has_doubledash && return

1071 1072
	local cur
	_get_comp_words_by_ref -n =: cur
1073 1074
	case "$cur" in
	--*)
1075 1076
		__gitcomp "
			--interactive --refresh --patch --update --dry-run
1077
			--ignore-errors --intent-to-add
1078
			"
1079 1080 1081 1082 1083
		return
	esac
	COMPREPLY=()
}

1084 1085
_git_archive ()
{
1086 1087
	local cur
	_get_comp_words_by_ref -n =: cur
1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107
	case "$cur" in
	--format=*)
		__gitcomp "$(git archive --list)" "" "${cur##--format=}"
		return
		;;
	--remote=*)
		__gitcomp "$(__git_remotes)" "" "${cur##--remote=}"
		return
		;;
	--*)
		__gitcomp "
			--format= --list --verbose
			--prefix= --remote= --exec=
			"
		return
		;;
	esac
	__git_complete_file
}

1108 1109
_git_bisect ()
{
1110 1111
	__git_has_doubledash && return

1112
	local subcommands="start bad good skip reset visualize replay log run"
1113
	local subcommand="$(__git_find_on_cmdline "$subcommands")"
1114
	if [ -z "$subcommand" ]; then
1115 1116 1117 1118 1119
		if [ -f "$(__gitdir)"/BISECT_START ]; then
			__gitcomp "$subcommands"
		else
			__gitcomp "replay start"
		fi
1120 1121 1122
		return
	fi

1123
	case "$subcommand" in
1124
	bad|good|reset|skip|start)
1125 1126 1127 1128 1129 1130 1131 1132
		__gitcomp "$(__git_refs)"
		;;
	*)
		COMPREPLY=()
		;;
	esac
}

1133 1134
_git_branch ()
{
1135
	local i c=1 only_local_ref="n" has_r="n" cur words cword
1136

1137 1138 1139
	_get_comp_words_by_ref -n =: cur words cword
	while [ $c -lt $cword ]; do
		i="${words[c]}"
1140 1141 1142 1143 1144 1145 1146
		case "$i" in
		-d|-m)	only_local_ref="y" ;;
		-r)	has_r="y" ;;
		esac
		c=$((++c))
	done

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

1165 1166
_git_bundle ()
{
1167 1168 1169 1170
	local words cword
	_get_comp_words_by_ref -n =: words cword
	local cmd="${words[2]}"
	case "$cword" in
1171
	2)
1172 1173
		__gitcomp "create list-heads verify unbundle"
		;;
1174
	3)
1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186
		# looking for a file
		;;
	*)
		case "$cmd" in
			create)
				__git_complete_revlist
			;;
		esac
		;;
	esac
}

1187 1188
_git_checkout ()
{
1189 1190
	__git_has_doubledash && return

1191 1192
	local cur
	_get_comp_words_by_ref -n =: cur
1193 1194 1195 1196 1197 1198 1199
	case "$cur" in
	--conflict=*)
		__gitcomp "diff3 merge" "" "${cur##--conflict=}"
		;;
	--*)
		__gitcomp "
			--quiet --ours --theirs --track --no-track --merge
1200
			--conflict= --orphan --patch
1201 1202 1203
			"
		;;
	*)
1204 1205 1206 1207 1208 1209 1210
		# 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
		__gitcomp "$(__git_refs '' $track)"
1211 1212
		;;
	esac
1213 1214
}

1215 1216 1217 1218 1219
_git_cherry ()
{
	__gitcomp "$(__git_refs)"
}

1220 1221
_git_cherry_pick ()
{
1222 1223
	local cur
	_get_comp_words_by_ref -n =: cur
1224 1225
	case "$cur" in
	--*)
1226
		__gitcomp "--edit --no-commit"
1227 1228
		;;
	*)
1229
		__gitcomp "$(__git_refs)"
1230 1231 1232 1233
		;;
	esac
}

1234 1235 1236 1237
_git_clean ()
{
	__git_has_doubledash && return

1238 1239
	local cur
	_get_comp_words_by_ref -n =: cur
1240 1241 1242 1243 1244 1245 1246 1247 1248
	case "$cur" in
	--*)
		__gitcomp "--dry-run --quiet"
		return
		;;
	esac
	COMPREPLY=()
}

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

1275 1276
_git_commit ()
{
1277 1278
	__git_has_doubledash && return

1279 1280
	local cur
	_get_comp_words_by_ref -n =: cur
1281
	case "$cur" in
1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298
	--cleanup=*)
		__gitcomp "default strip verbatim whitespace
			" "" "${cur##--cleanup=}"
		return
		;;
	--reuse-message=*)
		__gitcomp "$(__git_refs)" "" "${cur##--reuse-message=}"
		return
		;;
	--reedit-message=*)
		__gitcomp "$(__git_refs)" "" "${cur##--reedit-message=}"
		return
		;;
	--untracked-files=*)
		__gitcomp "all no normal" "" "${cur##--untracked-files=}"
		return
		;;
1299
	--*)
1300
		__gitcomp "
1301
			--all --author= --signoff --verify --no-verify
1302
			--edit --amend --include --only --interactive
1303 1304 1305 1306
			--dry-run --reuse-message= --reedit-message=
			--reset-author --file= --message= --template=
			--cleanup= --untracked-files --untracked-files=
			--verbose --quiet
1307
			"
1308 1309 1310 1311 1312
		return
	esac
	COMPREPLY=()
}

1313 1314
_git_describe ()
{
1315 1316
	local cur
	_get_comp_words_by_ref -n =: cur
1317 1318 1319 1320 1321 1322 1323 1324
	case "$cur" in
	--*)
		__gitcomp "
			--all --tags --contains --abbrev= --candidates=
			--exact-match --debug --long --match --always
			"
		return
	esac
1325 1326 1327
	__gitcomp "$(__git_refs)"
}

1328
__git_diff_common_options="--stat --numstat --shortstat --summary
1329 1330
			--patch-with-stat --name-only --name-status --color
			--no-color --color-words --no-renames --check
1331
			--full-index --binary --abbrev --diff-filter=
1332
			--find-copies-harder
1333 1334
			--text --ignore-space-at-eol --ignore-space-change
			--ignore-all-space --exit-code --quiet --ext-diff
1335 1336
			--no-ext-diff
			--no-prefix --src-prefix= --dst-prefix=
1337
			--inter-hunk-context=
1338
			--patience
1339
			--raw
1340 1341
			--dirstat --dirstat= --dirstat-by-file
			--dirstat-by-file= --cumulative
1342 1343 1344 1345 1346 1347
"

_git_diff ()
{
	__git_has_doubledash && return

1348 1349
	local cur
	_get_comp_words_by_ref -n =: cur
1350 1351
	case "$cur" in
	--*)
1352
		__gitcomp "--cached --staged --pickaxe-all --pickaxe-regex
1353
			--base --ours --theirs --no-index
1354
			$__git_diff_common_options
1355
			"
1356 1357 1358
		return
		;;
	esac
1359 1360 1361
	__git_complete_file
}

1362
__git_mergetools_common="diffuse ecmerge emerge kdiff3 meld opendiff
1363
			tkdiff vimdiff gvimdiff xxdiff araxis p4merge bc3
1364 1365 1366 1367
"

_git_difftool ()
{
1368 1369
	__git_has_doubledash && return

1370 1371
	local cur
	_get_comp_words_by_ref -n =: cur
1372 1373 1374 1375 1376 1377
	case "$cur" in
	--tool=*)
		__gitcomp "$__git_mergetools_common kompare" "" "${cur##--tool=}"
		return
		;;
	--*)
1378 1379 1380 1381 1382
		__gitcomp "--cached --staged --pickaxe-all --pickaxe-regex
			--base --ours --theirs
			--no-renames --diff-filter= --find-copies-harder
			--relative --ignore-submodules
			--tool="
1383 1384 1385
		return
		;;
	esac
1386
	__git_complete_file
1387 1388
}

1389 1390
__git_fetch_options="
	--quiet --verbose --append --upload-pack --force --keep --depth=
1391
	--tags --no-tags --all --prune --dry-run
1392 1393
"

1394 1395
_git_fetch ()
{
1396 1397
	local cur
	_get_comp_words_by_ref -n =: cur
1398 1399 1400 1401 1402 1403
	case "$cur" in
	--*)
		__gitcomp "$__git_fetch_options"
		return
		;;
	esac
1404
	__git_complete_remote_or_refspec
1405 1406
}

1407 1408
_git_format_patch ()
{
1409 1410
	local cur
	_get_comp_words_by_ref -n =: cur
1411
	case "$cur" in
1412 1413 1414 1415 1416 1417
	--thread=*)
		__gitcomp "
			deep shallow
			" "" "${cur##--thread=}"
		return
		;;
1418
	--*)
1419
		__gitcomp "
1420
			--stdout --attach --no-attach --thread --thread=
1421 1422
			--output-directory
			--numbered --start-number
1423
			--numbered-files
1424
			--keep-subject
1425
			--signoff --signature --no-signature
1426
			--in-reply-to= --cc=
1427
			--full-index --binary
1428
			--not --all
1429
			--cover-letter
1430
			--no-prefix --src-prefix= --dst-prefix=
1431 1432
			--inline --suffix= --ignore-if-in-upstream
			--subject-prefix=
1433
			"
1434 1435 1436 1437 1438 1439
		return
		;;
	esac
	__git_complete_revlist
}

1440 1441
_git_fsck ()
{
1442 1443
	local cur
	_get_comp_words_by_ref -n =: cur
1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455
	case "$cur" in
	--*)
		__gitcomp "
			--tags --root --unreachable --cache --no-reflogs --full
			--strict --verbose --lost-found
			"
		return
		;;
	esac
	COMPREPLY=()
}

1456 1457
_git_gc ()
{
1458 1459
	local cur
	_get_comp_words_by_ref -n =: cur
1460 1461
	case "$cur" in
	--*)
1462
		__gitcomp "--prune --aggressive"
1463 1464 1465 1466 1467 1468
		return
		;;
	esac
	COMPREPLY=()
}

1469 1470 1471 1472 1473
_git_gitk ()
{
	_gitk
}

1474 1475 1476 1477
_git_grep ()
{
	__git_has_doubledash && return

1478 1479
	local cur
	_get_comp_words_by_ref -n =: cur
1480 1481 1482 1483 1484 1485 1486 1487 1488
	case "$cur" in
	--*)
		__gitcomp "
			--cached
			--text --ignore-case --word-regexp --invert-match
			--full-name
			--extended-regexp --basic-regexp --fixed-strings
			--files-with-matches --name-only
			--files-without-match
1489
			--max-depth
1490 1491 1492 1493 1494 1495
			--count
			--and --or --not --all-match
			"
		return
		;;
	esac
1496 1497

	__gitcomp "$(__git_refs)"
1498 1499
}

1500 1501
_git_help ()
{
1502 1503
	local cur
	_get_comp_words_by_ref -n =: cur
1504 1505 1506 1507 1508 1509
	case "$cur" in
	--*)
		__gitcomp "--all --info --man --web"
		return
		;;
	esac
J
Jonathan Nieder 已提交
1510 1511
	__git_compute_all_commands
	__gitcomp "$__git_all_commands
1512 1513 1514
		attributes cli core-tutorial cvs-migration
		diffcore gitk glossary hooks ignore modules
		repository-layout tutorial tutorial-2
1515
		workflows
1516
		"
1517 1518
}

1519 1520
_git_init ()
{
1521 1522
	local cur
	_get_comp_words_by_ref -n =: cur
1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537
	case "$cur" in
	--shared=*)
		__gitcomp "
			false true umask group all world everybody
			" "" "${cur##--shared=}"
		return
		;;
	--*)
		__gitcomp "--quiet --bare --template= --shared --shared="
		return
		;;
	esac
	COMPREPLY=()
}

1538 1539 1540 1541
_git_ls_files ()
{
	__git_has_doubledash && return

1542 1543
	local cur
	_get_comp_words_by_ref -n =: cur
1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558
	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=()
}

1559 1560
_git_ls_remote ()
{
1561
	__gitcomp "$(__git_remotes)"
1562 1563 1564 1565 1566 1567 1568
}

_git_ls_tree ()
{
	__git_complete_file
}

1569 1570 1571 1572
# Options that go well for log, shortlog and gitk
__git_log_common_options="
	--not --all
	--branches --tags --remotes
1573
	--first-parent --merges --no-merges
1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589
	--max-count=
	--max-age= --since= --after=
	--min-age= --until= --before=
"
# Options that go well for log and gitk (not shortlog)
__git_log_gitk_options="
	--dense --sparse --full-history
	--simplify-merges --simplify-by-decoration
	--left-right
"
# Options that go well for log and shortlog (not gitk)
__git_log_shortlog_options="
	--author= --committer= --grep=
	--all-match
"

1590
__git_log_pretty_formats="oneline short medium full fuller email raw format:"
1591
__git_log_date_formats="relative iso8601 rfc2822 short local default raw"
1592

1593 1594
_git_log ()
{
1595 1596
	__git_has_doubledash && return

1597 1598
	local g="$(git rev-parse --git-dir 2>/dev/null)"
	local merge=""
1599
	if [ -f "$g/MERGE_HEAD" ]; then
1600 1601
		merge="--merge"
	fi
1602 1603
	local cur
	_get_comp_words_by_ref -n =: cur
1604 1605
	case "$cur" in
	--pretty=*)
1606
		__gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
1607
			" "" "${cur##--pretty=}"
1608 1609
		return
		;;
1610
	--format=*)
1611
		__gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
1612 1613 1614
			" "" "${cur##--format=}"
		return
		;;
1615
	--date=*)
1616
		__gitcomp "$__git_log_date_formats" "" "${cur##--date=}"
1617 1618
		return
		;;
1619 1620 1621 1622
	--decorate=*)
		__gitcomp "long short" "" "${cur##--decorate=}"
		return
		;;
1623
	--*)
1624
		__gitcomp "
1625 1626 1627
			$__git_log_common_options
			$__git_log_shortlog_options
			$__git_log_gitk_options
1628
			--root --topo-order --date-order --reverse
1629
			--follow --full-diff
1630
			--abbrev-commit --abbrev=
1631
			--relative-date --date=
1632
			--pretty= --format= --oneline
1633
			--cherry-pick
1634
			--graph
1635
			--decorate --decorate=
1636
			--walk-reflogs
1637
			--parents --children
1638
			$merge
1639
			$__git_diff_common_options
1640
			--pickaxe-all --pickaxe-regex
1641
			"
1642 1643 1644
		return
		;;
	esac
1645
	__git_complete_revlist
1646 1647
}

1648 1649
__git_merge_options="
	--no-commit --no-stat --log --no-log --squash --strategy
1650
	--commit --stat --no-squash --ff --no-ff --ff-only
1651 1652
"

1653 1654
_git_merge ()
{
1655 1656
	__git_complete_strategy && return

1657 1658
	local cur
	_get_comp_words_by_ref -n =: cur
1659 1660
	case "$cur" in
	--*)
1661
		__gitcomp "$__git_merge_options"
1662 1663
		return
	esac
1664
	__gitcomp "$(__git_refs)"
1665 1666
}

1667 1668
_git_mergetool ()
{
1669 1670
	local cur
	_get_comp_words_by_ref -n =: cur
1671 1672
	case "$cur" in
	--tool=*)
1673
		__gitcomp "$__git_mergetools_common tortoisemerge" "" "${cur##--tool=}"
1674 1675 1676 1677 1678 1679 1680 1681 1682 1683
		return
		;;
	--*)
		__gitcomp "--tool="
		return
		;;
	esac
	COMPREPLY=()
}

1684 1685
_git_merge_base ()
{
1686
	__gitcomp "$(__git_refs)"
1687 1688
}

1689 1690
_git_mv ()
{
1691 1692
	local cur
	_get_comp_words_by_ref -n =: cur
1693 1694 1695 1696 1697 1698 1699 1700 1701
	case "$cur" in
	--*)
		__gitcomp "--dry-run"
		return
		;;
	esac
	COMPREPLY=()
}

1702 1703
_git_name_rev ()
{
1704
	__gitcomp "--tags --all --stdin"
1705 1706
}

1707 1708
_git_notes ()
{
1709 1710
	local subcommands='add append copy edit list prune remove show'
	local subcommand="$(__git_find_on_cmdline "$subcommands")"
1711 1712
	local cur words cword
	_get_comp_words_by_ref -n =: cur words cword
1713

1714 1715 1716 1717 1718
	case "$subcommand,$cur" in
	,--*)
		__gitcomp '--ref'
		;;
	,*)
1719
		case "${words[cword-1]}" in
1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744
		--ref)
			__gitcomp "$(__git_refs)"
			;;
		*)
			__gitcomp "$subcommands --ref"
			;;
		esac
		;;
	add,--reuse-message=*|append,--reuse-message=*)
		__gitcomp "$(__git_refs)" "" "${cur##--reuse-message=}"
		;;
	add,--reedit-message=*|append,--reedit-message=*)
		__gitcomp "$(__git_refs)" "" "${cur##--reedit-message=}"
		;;
	add,--*|append,--*)
		__gitcomp '--file= --message= --reedit-message=
				--reuse-message='
		;;
	copy,--*)
		__gitcomp '--stdin'
		;;
	prune,--*)
		__gitcomp '--dry-run --verbose'
		;;
	prune,*)
1745 1746
		;;
	*)
1747
		case "${words[cword-1]}" in
1748 1749 1750 1751 1752 1753
		-m|-F)
			;;
		*)
			__gitcomp "$(__git_refs)"
			;;
		esac
1754 1755 1756 1757
		;;
	esac
}

1758 1759
_git_pull ()
{
1760 1761
	__git_complete_strategy && return

1762 1763
	local cur
	_get_comp_words_by_ref -n =: cur
1764 1765 1766 1767 1768 1769 1770 1771 1772 1773
	case "$cur" in
	--*)
		__gitcomp "
			--rebase --no-rebase
			$__git_merge_options
			$__git_fetch_options
		"
		return
		;;
	esac
1774
	__git_complete_remote_or_refspec
1775 1776 1777 1778
}

_git_push ()
{
1779 1780 1781
	local cur prev
	_get_comp_words_by_ref -n =: cur prev
	case "$prev" in
1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798
	--repo)
		__gitcomp "$(__git_remotes)"
		return
	esac
	case "$cur" in
	--repo=*)
		__gitcomp "$(__git_remotes)" "" "${cur##--repo=}"
		return
		;;
	--*)
		__gitcomp "
			--all --mirror --tags --dry-run --force --verbose
			--receive-pack= --repo=
		"
		return
		;;
	esac
1799
	__git_complete_remote_or_refspec
1800 1801
}

1802 1803
_git_rebase ()
{
1804 1805 1806
	local dir="$(__gitdir)"
	local cur
	_get_comp_words_by_ref -n =: cur
1807
	if [ -d "$dir"/rebase-apply ] || [ -d "$dir"/rebase-merge ]; then
1808
		__gitcomp "--continue --skip --abort"
1809 1810
		return
	fi
1811
	__git_complete_strategy && return
1812
	case "$cur" in
1813 1814 1815 1816
	--whitespace=*)
		__gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
		return
		;;
1817
	--*)
1818 1819 1820 1821 1822
		__gitcomp "
			--onto --merge --strategy --interactive
			--preserve-merges --stat --no-stat
			--committer-date-is-author-date --ignore-date
			--ignore-whitespace --whitespace=
1823
			--autosquash
1824 1825
			"

1826 1827
		return
	esac
1828
	__gitcomp "$(__git_refs)"
1829 1830
}

1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842
_git_reflog ()
{
	local subcommands="show delete expire"
	local subcommand="$(__git_find_on_cmdline "$subcommands")"

	if [ -z "$subcommand" ]; then
		__gitcomp "$subcommands"
	else
		__gitcomp "$(__git_refs)"
	fi
}

1843
__git_send_email_confirm_options="always never auto cc compose"
1844
__git_send_email_suppresscc_options="author self cc bodycc sob cccmd body all"
1845

1846 1847
_git_send_email ()
{
1848 1849
	local cur
	_get_comp_words_by_ref -n =: cur
1850
	case "$cur" in
1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867
	--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
		;;
1868
	--*)
1869
		__gitcomp "--annotate --bcc --cc --cc-cmd --chain-reply-to
1870 1871
			--compose --confirm= --dry-run --envelope-sender
			--from --identity
1872 1873 1874
			--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
1875 1876
			--smtp-server-port --smtp-encryption= --smtp-user
			--subject --suppress-cc= --suppress-from --thread --to
1877
			--validate --no-validate"
1878 1879 1880 1881 1882 1883
		return
		;;
	esac
	COMPREPLY=()
}

1884 1885 1886 1887 1888
_git_stage ()
{
	_git_add
}

1889 1890
__git_config_get_set_variables ()
{
1891 1892 1893
	local words cword
	_get_comp_words_by_ref -n =: words cword
	local prevword word config_file= c=$cword
1894
	while [ $c -gt 1 ]; do
1895
		word="${words[c]}"
1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909
		case "$word" in
		--global|--system|--file=*)
			config_file="$word"
			break
			;;
		-f|--file)
			config_file="$word $prevword"
			break
			;;
		esac
		prevword=$word
		c=$((--c))
	done

1910 1911 1912 1913 1914 1915
	git --git-dir="$(__gitdir)" config $config_file --list 2>/dev/null |
	while read line
	do
		case "$line" in
		*.*=*)
			echo "${line/=*/}"
1916 1917 1918 1919 1920
			;;
		esac
	done
}

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

2358 2359
_git_remote ()
{
2360
	local subcommands="add rename rm show prune update set-head"
2361
	local subcommand="$(__git_find_on_cmdline "$subcommands")"
2362
	if [ -z "$subcommand" ]; then
2363
		__gitcomp "$subcommands"
2364 2365 2366
		return
	fi

2367
	case "$subcommand" in
2368
	rename|rm|show|prune)
2369 2370
		__gitcomp "$(__git_remotes)"
		;;
2371 2372
	update)
		local i c='' IFS=$'\n'
2373 2374 2375
		for i in $(git --git-dir="$(__gitdir)" config --get-regexp "remotes\..*" 2>/dev/null); do
			i="${i#remotes.}"
			c="$c ${i/ */}"
2376 2377 2378
		done
		__gitcomp "$c"
		;;
2379 2380 2381 2382 2383 2384
	*)
		COMPREPLY=()
		;;
	esac
}

2385 2386 2387 2388 2389
_git_replace ()
{
	__gitcomp "$(__git_refs)"
}

2390 2391
_git_reset ()
{
2392 2393
	__git_has_doubledash && return

2394 2395
	local cur
	_get_comp_words_by_ref -n =: cur
2396 2397
	case "$cur" in
	--*)
S
SZEDER Gábor 已提交
2398
		__gitcomp "--merge --mixed --hard --soft --patch"
2399 2400 2401 2402
		return
		;;
	esac
	__gitcomp "$(__git_refs)"
2403 2404
}

2405 2406
_git_revert ()
{
2407 2408
	local cur
	_get_comp_words_by_ref -n =: cur
2409 2410 2411 2412 2413 2414
	case "$cur" in
	--*)
		__gitcomp "--edit --mainline --no-edit --no-commit --signoff"
		return
		;;
	esac
2415
	__gitcomp "$(__git_refs)"
2416 2417
}

2418 2419 2420 2421
_git_rm ()
{
	__git_has_doubledash && return

2422 2423
	local cur
	_get_comp_words_by_ref -n =: cur
2424 2425 2426 2427 2428 2429 2430 2431 2432
	case "$cur" in
	--*)
		__gitcomp "--cached --dry-run --ignore-unmatch --quiet"
		return
		;;
	esac
	COMPREPLY=()
}

2433 2434
_git_shortlog ()
{
2435 2436
	__git_has_doubledash && return

2437 2438
	local cur
	_get_comp_words_by_ref -n =: cur
2439 2440 2441
	case "$cur" in
	--*)
		__gitcomp "
2442 2443
			$__git_log_common_options
			$__git_log_shortlog_options
2444 2445 2446 2447 2448 2449 2450 2451
			--numbered --summary
			"
		return
		;;
	esac
	__git_complete_revlist
}

2452 2453
_git_show ()
{
2454 2455
	__git_has_doubledash && return

2456 2457
	local cur
	_get_comp_words_by_ref -n =: cur
2458 2459
	case "$cur" in
	--pretty=*)
2460
		__gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
2461
			" "" "${cur##--pretty=}"
2462 2463
		return
		;;
2464
	--format=*)
2465
		__gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
2466 2467 2468
			" "" "${cur##--format=}"
		return
		;;
2469
	--*)
2470
		__gitcomp "--pretty= --format= --abbrev-commit --oneline
2471 2472
			$__git_diff_common_options
			"
2473 2474 2475 2476 2477 2478
		return
		;;
	esac
	__git_complete_file
}

2479 2480
_git_show_branch ()
{
2481 2482
	local cur
	_get_comp_words_by_ref -n =: cur
2483 2484 2485 2486 2487
	case "$cur" in
	--*)
		__gitcomp "
			--all --remotes --topo-order --current --more=
			--list --independent --merge-base --no-name
2488
			--color --no-color
2489
			--sha1-name --sparse --topics --reflog
2490 2491 2492 2493 2494 2495 2496
			"
		return
		;;
	esac
	__git_complete_revlist
}

J
Junio C Hamano 已提交
2497 2498
_git_stash ()
{
2499 2500
	local cur
	_get_comp_words_by_ref -n =: cur
2501
	local save_opts='--keep-index --no-keep-index --quiet --patch'
2502
	local subcommands='save list show apply clear drop pop create branch'
2503
	local subcommand="$(__git_find_on_cmdline "$subcommands")"
2504
	if [ -z "$subcommand" ]; then
2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516
		case "$cur" in
		--*)
			__gitcomp "$save_opts"
			;;
		*)
			if [ -z "$(__git_find_on_cmdline "$save_opts")" ]; then
				__gitcomp "$subcommands"
			else
				COMPREPLY=()
			fi
			;;
		esac
2517 2518 2519
	else
		case "$subcommand,$cur" in
		save,--*)
2520
			__gitcomp "$save_opts"
2521
			;;
2522
		apply,--*|pop,--*)
2523
			__gitcomp "--index --quiet"
2524
			;;
2525
		show,--*|drop,--*|branch,--*)
2526 2527 2528 2529 2530 2531
			COMPREPLY=()
			;;
		show,*|apply,*|drop,*|pop,*|branch,*)
			__gitcomp "$(git --git-dir="$(__gitdir)" stash list \
					| sed -n -e 's/:.*//p')"
			;;
2532 2533 2534 2535
		*)
			COMPREPLY=()
			;;
		esac
2536
	fi
J
Junio C Hamano 已提交
2537 2538
}

2539 2540
_git_submodule ()
{
2541 2542
	__git_has_doubledash && return

2543
	local subcommands="add status init update summary foreach sync"
2544
	if [ -z "$(__git_find_on_cmdline "$subcommands")" ]; then
2545 2546
		local cur
		_get_comp_words_by_ref -n =: cur
2547 2548 2549 2550 2551
		case "$cur" in
		--*)
			__gitcomp "--quiet --cached"
			;;
		*)
2552
			__gitcomp "$subcommands"
2553 2554 2555 2556 2557 2558
			;;
		esac
		return
	fi
}

2559 2560 2561 2562 2563
_git_svn ()
{
	local subcommands="
		init fetch clone rebase dcommit log find-rev
		set-tree commit-diff info create-ignore propget
S
SZEDER Gábor 已提交
2564
		proplist show-ignore show-externals branch tag blame
2565
		migrate mkdirs reset gc
2566
		"
2567
	local subcommand="$(__git_find_on_cmdline "$subcommands")"
2568 2569 2570 2571 2572 2573 2574 2575
	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 已提交
2576 2577
			--repack-flags --use-log-author --localtime
			--ignore-paths= $remote_opts
2578 2579 2580 2581 2582
			"
		local init_opts="
			--template= --shared= --trunk= --tags=
			--branches= --stdlayout --minimize-url
			--no-metadata --use-svm-props --use-svnsync-props
S
SZEDER Gábor 已提交
2583 2584
			--rewrite-root= --prefix= --use-log-author
			--add-author-from $remote_opts
2585 2586 2587 2588 2589
			"
		local cmt_opts="
			--edit --rmdir --find-copies-harder --copy-similarity=
			"

2590 2591
		local cur
		_get_comp_words_by_ref -n =: cur
2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604
		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 已提交
2605 2606
				--fetch-all --no-rebase --commit-url
				--revision $cmt_opts $fc_opts
2607 2608 2609 2610 2611 2612
				"
			;;
		set-tree,--*)
			__gitcomp "--stdin $cmt_opts $fc_opts"
			;;
		create-ignore,--*|propget,--*|proplist,--*|show-ignore,--*|\
2613
		show-externals,--*|mkdirs,--*)
2614 2615 2616 2617 2618 2619
			__gitcomp "--revision="
			;;
		log,--*)
			__gitcomp "
				--limit= --revision= --verbose --incremental
				--oneline --show-commit --non-recursive
S
SZEDER Gábor 已提交
2620
				--authors-file= --color
2621 2622 2623 2624 2625
				"
			;;
		rebase,--*)
			__gitcomp "
				--merge --verbose --strategy= --local
S
SZEDER Gábor 已提交
2626
				--fetch-all --dry-run $fc_opts
2627 2628 2629 2630 2631 2632 2633 2634
				"
			;;
		commit-diff,--*)
			__gitcomp "--message= --file= --revision= $cmt_opts"
			;;
		info,--*)
			__gitcomp "--url"
			;;
S
SZEDER Gábor 已提交
2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649
		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=
				"
			;;
2650 2651 2652
		reset,--*)
			__gitcomp "--revision= --parent"
			;;
2653 2654 2655 2656 2657 2658 2659
		*)
			COMPREPLY=()
			;;
		esac
	fi
}

2660 2661 2662
_git_tag ()
{
	local i c=1 f=0
2663 2664 2665 2666
	local words cword prev
	_get_comp_words_by_ref -n =: words cword prev
	while [ $c -lt $cword ]; do
		i="${words[c]}"
2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678
		case "$i" in
		-d|-v)
			__gitcomp "$(__git_tags)"
			return
			;;
		-f)
			f=1
			;;
		esac
		c=$((++c))
	done

2679
	case "$prev" in
2680 2681 2682
	-m|-F)
		COMPREPLY=()
		;;
2683
	-*|tag)
2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695
		if [ $f = 1 ]; then
			__gitcomp "$(__git_tags)"
		else
			COMPREPLY=()
		fi
		;;
	*)
		__gitcomp "$(__git_refs)"
		;;
	esac
}

2696 2697 2698 2699 2700
_git_whatchanged ()
{
	_git_log
}

2701 2702
_git ()
{
2703 2704
	local i c=1 command __git_dir

2705
	if [[ -n ${ZSH_VERSION-} ]]; then
2706 2707 2708 2709
		emulate -L bash
		setopt KSH_TYPESET
	fi

2710 2711 2712 2713
	local cur words cword
	_get_comp_words_by_ref -n =: cur words cword
	while [ $c -lt $cword ]; do
		i="${words[c]}"
2714 2715 2716
		case "$i" in
		--git-dir=*) __git_dir="${i#--git-dir=}" ;;
		--bare)      __git_dir="." ;;
2717 2718
		--version|-p|--paginate) ;;
		--help) command="help"; break ;;
2719 2720 2721 2722 2723
		*) command="$i"; break ;;
		esac
		c=$((++c))
	done

2724
	if [ -z "$command" ]; then
2725
		case "$cur" in
2726
		--*)   __gitcomp "
2727
			--paginate
2728 2729 2730 2731 2732
			--no-pager
			--git-dir=
			--bare
			--version
			--exec-path
2733
			--html-path
2734 2735
			--work-tree=
			--help
2736 2737
			"
			;;
J
Jonathan Nieder 已提交
2738 2739
		*)     __git_compute_porcelain_commands
		       __gitcomp "$__git_porcelain_commands $(__git_aliases)" ;;
2740 2741
		esac
		return
2742
	fi
2743

2744
	local completion_func="_git_${command//-/_}"
2745
	declare -f $completion_func >/dev/null && $completion_func && return
2746

2747
	local expansion=$(__git_aliased_command "$command")
2748 2749
	if [ -n "$expansion" ]; then
		completion_func="_git_${expansion//-/_}"
2750
		declare -f $completion_func >/dev/null && $completion_func
2751
	fi
2752 2753 2754 2755
}

_gitk ()
{
2756
	if [[ -n ${ZSH_VERSION-} ]]; then
2757 2758 2759 2760
		emulate -L bash
		setopt KSH_TYPESET
	fi

2761 2762
	__git_has_doubledash && return

2763
	local cur
2764
	local g="$(__gitdir)"
2765
	local merge=""
2766
	if [ -f "$g/MERGE_HEAD" ]; then
2767 2768
		merge="--merge"
	fi
2769
	_get_comp_words_by_ref -n =: cur
2770 2771
	case "$cur" in
	--*)
2772 2773 2774 2775 2776
		__gitcomp "
			$__git_log_common_options
			$__git_log_gitk_options
			$merge
			"
2777 2778 2779
		return
		;;
	esac
2780
	__git_complete_revlist
2781 2782
}

2783 2784 2785 2786
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
2787 2788 2789 2790 2791

# 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.
#
2792
if [ Cygwin = "$(uname -o 2>/dev/null)" ]; then
2793 2794
complete -o bashdefault -o default -o nospace -F _git git.exe 2>/dev/null \
	|| complete -o default -o nospace -F _git git.exe
2795
fi
2796

2797
if [[ -n ${ZSH_VERSION-} ]]; then
2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821
	shopt () {
		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
	}
fi