2006-09-28 11:31:25 +02:00
|
|
|
#
|
|
|
|
# bash completion support for core Git.
|
|
|
|
#
|
2007-05-24 07:36:46 +02:00
|
|
|
# Copyright (C) 2006,2007 Shawn O. Pearce <spearce@spearce.org>
|
2006-09-28 11:31:25 +02:00
|
|
|
# Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/).
|
2007-05-24 07:36:46 +02:00
|
|
|
# Distributed under the GNU General Public License, version 2.0.
|
2006-09-28 11:31:25 +02:00
|
|
|
#
|
|
|
|
# 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
|
2007-05-24 07:36:46 +02:00
|
|
|
# *) common --long-options
|
2006-09-28 11:31:25 +02:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|
2006-11-27 21:11:52 +01:00
|
|
|
# 3) You may want to make sure the git executable is available
|
|
|
|
# in your PATH before this script is sourced, as some caching
|
|
|
|
# is performed while the script loads. If git isn't found
|
|
|
|
# at source time then all lookups will be done on demand,
|
|
|
|
# which may be slightly slower.
|
|
|
|
#
|
|
|
|
# 4) Consider changing your PS1 to also show the current branch:
|
2006-11-27 09:41:28 +01:00
|
|
|
# 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.
|
|
|
|
#
|
2007-05-24 07:36:46 +02:00
|
|
|
# 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
|
|
|
|
#
|
2006-09-28 11:31:25 +02:00
|
|
|
|
2006-11-05 12:21:57 +01:00
|
|
|
__gitdir ()
|
|
|
|
{
|
2006-11-28 18:12:26 +01:00
|
|
|
if [ -z "$1" ]; then
|
|
|
|
if [ -n "$__git_dir" ]; then
|
|
|
|
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
|
2006-11-05 12:21:57 +01:00
|
|
|
}
|
|
|
|
|
2006-11-27 09:41:28 +01:00
|
|
|
__git_ps1 ()
|
|
|
|
{
|
|
|
|
local b="$(git symbolic-ref HEAD 2>/dev/null)"
|
|
|
|
if [ -n "$b" ]; then
|
|
|
|
if [ -n "$1" ]; then
|
|
|
|
printf "$1" "${b##refs/heads/}"
|
|
|
|
else
|
|
|
|
printf " (%s)" "${b##refs/heads/}"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2007-02-04 08:38:27 +01:00
|
|
|
__gitcomp ()
|
|
|
|
{
|
|
|
|
local all c s=$'\n' IFS=' '$'\t'$'\n'
|
2007-02-04 08:38:37 +01:00
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
2007-02-04 08:38:43 +01:00
|
|
|
if [ $# -gt 2 ]; then
|
2007-02-04 08:38:37 +01:00
|
|
|
cur="$3"
|
|
|
|
fi
|
2007-02-04 08:38:27 +01:00
|
|
|
for c in $1; do
|
2007-02-04 08:38:37 +01:00
|
|
|
case "$c$4" in
|
|
|
|
--*=*) all="$all$c$4$s" ;;
|
|
|
|
*.) all="$all$c$4$s" ;;
|
|
|
|
*) all="$all$c$4 $s" ;;
|
2007-02-04 08:38:27 +01:00
|
|
|
esac
|
|
|
|
done
|
|
|
|
IFS=$s
|
2007-02-04 08:38:37 +01:00
|
|
|
COMPREPLY=($(compgen -P "$2" -W "$all" -- "$cur"))
|
2007-02-04 08:38:27 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2006-11-27 10:44:47 +01:00
|
|
|
__git_heads ()
|
|
|
|
{
|
2006-11-28 18:12:26 +01:00
|
|
|
local cmd i is_hash=y dir="$(__gitdir "$1")"
|
2006-11-27 10:44:47 +01:00
|
|
|
if [ -d "$dir" ]; then
|
|
|
|
for i in $(git --git-dir="$dir" \
|
|
|
|
for-each-ref --format='%(refname)' \
|
|
|
|
refs/heads ); do
|
|
|
|
echo "${i#refs/heads/}"
|
|
|
|
done
|
|
|
|
return
|
|
|
|
fi
|
2006-11-28 18:12:26 +01:00
|
|
|
for i in $(git-ls-remote "$1" 2>/dev/null); do
|
2006-11-27 10:44:47 +01:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2006-09-28 11:31:25 +02:00
|
|
|
__git_refs ()
|
|
|
|
{
|
2006-11-28 18:12:26 +01:00
|
|
|
local cmd i is_hash=y dir="$(__gitdir "$1")"
|
2006-11-05 12:21:57 +01:00
|
|
|
if [ -d "$dir" ]; then
|
2006-11-27 09:42:32 +01:00
|
|
|
if [ -e "$dir/HEAD" ]; then echo HEAD; fi
|
|
|
|
for i in $(git --git-dir="$dir" \
|
|
|
|
for-each-ref --format='%(refname)' \
|
|
|
|
refs/tags refs/heads refs/remotes); do
|
|
|
|
case "$i" in
|
|
|
|
refs/tags/*) echo "${i#refs/tags/}" ;;
|
|
|
|
refs/heads/*) echo "${i#refs/heads/}" ;;
|
|
|
|
refs/remotes/*) echo "${i#refs/remotes/}" ;;
|
|
|
|
*) echo "$i" ;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
return
|
2006-09-28 11:31:25 +02:00
|
|
|
fi
|
2006-11-27 09:42:32 +01:00
|
|
|
for i in $(git-ls-remote "$dir" 2>/dev/null); do
|
2006-09-28 11:31:25 +02:00
|
|
|
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/}" ;;
|
2006-11-27 09:42:32 +01:00
|
|
|
n,refs/remotes/*) is_hash=y; echo "${i#refs/remotes/}" ;;
|
2006-09-28 11:31:25 +02:00
|
|
|
n,*) is_hash=y; echo "$i" ;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
__git_refs2 ()
|
|
|
|
{
|
2006-11-28 18:12:26 +01:00
|
|
|
local i
|
|
|
|
for i in $(__git_refs "$1"); do
|
|
|
|
echo "$i:$i"
|
2006-09-28 11:31:25 +02:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2006-11-27 10:44:47 +01:00
|
|
|
__git_refs_remotes ()
|
|
|
|
{
|
|
|
|
local cmd i is_hash=y
|
|
|
|
for i in $(git-ls-remote "$1" 2>/dev/null); do
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2006-09-28 11:31:25 +02:00
|
|
|
__git_remotes ()
|
|
|
|
{
|
2006-11-05 12:21:57 +01:00
|
|
|
local i ngoff IFS=$'\n' d="$(__gitdir)"
|
2006-11-05 12:21:03 +01:00
|
|
|
shopt -q nullglob || ngoff=1
|
2006-09-28 11:31:25 +02:00
|
|
|
shopt -s nullglob
|
2006-11-05 12:21:57 +01:00
|
|
|
for i in "$d/remotes"/*; do
|
|
|
|
echo ${i#$d/remotes/}
|
2006-09-28 11:31:25 +02:00
|
|
|
done
|
2006-11-05 12:21:03 +01:00
|
|
|
[ "$ngoff" ] && shopt -u nullglob
|
2007-01-29 01:16:53 +01:00
|
|
|
for i in $(git --git-dir="$d" config --list); do
|
2006-11-05 12:21:03 +01:00
|
|
|
case "$i" in
|
|
|
|
remote.*.url=*)
|
|
|
|
i="${i#remote.}"
|
|
|
|
echo "${i/.url=*/}"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
2006-09-28 11:31:25 +02:00
|
|
|
}
|
|
|
|
|
2006-11-27 09:40:47 +01:00
|
|
|
__git_merge_strategies ()
|
|
|
|
{
|
2006-11-27 21:11:52 +01:00
|
|
|
if [ -n "$__git_merge_strategylist" ]; then
|
|
|
|
echo "$__git_merge_strategylist"
|
|
|
|
return
|
|
|
|
fi
|
2006-11-27 09:40:47 +01:00
|
|
|
sed -n "/^all_strategies='/{
|
|
|
|
s/^all_strategies='//
|
|
|
|
s/'//
|
|
|
|
p
|
|
|
|
q
|
|
|
|
}" "$(git --exec-path)/git-merge"
|
|
|
|
}
|
2006-11-27 21:11:52 +01:00
|
|
|
__git_merge_strategylist=
|
|
|
|
__git_merge_strategylist="$(__git_merge_strategies 2>/dev/null)"
|
2006-11-27 09:40:47 +01:00
|
|
|
|
2006-09-28 11:31:25 +02:00
|
|
|
__git_complete_file ()
|
|
|
|
{
|
2006-11-05 12:25:25 +01:00
|
|
|
local pfx ls ref cur="${COMP_WORDS[COMP_CWORD]}"
|
2006-09-28 11:31:25 +02:00
|
|
|
case "$cur" in
|
|
|
|
?*:*)
|
2006-11-05 12:25:25 +01:00
|
|
|
ref="${cur%%:*}"
|
|
|
|
cur="${cur#*:}"
|
2006-09-28 11:31:25 +02:00
|
|
|
case "$cur" in
|
|
|
|
?*/*)
|
2006-11-05 12:25:25 +01:00
|
|
|
pfx="${cur%/*}"
|
|
|
|
cur="${cur##*/}"
|
2006-09-28 11:31:25 +02:00
|
|
|
ls="$ref:$pfx"
|
|
|
|
pfx="$pfx/"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
ls="$ref"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
COMPREPLY=($(compgen -P "$pfx" \
|
2006-11-05 12:21:57 +01:00
|
|
|
-W "$(git --git-dir="$(__gitdir)" ls-tree "$ls" \
|
2006-09-28 11:31:25 +02:00
|
|
|
| sed '/^100... blob /s,^.* ,,
|
|
|
|
/^040000 tree /{
|
|
|
|
s,^.* ,,
|
|
|
|
s,$,/,
|
|
|
|
}
|
|
|
|
s/^.* //')" \
|
|
|
|
-- "$cur"))
|
|
|
|
;;
|
|
|
|
*)
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "$(__git_refs)"
|
2006-09-28 11:31:25 +02:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2006-11-27 09:41:43 +01:00
|
|
|
__git_complete_revlist ()
|
|
|
|
{
|
|
|
|
local pfx cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
case "$cur" in
|
|
|
|
*...*)
|
|
|
|
pfx="${cur%...*}..."
|
|
|
|
cur="${cur#*...}"
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "$(__git_refs)" "$pfx" "$cur"
|
2006-11-27 09:41:43 +01:00
|
|
|
;;
|
|
|
|
*..*)
|
|
|
|
pfx="${cur%..*}.."
|
|
|
|
cur="${cur#*..}"
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "$(__git_refs)" "$pfx" "$cur"
|
|
|
|
;;
|
|
|
|
*.)
|
|
|
|
__gitcomp "$cur."
|
2006-11-27 09:41:43 +01:00
|
|
|
;;
|
|
|
|
*)
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "$(__git_refs)"
|
2006-11-27 09:41:43 +01:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2006-11-27 09:41:01 +01:00
|
|
|
__git_commands ()
|
|
|
|
{
|
2006-11-27 21:11:52 +01:00
|
|
|
if [ -n "$__git_commandlist" ]; then
|
|
|
|
echo "$__git_commandlist"
|
|
|
|
return
|
|
|
|
fi
|
2006-11-27 09:41:01 +01:00
|
|
|
local i IFS=" "$'\n'
|
|
|
|
for i in $(git help -a|egrep '^ ')
|
|
|
|
do
|
|
|
|
case $i in
|
2007-02-04 08:38:23 +01:00
|
|
|
add--interactive) : plumbing;;
|
2007-02-04 08:38:30 +01:00
|
|
|
applymbox) : ask gittus;;
|
|
|
|
applypatch) : ask gittus;;
|
|
|
|
archimport) : import;;
|
2007-02-04 08:38:21 +01:00
|
|
|
cat-file) : plumbing;;
|
2007-05-19 23:35:21 +02:00
|
|
|
check-attr) : plumbing;;
|
2006-11-27 09:41:01 +01:00
|
|
|
check-ref-format) : plumbing;;
|
|
|
|
commit-tree) : plumbing;;
|
|
|
|
convert-objects) : plumbing;;
|
2007-02-04 08:38:30 +01:00
|
|
|
cvsexportcommit) : export;;
|
|
|
|
cvsimport) : import;;
|
2006-11-27 09:41:01 +01:00
|
|
|
cvsserver) : daemon;;
|
|
|
|
daemon) : daemon;;
|
2007-05-24 07:01:02 +02:00
|
|
|
diff-files) : plumbing;;
|
|
|
|
diff-index) : plumbing;;
|
|
|
|
diff-tree) : plumbing;;
|
2007-02-12 01:55:22 +01:00
|
|
|
fast-import) : import;;
|
2007-02-04 08:38:30 +01:00
|
|
|
fsck-objects) : plumbing;;
|
2007-05-19 23:35:21 +02:00
|
|
|
fetch--tool) : plumbing;;
|
2006-11-27 09:41:01 +01:00
|
|
|
fetch-pack) : plumbing;;
|
2007-02-04 08:38:30 +01:00
|
|
|
fmt-merge-msg) : plumbing;;
|
2007-05-19 23:35:21 +02:00
|
|
|
for-each-ref) : plumbing;;
|
2006-11-27 09:41:01 +01:00
|
|
|
hash-object) : plumbing;;
|
|
|
|
http-*) : transport;;
|
|
|
|
index-pack) : plumbing;;
|
2007-02-04 08:38:30 +01:00
|
|
|
init-db) : deprecated;;
|
2006-11-27 09:41:01 +01:00
|
|
|
local-fetch) : plumbing;;
|
|
|
|
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;;
|
2007-02-04 08:38:30 +01:00
|
|
|
prune) : plumbing;;
|
|
|
|
prune-packed) : plumbing;;
|
|
|
|
quiltimport) : import;;
|
2006-11-27 09:41:01 +01:00
|
|
|
read-tree) : plumbing;;
|
|
|
|
receive-pack) : plumbing;;
|
2007-02-04 08:38:21 +01:00
|
|
|
reflog) : plumbing;;
|
2007-02-04 08:38:30 +01:00
|
|
|
repo-config) : plumbing;;
|
2006-11-27 09:41:01 +01:00
|
|
|
rerere) : plumbing;;
|
|
|
|
rev-list) : plumbing;;
|
|
|
|
rev-parse) : plumbing;;
|
|
|
|
runstatus) : plumbing;;
|
|
|
|
sh-setup) : internal;;
|
|
|
|
shell) : daemon;;
|
|
|
|
send-pack) : plumbing;;
|
|
|
|
show-index) : plumbing;;
|
|
|
|
ssh-*) : transport;;
|
|
|
|
stripspace) : plumbing;;
|
2007-02-04 08:38:30 +01:00
|
|
|
svn) : import export;;
|
|
|
|
svnimport) : import;;
|
2006-11-27 09:41:01 +01:00
|
|
|
symbolic-ref) : plumbing;;
|
2007-02-04 08:38:30 +01:00
|
|
|
tar-tree) : deprecated;;
|
2006-11-27 09:41:01 +01:00
|
|
|
unpack-file) : plumbing;;
|
|
|
|
unpack-objects) : plumbing;;
|
2007-02-04 08:38:30 +01:00
|
|
|
update-index) : plumbing;;
|
2006-11-27 09:41:01 +01:00
|
|
|
update-ref) : plumbing;;
|
|
|
|
update-server-info) : daemon;;
|
|
|
|
upload-archive) : plumbing;;
|
|
|
|
upload-pack) : plumbing;;
|
|
|
|
write-tree) : plumbing;;
|
2007-02-04 08:38:30 +01:00
|
|
|
verify-tag) : plumbing;;
|
2006-11-27 09:41:01 +01:00
|
|
|
*) echo $i;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
}
|
2006-11-27 21:11:52 +01:00
|
|
|
__git_commandlist=
|
|
|
|
__git_commandlist="$(__git_commands 2>/dev/null)"
|
2006-11-27 09:41:01 +01:00
|
|
|
|
2006-10-28 14:12:20 +02:00
|
|
|
__git_aliases ()
|
|
|
|
{
|
2006-11-05 12:21:03 +01:00
|
|
|
local i IFS=$'\n'
|
2007-01-29 01:16:53 +01:00
|
|
|
for i in $(git --git-dir="$(__gitdir)" config --list); do
|
2006-11-05 12:21:03 +01:00
|
|
|
case "$i" in
|
|
|
|
alias.*)
|
|
|
|
i="${i#alias.}"
|
|
|
|
echo "${i/=*/}"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
2006-10-28 14:12:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
__git_aliased_command ()
|
|
|
|
{
|
2006-11-05 12:21:57 +01:00
|
|
|
local word cmdline=$(git --git-dir="$(__gitdir)" \
|
2007-01-29 01:16:53 +01:00
|
|
|
config --get "alias.$1")
|
2006-10-28 14:12:20 +02:00
|
|
|
for word in $cmdline; do
|
|
|
|
if [ "${word##-*}" ]; then
|
|
|
|
echo $word
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2006-11-27 21:12:03 +01:00
|
|
|
__git_whitespacelist="nowarn warn error error-all strip"
|
|
|
|
|
|
|
|
_git_am ()
|
|
|
|
{
|
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
if [ -d .dotest ]; then
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "--skip --resolved"
|
2006-11-27 21:12:03 +01:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
case "$cur" in
|
|
|
|
--whitespace=*)
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
|
2006-11-27 21:12:03 +01:00
|
|
|
return
|
|
|
|
;;
|
|
|
|
--*)
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "
|
2006-11-27 21:12:03 +01:00
|
|
|
--signoff --utf8 --binary --3way --interactive
|
|
|
|
--whitespace=
|
2007-02-04 08:38:43 +01:00
|
|
|
"
|
2006-11-27 21:12:03 +01:00
|
|
|
return
|
|
|
|
esac
|
|
|
|
COMPREPLY=()
|
|
|
|
}
|
|
|
|
|
|
|
|
_git_apply ()
|
|
|
|
{
|
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
case "$cur" in
|
|
|
|
--whitespace=*)
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}"
|
2006-11-27 21:12:03 +01:00
|
|
|
return
|
|
|
|
;;
|
|
|
|
--*)
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "
|
2006-11-27 21:12:03 +01:00
|
|
|
--stat --numstat --summary --check --index
|
|
|
|
--cached --index-info --reverse --reject --unidiff-zero
|
|
|
|
--apply --no-add --exclude=
|
|
|
|
--whitespace= --inaccurate-eof --verbose
|
2007-02-04 08:38:43 +01:00
|
|
|
"
|
2006-11-27 21:12:03 +01:00
|
|
|
return
|
|
|
|
esac
|
|
|
|
COMPREPLY=()
|
|
|
|
}
|
|
|
|
|
2007-02-04 08:38:23 +01:00
|
|
|
_git_add ()
|
|
|
|
{
|
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
case "$cur" in
|
|
|
|
--*)
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "--interactive"
|
2007-02-04 08:38:23 +01:00
|
|
|
return
|
|
|
|
esac
|
|
|
|
COMPREPLY=()
|
|
|
|
}
|
|
|
|
|
2007-02-05 21:44:37 +01:00
|
|
|
_git_bisect ()
|
|
|
|
{
|
|
|
|
local i c=1 command
|
|
|
|
while [ $c -lt $COMP_CWORD ]; do
|
|
|
|
i="${COMP_WORDS[c]}"
|
|
|
|
case "$i" in
|
|
|
|
start|bad|good|reset|visualize|replay|log)
|
|
|
|
command="$i"
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
c=$((++c))
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ $c -eq $COMP_CWORD -a -z "$command" ]; then
|
|
|
|
__gitcomp "start bad good reset visualize replay log"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
case "$command" in
|
|
|
|
bad|good|reset)
|
|
|
|
__gitcomp "$(__git_refs)"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
COMPREPLY=()
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2006-09-28 11:31:25 +02:00
|
|
|
_git_branch ()
|
|
|
|
{
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "$(__git_refs)"
|
2006-09-28 11:31:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
_git_checkout ()
|
|
|
|
{
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "$(__git_refs)"
|
2006-09-28 11:31:25 +02:00
|
|
|
}
|
|
|
|
|
2007-02-05 21:44:22 +01:00
|
|
|
_git_cherry ()
|
|
|
|
{
|
|
|
|
__gitcomp "$(__git_refs)"
|
|
|
|
}
|
|
|
|
|
2006-11-27 09:41:59 +01:00
|
|
|
_git_cherry_pick ()
|
|
|
|
{
|
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
case "$cur" in
|
|
|
|
--*)
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "--edit --no-commit"
|
2006-11-27 09:41:59 +01:00
|
|
|
;;
|
|
|
|
*)
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "$(__git_refs)"
|
2006-11-27 09:41:59 +01:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2006-11-28 18:12:08 +01:00
|
|
|
_git_commit ()
|
|
|
|
{
|
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
case "$cur" in
|
|
|
|
--*)
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "
|
2006-11-28 18:12:08 +01:00
|
|
|
--all --author= --signoff --verify --no-verify
|
|
|
|
--edit --amend --include --only
|
2007-02-04 08:38:43 +01:00
|
|
|
"
|
2006-11-28 18:12:08 +01:00
|
|
|
return
|
|
|
|
esac
|
|
|
|
COMPREPLY=()
|
|
|
|
}
|
|
|
|
|
2006-09-28 11:31:25 +02:00
|
|
|
_git_diff ()
|
|
|
|
{
|
|
|
|
__git_complete_file
|
|
|
|
}
|
|
|
|
|
|
|
|
_git_diff_tree ()
|
|
|
|
{
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "$(__git_refs)"
|
2006-09-28 11:31:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
_git_fetch ()
|
|
|
|
{
|
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
|
|
|
|
case "${COMP_WORDS[0]},$COMP_CWORD" in
|
|
|
|
git-fetch*,1)
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "$(__git_remotes)"
|
2006-09-28 11:31:25 +02:00
|
|
|
;;
|
|
|
|
git,2)
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "$(__git_remotes)"
|
2006-09-28 11:31:25 +02:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
case "$cur" in
|
|
|
|
*:*)
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "$(__git_refs)" "" "${cur#*:}"
|
2006-09-28 11:31:25 +02:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
local remote
|
|
|
|
case "${COMP_WORDS[0]}" in
|
|
|
|
git-fetch) remote="${COMP_WORDS[1]}" ;;
|
|
|
|
git) remote="${COMP_WORDS[2]}" ;;
|
|
|
|
esac
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "$(__git_refs2 "$remote")"
|
2006-09-28 11:31:25 +02:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2006-11-27 09:41:43 +01:00
|
|
|
_git_format_patch ()
|
|
|
|
{
|
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
case "$cur" in
|
|
|
|
--*)
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "
|
2006-11-27 09:41:43 +01:00
|
|
|
--stdout --attach --thread
|
|
|
|
--output-directory
|
|
|
|
--numbered --start-number
|
|
|
|
--keep-subject
|
|
|
|
--signoff
|
|
|
|
--in-reply-to=
|
|
|
|
--full-index --binary
|
2007-02-04 08:38:47 +01:00
|
|
|
--not --all
|
2007-02-04 08:38:43 +01:00
|
|
|
"
|
2006-11-27 09:41:43 +01:00
|
|
|
return
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
__git_complete_revlist
|
|
|
|
}
|
|
|
|
|
2007-02-05 21:44:28 +01:00
|
|
|
_git_gc ()
|
|
|
|
{
|
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
case "$cur" in
|
|
|
|
--*)
|
|
|
|
__gitcomp "--prune"
|
|
|
|
return
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
COMPREPLY=()
|
|
|
|
}
|
|
|
|
|
2006-09-28 11:31:25 +02:00
|
|
|
_git_ls_remote ()
|
|
|
|
{
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "$(__git_remotes)"
|
2006-09-28 11:31:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
_git_ls_tree ()
|
|
|
|
{
|
|
|
|
__git_complete_file
|
|
|
|
}
|
|
|
|
|
|
|
|
_git_log ()
|
|
|
|
{
|
2006-11-27 09:42:18 +01:00
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
case "$cur" in
|
|
|
|
--pretty=*)
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "
|
2006-11-27 09:42:18 +01:00
|
|
|
oneline short medium full fuller email raw
|
2007-02-04 08:38:43 +01:00
|
|
|
" "" "${cur##--pretty=}"
|
2006-11-27 09:42:18 +01:00
|
|
|
return
|
|
|
|
;;
|
|
|
|
--*)
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "
|
2006-11-27 09:42:18 +01:00
|
|
|
--max-count= --max-age= --since= --after=
|
|
|
|
--min-age= --before= --until=
|
2007-05-24 07:51:30 +02:00
|
|
|
--root --topo-order --date-order --reverse
|
2006-11-27 09:42:18 +01:00
|
|
|
--no-merges
|
|
|
|
--abbrev-commit --abbrev=
|
|
|
|
--relative-date
|
|
|
|
--author= --committer= --grep=
|
|
|
|
--all-match
|
2007-05-24 07:51:30 +02:00
|
|
|
--pretty= --name-status --name-only --raw
|
2007-02-04 08:38:47 +01:00
|
|
|
--not --all
|
2007-02-04 08:38:43 +01:00
|
|
|
"
|
2006-11-27 09:42:18 +01:00
|
|
|
return
|
|
|
|
;;
|
|
|
|
esac
|
2006-11-27 09:41:43 +01:00
|
|
|
__git_complete_revlist
|
2006-09-28 11:31:25 +02:00
|
|
|
}
|
|
|
|
|
2006-11-27 09:40:47 +01:00
|
|
|
_git_merge ()
|
|
|
|
{
|
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
2006-11-27 21:10:42 +01:00
|
|
|
case "${COMP_WORDS[COMP_CWORD-1]}" in
|
|
|
|
-s|--strategy)
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "$(__git_merge_strategies)"
|
2006-11-27 21:10:42 +01:00
|
|
|
return
|
|
|
|
esac
|
2006-11-27 09:40:47 +01:00
|
|
|
case "$cur" in
|
2006-11-27 21:10:42 +01:00
|
|
|
--strategy=*)
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "$(__git_merge_strategies)" "" "${cur##--strategy=}"
|
2006-11-27 21:10:42 +01:00
|
|
|
return
|
|
|
|
;;
|
2006-11-27 09:40:47 +01:00
|
|
|
--*)
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "
|
2006-11-27 09:42:07 +01:00
|
|
|
--no-commit --no-summary --squash --strategy
|
2007-02-04 08:38:43 +01:00
|
|
|
"
|
2006-11-27 09:40:47 +01:00
|
|
|
return
|
|
|
|
esac
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "$(__git_refs)"
|
2006-11-27 09:40:47 +01:00
|
|
|
}
|
|
|
|
|
2006-09-28 11:31:25 +02:00
|
|
|
_git_merge_base ()
|
|
|
|
{
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "$(__git_refs)"
|
2006-09-28 11:31:25 +02:00
|
|
|
}
|
|
|
|
|
2006-11-27 09:41:12 +01:00
|
|
|
_git_name_rev ()
|
|
|
|
{
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "--tags --all --stdin"
|
2006-11-27 09:41:12 +01:00
|
|
|
}
|
|
|
|
|
2006-09-28 11:31:25 +02:00
|
|
|
_git_pull ()
|
|
|
|
{
|
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
|
|
|
|
case "${COMP_WORDS[0]},$COMP_CWORD" in
|
|
|
|
git-pull*,1)
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "$(__git_remotes)"
|
2006-09-28 11:31:25 +02:00
|
|
|
;;
|
|
|
|
git,2)
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "$(__git_remotes)"
|
2006-09-28 11:31:25 +02:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
local remote
|
|
|
|
case "${COMP_WORDS[0]}" in
|
|
|
|
git-pull) remote="${COMP_WORDS[1]}" ;;
|
|
|
|
git) remote="${COMP_WORDS[2]}" ;;
|
|
|
|
esac
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "$(__git_refs "$remote")"
|
2006-09-28 11:31:25 +02:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
_git_push ()
|
|
|
|
{
|
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
|
|
|
|
case "${COMP_WORDS[0]},$COMP_CWORD" in
|
|
|
|
git-push*,1)
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "$(__git_remotes)"
|
2006-09-28 11:31:25 +02:00
|
|
|
;;
|
|
|
|
git,2)
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "$(__git_remotes)"
|
2006-09-28 11:31:25 +02:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
case "$cur" in
|
|
|
|
*:*)
|
|
|
|
local remote
|
|
|
|
case "${COMP_WORDS[0]}" in
|
|
|
|
git-push) remote="${COMP_WORDS[1]}" ;;
|
|
|
|
git) remote="${COMP_WORDS[2]}" ;;
|
|
|
|
esac
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "$(__git_refs "$remote")" "" "${cur#*:}"
|
2006-09-28 11:31:25 +02:00
|
|
|
;;
|
2007-06-25 01:42:16 +02:00
|
|
|
+*)
|
|
|
|
__gitcomp "$(__git_refs)" + "${cur#+}"
|
|
|
|
;;
|
2006-09-28 11:31:25 +02:00
|
|
|
*)
|
2007-06-23 00:44:04 +02:00
|
|
|
__gitcomp "$(__git_refs)"
|
2006-09-28 11:31:25 +02:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2006-11-27 09:42:07 +01:00
|
|
|
_git_rebase ()
|
|
|
|
{
|
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
2007-02-05 05:52:02 +01:00
|
|
|
if [ -d .dotest ] || [ -d .git/.dotest-merge ]; then
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "--continue --skip --abort"
|
2006-11-27 09:42:07 +01:00
|
|
|
return
|
|
|
|
fi
|
2006-11-27 21:10:42 +01:00
|
|
|
case "${COMP_WORDS[COMP_CWORD-1]}" in
|
|
|
|
-s|--strategy)
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "$(__git_merge_strategies)"
|
2006-11-27 21:10:42 +01:00
|
|
|
return
|
|
|
|
esac
|
2006-11-27 09:42:07 +01:00
|
|
|
case "$cur" in
|
2006-11-27 21:10:42 +01:00
|
|
|
--strategy=*)
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "$(__git_merge_strategies)" "" "${cur##--strategy=}"
|
2006-11-27 21:10:42 +01:00
|
|
|
return
|
|
|
|
;;
|
2006-11-27 09:42:07 +01:00
|
|
|
--*)
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "--onto --merge --strategy"
|
2006-11-27 09:42:07 +01:00
|
|
|
return
|
|
|
|
esac
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "$(__git_refs)"
|
2006-11-27 09:42:07 +01:00
|
|
|
}
|
|
|
|
|
2007-01-29 01:16:53 +01:00
|
|
|
_git_config ()
|
2006-11-27 10:44:47 +01:00
|
|
|
{
|
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
local prv="${COMP_WORDS[COMP_CWORD-1]}"
|
|
|
|
case "$prv" in
|
|
|
|
branch.*.remote)
|
2007-02-04 08:38:37 +01:00
|
|
|
__gitcomp "$(__git_remotes)"
|
2006-11-27 10:44:47 +01:00
|
|
|
return
|
|
|
|
;;
|
|
|
|
branch.*.merge)
|
2007-02-04 08:38:37 +01:00
|
|
|
__gitcomp "$(__git_refs)"
|
2006-11-27 10:44:47 +01:00
|
|
|
return
|
|
|
|
;;
|
|
|
|
remote.*.fetch)
|
|
|
|
local remote="${prv#remote.}"
|
|
|
|
remote="${remote%.fetch}"
|
2007-02-04 08:38:37 +01:00
|
|
|
__gitcomp "$(__git_refs_remotes "$remote")"
|
2006-11-27 10:44:47 +01:00
|
|
|
return
|
|
|
|
;;
|
|
|
|
remote.*.push)
|
|
|
|
local remote="${prv#remote.}"
|
|
|
|
remote="${remote%.push}"
|
2007-02-04 08:38:37 +01:00
|
|
|
__gitcomp "$(git --git-dir="$(__gitdir)" \
|
2006-11-27 10:44:47 +01:00
|
|
|
for-each-ref --format='%(refname):%(refname)' \
|
2007-02-04 08:38:37 +01:00
|
|
|
refs/heads)"
|
|
|
|
return
|
|
|
|
;;
|
|
|
|
pull.twohead|pull.octopus)
|
|
|
|
__gitcomp "$(__git_merge_strategies)"
|
|
|
|
return
|
|
|
|
;;
|
|
|
|
color.branch|color.diff|color.status)
|
|
|
|
__gitcomp "always never auto"
|
|
|
|
return
|
|
|
|
;;
|
|
|
|
color.*.*)
|
|
|
|
__gitcomp "
|
|
|
|
black red green yellow blue magenta cyan white
|
|
|
|
bold dim ul blink reverse
|
|
|
|
"
|
2006-11-27 10:44:47 +01:00
|
|
|
return
|
|
|
|
;;
|
|
|
|
*.*)
|
|
|
|
COMPREPLY=()
|
|
|
|
return
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
case "$cur" in
|
|
|
|
--*)
|
2007-02-04 08:38:37 +01:00
|
|
|
__gitcomp "
|
2007-05-24 08:07:45 +02:00
|
|
|
--global --system
|
|
|
|
--list --replace-all
|
2006-11-27 10:44:47 +01:00
|
|
|
--get --get-all --get-regexp
|
2007-02-05 21:44:32 +01:00
|
|
|
--add --unset --unset-all
|
2007-05-24 08:07:45 +02:00
|
|
|
--remove-section --rename-section
|
2007-02-04 08:38:37 +01:00
|
|
|
"
|
2006-11-27 10:44:47 +01:00
|
|
|
return
|
|
|
|
;;
|
|
|
|
branch.*.*)
|
|
|
|
local pfx="${cur%.*}."
|
|
|
|
cur="${cur##*.}"
|
2007-02-04 08:38:37 +01:00
|
|
|
__gitcomp "remote merge" "$pfx" "$cur"
|
2006-11-27 10:44:47 +01:00
|
|
|
return
|
|
|
|
;;
|
|
|
|
branch.*)
|
|
|
|
local pfx="${cur%.*}."
|
|
|
|
cur="${cur#*.}"
|
2007-02-04 08:38:37 +01:00
|
|
|
__gitcomp "$(__git_heads)" "$pfx" "$cur" "."
|
2006-11-27 10:44:47 +01:00
|
|
|
return
|
|
|
|
;;
|
|
|
|
remote.*.*)
|
|
|
|
local pfx="${cur%.*}."
|
|
|
|
cur="${cur##*.}"
|
2007-05-24 08:07:45 +02:00
|
|
|
__gitcomp "
|
|
|
|
url fetch push skipDefaultUpdate
|
|
|
|
receivepack uploadpack tagopt
|
|
|
|
" "$pfx" "$cur"
|
2006-11-27 10:44:47 +01:00
|
|
|
return
|
|
|
|
;;
|
|
|
|
remote.*)
|
|
|
|
local pfx="${cur%.*}."
|
|
|
|
cur="${cur#*.}"
|
2007-02-04 08:38:37 +01:00
|
|
|
__gitcomp "$(__git_remotes)" "$pfx" "$cur" "."
|
2006-11-27 10:44:47 +01:00
|
|
|
return
|
|
|
|
;;
|
|
|
|
esac
|
2007-02-04 08:38:37 +01:00
|
|
|
__gitcomp "
|
2006-11-27 10:44:47 +01:00
|
|
|
apply.whitespace
|
|
|
|
core.fileMode
|
|
|
|
core.gitProxy
|
|
|
|
core.ignoreStat
|
|
|
|
core.preferSymlinkRefs
|
|
|
|
core.logAllRefUpdates
|
|
|
|
core.repositoryFormatVersion
|
|
|
|
core.sharedRepository
|
|
|
|
core.warnAmbiguousRefs
|
|
|
|
core.compression
|
|
|
|
core.legacyHeaders
|
2007-02-04 08:38:37 +01:00
|
|
|
core.packedGitWindowSize
|
|
|
|
core.packedGitLimit
|
2007-04-24 02:18:16 +02:00
|
|
|
clean.requireForce
|
2007-02-04 08:38:37 +01:00
|
|
|
color.branch
|
|
|
|
color.branch.current
|
|
|
|
color.branch.local
|
|
|
|
color.branch.remote
|
|
|
|
color.branch.plain
|
2006-12-13 10:13:28 +01:00
|
|
|
color.diff
|
2007-02-04 08:38:37 +01:00
|
|
|
color.diff.plain
|
|
|
|
color.diff.meta
|
|
|
|
color.diff.frag
|
|
|
|
color.diff.old
|
|
|
|
color.diff.new
|
|
|
|
color.diff.commit
|
|
|
|
color.diff.whitespace
|
2006-12-13 10:13:28 +01:00
|
|
|
color.pager
|
|
|
|
color.status
|
2007-02-04 08:38:37 +01:00
|
|
|
color.status.header
|
|
|
|
color.status.added
|
|
|
|
color.status.changed
|
|
|
|
color.status.untracked
|
|
|
|
diff.renameLimit
|
|
|
|
diff.renames
|
|
|
|
fetch.unpackLimit
|
|
|
|
format.headers
|
|
|
|
gitcvs.enabled
|
|
|
|
gitcvs.logfile
|
2007-05-24 08:07:45 +02:00
|
|
|
gitcvs.allbinary
|
|
|
|
gitcvs.dbname gitcvs.dbdriver gitcvs.dbuser gitcvs.dvpass
|
|
|
|
gc.packrefs
|
2007-02-04 08:38:37 +01:00
|
|
|
gc.reflogexpire
|
|
|
|
gc.reflogexpireunreachable
|
|
|
|
gc.rerereresolved
|
|
|
|
gc.rerereunresolved
|
2006-11-27 10:44:47 +01:00
|
|
|
http.sslVerify
|
|
|
|
http.sslCert
|
|
|
|
http.sslKey
|
|
|
|
http.sslCAInfo
|
|
|
|
http.sslCAPath
|
|
|
|
http.maxRequests
|
2007-02-04 08:38:37 +01:00
|
|
|
http.lowSpeedLimit
|
|
|
|
http.lowSpeedTime
|
2006-11-27 10:44:47 +01:00
|
|
|
http.noEPSV
|
2007-02-04 08:38:37 +01:00
|
|
|
i18n.commitEncoding
|
|
|
|
i18n.logOutputEncoding
|
|
|
|
log.showroot
|
2007-05-24 08:07:45 +02:00
|
|
|
merge.tool
|
2007-02-04 08:38:37 +01:00
|
|
|
merge.summary
|
|
|
|
merge.verbosity
|
2006-11-27 10:44:47 +01:00
|
|
|
pack.window
|
2007-05-24 08:07:45 +02:00
|
|
|
pack.depth
|
2007-02-04 08:38:37 +01:00
|
|
|
pull.octopus
|
|
|
|
pull.twohead
|
2006-11-27 10:44:47 +01:00
|
|
|
repack.useDeltaBaseOffset
|
2007-02-04 08:38:37 +01:00
|
|
|
show.difftree
|
|
|
|
showbranch.default
|
|
|
|
tar.umask
|
|
|
|
transfer.unpackLimit
|
2006-11-27 10:44:47 +01:00
|
|
|
receive.unpackLimit
|
|
|
|
receive.denyNonFastForwards
|
2007-02-04 08:38:37 +01:00
|
|
|
user.name
|
|
|
|
user.email
|
|
|
|
user.signingkey
|
|
|
|
whatchanged.difftree
|
2006-11-27 10:44:47 +01:00
|
|
|
branch. remote.
|
2007-02-04 08:38:37 +01:00
|
|
|
"
|
2006-11-27 10:44:47 +01:00
|
|
|
}
|
|
|
|
|
2007-02-05 05:52:08 +01:00
|
|
|
_git_remote ()
|
|
|
|
{
|
|
|
|
local i c=1 command
|
|
|
|
while [ $c -lt $COMP_CWORD ]; do
|
|
|
|
i="${COMP_WORDS[c]}"
|
|
|
|
case "$i" in
|
2007-05-24 07:46:49 +02:00
|
|
|
add|show|prune|update) command="$i"; break ;;
|
2007-02-05 05:52:08 +01:00
|
|
|
esac
|
|
|
|
c=$((++c))
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ $c -eq $COMP_CWORD -a -z "$command" ]; then
|
2007-05-24 07:46:49 +02:00
|
|
|
__gitcomp "add show prune update"
|
2007-02-05 05:52:08 +01:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
case "$command" in
|
|
|
|
show|prune)
|
|
|
|
__gitcomp "$(__git_remotes)"
|
|
|
|
;;
|
2007-05-24 07:46:49 +02:00
|
|
|
update)
|
|
|
|
local i c='' IFS=$'\n'
|
|
|
|
for i in $(git --git-dir="$(__gitdir)" config --list); do
|
|
|
|
case "$i" in
|
|
|
|
remotes.*)
|
|
|
|
i="${i#remotes.}"
|
|
|
|
c="$c ${i/=*/}"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
__gitcomp "$c"
|
|
|
|
;;
|
2007-02-05 05:52:08 +01:00
|
|
|
*)
|
|
|
|
COMPREPLY=()
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2006-11-04 19:57:44 +01:00
|
|
|
_git_reset ()
|
|
|
|
{
|
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
2007-02-04 08:38:43 +01:00
|
|
|
case "$cur" in
|
|
|
|
--*)
|
|
|
|
__gitcomp "--mixed --hard --soft"
|
|
|
|
return
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
__gitcomp "$(__git_refs)"
|
2006-11-04 19:57:44 +01:00
|
|
|
}
|
|
|
|
|
2007-05-24 07:25:34 +02:00
|
|
|
_git_shortlog ()
|
|
|
|
{
|
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
case "$cur" in
|
|
|
|
--*)
|
|
|
|
__gitcomp "
|
|
|
|
--max-count= --max-age= --since= --after=
|
|
|
|
--min-age= --before= --until=
|
|
|
|
--no-merges
|
|
|
|
--author= --committer= --grep=
|
|
|
|
--all-match
|
|
|
|
--not --all
|
|
|
|
--numbered --summary
|
|
|
|
"
|
|
|
|
return
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
__git_complete_revlist
|
|
|
|
}
|
|
|
|
|
2006-12-15 08:20:03 +01:00
|
|
|
_git_show ()
|
|
|
|
{
|
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
case "$cur" in
|
|
|
|
--pretty=*)
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "
|
2006-12-15 08:20:03 +01:00
|
|
|
oneline short medium full fuller email raw
|
2007-02-04 08:38:43 +01:00
|
|
|
" "" "${cur##--pretty=}"
|
2006-12-15 08:20:03 +01:00
|
|
|
return
|
|
|
|
;;
|
|
|
|
--*)
|
2007-02-04 08:38:43 +01:00
|
|
|
__gitcomp "--pretty="
|
2006-12-15 08:20:03 +01:00
|
|
|
return
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
__git_complete_file
|
|
|
|
}
|
|
|
|
|
2007-08-03 11:04:37 +02:00
|
|
|
_git_stash ()
|
|
|
|
{
|
|
|
|
__gitcomp 'list show apply clear'
|
|
|
|
}
|
|
|
|
|
2006-09-28 11:31:25 +02:00
|
|
|
_git ()
|
|
|
|
{
|
2006-11-05 12:21:57 +01:00
|
|
|
local i c=1 command __git_dir
|
|
|
|
|
|
|
|
while [ $c -lt $COMP_CWORD ]; do
|
|
|
|
i="${COMP_WORDS[c]}"
|
|
|
|
case "$i" in
|
|
|
|
--git-dir=*) __git_dir="${i#--git-dir=}" ;;
|
|
|
|
--bare) __git_dir="." ;;
|
|
|
|
--version|--help|-p|--paginate) ;;
|
|
|
|
*) command="$i"; break ;;
|
|
|
|
esac
|
|
|
|
c=$((++c))
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ $c -eq $COMP_CWORD -a -z "$command" ]; then
|
2007-02-04 08:38:27 +01:00
|
|
|
case "${COMP_WORDS[COMP_CWORD]}" in
|
|
|
|
--*=*) COMPREPLY=() ;;
|
|
|
|
--*) __gitcomp "--git-dir= --bare --version --exec-path" ;;
|
|
|
|
*) __gitcomp "$(__git_commands) $(__git_aliases)" ;;
|
|
|
|
esac
|
|
|
|
return
|
2006-11-05 12:21:57 +01:00
|
|
|
fi
|
2006-10-28 14:12:20 +02:00
|
|
|
|
2006-11-05 12:21:57 +01:00
|
|
|
local expansion=$(__git_aliased_command "$command")
|
|
|
|
[ "$expansion" ] && command="$expansion"
|
2006-10-28 14:12:20 +02:00
|
|
|
|
2006-11-05 12:21:57 +01:00
|
|
|
case "$command" in
|
2006-11-27 21:12:03 +01:00
|
|
|
am) _git_am ;;
|
2007-02-04 08:38:23 +01:00
|
|
|
add) _git_add ;;
|
2006-11-27 21:12:03 +01:00
|
|
|
apply) _git_apply ;;
|
2007-02-05 21:44:37 +01:00
|
|
|
bisect) _git_bisect ;;
|
2006-11-05 12:21:57 +01:00
|
|
|
branch) _git_branch ;;
|
|
|
|
checkout) _git_checkout ;;
|
2007-02-05 21:44:22 +01:00
|
|
|
cherry) _git_cherry ;;
|
2006-11-27 09:41:59 +01:00
|
|
|
cherry-pick) _git_cherry_pick ;;
|
2006-11-28 18:12:08 +01:00
|
|
|
commit) _git_commit ;;
|
2007-01-29 01:16:53 +01:00
|
|
|
config) _git_config ;;
|
2006-11-05 12:21:57 +01:00
|
|
|
diff) _git_diff ;;
|
|
|
|
fetch) _git_fetch ;;
|
2006-11-27 09:41:43 +01:00
|
|
|
format-patch) _git_format_patch ;;
|
2007-02-05 21:44:28 +01:00
|
|
|
gc) _git_gc ;;
|
2006-11-05 12:21:57 +01:00
|
|
|
log) _git_log ;;
|
|
|
|
ls-remote) _git_ls_remote ;;
|
|
|
|
ls-tree) _git_ls_tree ;;
|
2006-11-27 09:40:47 +01:00
|
|
|
merge) _git_merge;;
|
2006-11-05 12:21:57 +01:00
|
|
|
merge-base) _git_merge_base ;;
|
2006-11-27 09:41:12 +01:00
|
|
|
name-rev) _git_name_rev ;;
|
2006-11-05 12:21:57 +01:00
|
|
|
pull) _git_pull ;;
|
|
|
|
push) _git_push ;;
|
2006-11-27 09:42:07 +01:00
|
|
|
rebase) _git_rebase ;;
|
2007-02-05 05:52:08 +01:00
|
|
|
remote) _git_remote ;;
|
2006-11-05 12:21:57 +01:00
|
|
|
reset) _git_reset ;;
|
2007-05-24 07:25:34 +02:00
|
|
|
shortlog) _git_shortlog ;;
|
2006-12-15 08:20:03 +01:00
|
|
|
show) _git_show ;;
|
2006-11-05 12:21:57 +01:00
|
|
|
show-branch) _git_log ;;
|
2007-08-03 11:04:37 +02:00
|
|
|
stash) _git_stash ;;
|
2006-11-05 12:21:57 +01:00
|
|
|
whatchanged) _git_log ;;
|
|
|
|
*) COMPREPLY=() ;;
|
|
|
|
esac
|
2006-09-28 11:31:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
_gitk ()
|
|
|
|
{
|
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
2007-02-04 08:38:43 +01:00
|
|
|
case "$cur" in
|
|
|
|
--*)
|
|
|
|
__gitcomp "--not --all"
|
|
|
|
return
|
|
|
|
;;
|
|
|
|
esac
|
2007-02-04 08:38:47 +01:00
|
|
|
__git_complete_revlist
|
2006-09-28 11:31:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
complete -o default -o nospace -F _git git
|
2007-02-04 08:38:43 +01:00
|
|
|
complete -o default -o nospace -F _gitk gitk
|
|
|
|
complete -o default -o nospace -F _git_am git-am
|
|
|
|
complete -o default -o nospace -F _git_apply git-apply
|
2007-02-05 21:44:37 +01:00
|
|
|
complete -o default -o nospace -F _git_bisect git-bisect
|
2007-02-04 08:38:43 +01:00
|
|
|
complete -o default -o nospace -F _git_branch git-branch
|
|
|
|
complete -o default -o nospace -F _git_checkout git-checkout
|
2007-02-05 21:44:22 +01:00
|
|
|
complete -o default -o nospace -F _git_cherry git-cherry
|
2007-02-04 08:38:43 +01:00
|
|
|
complete -o default -o nospace -F _git_cherry_pick git-cherry-pick
|
|
|
|
complete -o default -o nospace -F _git_commit git-commit
|
2006-09-28 11:31:25 +02:00
|
|
|
complete -o default -o nospace -F _git_diff git-diff
|
|
|
|
complete -o default -o nospace -F _git_fetch git-fetch
|
2006-11-27 09:41:43 +01:00
|
|
|
complete -o default -o nospace -F _git_format_patch git-format-patch
|
2007-02-05 21:44:28 +01:00
|
|
|
complete -o default -o nospace -F _git_gc git-gc
|
2006-09-28 11:31:25 +02:00
|
|
|
complete -o default -o nospace -F _git_log git-log
|
2007-02-04 08:38:43 +01:00
|
|
|
complete -o default -o nospace -F _git_ls_remote git-ls-remote
|
2006-09-28 11:31:25 +02:00
|
|
|
complete -o default -o nospace -F _git_ls_tree git-ls-tree
|
2007-02-04 08:38:43 +01:00
|
|
|
complete -o default -o nospace -F _git_merge git-merge
|
|
|
|
complete -o default -o nospace -F _git_merge_base git-merge-base
|
|
|
|
complete -o default -o nospace -F _git_name_rev git-name-rev
|
2006-09-28 11:31:25 +02:00
|
|
|
complete -o default -o nospace -F _git_pull git-pull
|
|
|
|
complete -o default -o nospace -F _git_push git-push
|
2007-02-04 08:38:43 +01:00
|
|
|
complete -o default -o nospace -F _git_rebase git-rebase
|
|
|
|
complete -o default -o nospace -F _git_config git-config
|
2007-02-05 05:52:08 +01:00
|
|
|
complete -o default -o nospace -F _git_remote git-remote
|
2007-02-04 08:38:43 +01:00
|
|
|
complete -o default -o nospace -F _git_reset git-reset
|
2007-05-24 07:25:34 +02:00
|
|
|
complete -o default -o nospace -F _git_shortlog git-shortlog
|
2006-12-15 08:20:03 +01:00
|
|
|
complete -o default -o nospace -F _git_show git-show
|
2007-08-03 11:04:37 +02:00
|
|
|
complete -o default -o nospace -F _git_stash git-stash
|
2006-11-05 12:20:02 +01:00
|
|
|
complete -o default -o nospace -F _git_log git-show-branch
|
2006-09-28 11:31:25 +02:00
|
|
|
complete -o default -o nospace -F _git_log git-whatchanged
|
|
|
|
|
|
|
|
# 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.
|
|
|
|
#
|
2006-11-05 12:20:25 +01:00
|
|
|
if [ Cygwin = "$(uname -o 2>/dev/null)" ]; then
|
2007-02-04 08:38:43 +01:00
|
|
|
complete -o default -o nospace -F _git_add git-add.exe
|
|
|
|
complete -o default -o nospace -F _git_apply git-apply.exe
|
2006-11-05 12:20:02 +01:00
|
|
|
complete -o default -o nospace -F _git git.exe
|
2007-02-04 08:38:43 +01:00
|
|
|
complete -o default -o nospace -F _git_branch git-branch.exe
|
2007-02-05 21:44:22 +01:00
|
|
|
complete -o default -o nospace -F _git_cherry git-cherry.exe
|
2006-09-28 11:31:25 +02:00
|
|
|
complete -o default -o nospace -F _git_diff git-diff.exe
|
2006-11-27 09:41:43 +01:00
|
|
|
complete -o default -o nospace -F _git_format_patch git-format-patch.exe
|
2006-09-28 11:31:25 +02:00
|
|
|
complete -o default -o nospace -F _git_log git-log.exe
|
|
|
|
complete -o default -o nospace -F _git_ls_tree git-ls-tree.exe
|
2007-02-04 08:38:43 +01:00
|
|
|
complete -o default -o nospace -F _git_merge_base git-merge-base.exe
|
|
|
|
complete -o default -o nospace -F _git_name_rev git-name-rev.exe
|
2006-09-28 11:31:25 +02:00
|
|
|
complete -o default -o nospace -F _git_push git-push.exe
|
2007-02-04 08:38:43 +01:00
|
|
|
complete -o default -o nospace -F _git_config git-config
|
2007-05-24 07:25:34 +02:00
|
|
|
complete -o default -o nospace -F _git_shortlog git-shortlog.exe
|
2006-12-15 08:20:03 +01:00
|
|
|
complete -o default -o nospace -F _git_show git-show.exe
|
2006-11-05 12:20:02 +01:00
|
|
|
complete -o default -o nospace -F _git_log git-show-branch.exe
|
2006-09-28 11:31:25 +02:00
|
|
|
complete -o default -o nospace -F _git_log git-whatchanged.exe
|
2006-11-05 12:20:25 +01:00
|
|
|
fi
|