2006-09-28 11:31:25 +02:00
|
|
|
#
|
|
|
|
# bash completion support for core Git.
|
|
|
|
#
|
|
|
|
# Copyright (C) 2006 Shawn Pearce
|
|
|
|
# Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/).
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|
|
|
|
# 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 09:41:28 +01:00
|
|
|
# 3) Consider changing your PS1 to also show the current branch:
|
|
|
|
# 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.
|
|
|
|
#
|
2006-09-28 11:31:25 +02:00
|
|
|
|
2006-11-05 12:21:57 +01:00
|
|
|
__gitdir ()
|
|
|
|
{
|
|
|
|
echo "${__git_dir:-$(git rev-parse --git-dir 2>/dev/null)}"
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2006-09-28 11:31:25 +02:00
|
|
|
__git_refs ()
|
|
|
|
{
|
2006-11-05 12:21:57 +01:00
|
|
|
local cmd i is_hash=y dir="${1:-$(__gitdir)}"
|
|
|
|
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-05 12:21:57 +01:00
|
|
|
local cmd i is_hash=y dir="${1:-$(__gitdir)}"
|
|
|
|
if [ -d "$dir" ]; then
|
2006-09-28 11:31:25 +02:00
|
|
|
cmd=git-peek-remote
|
|
|
|
else
|
|
|
|
cmd=git-ls-remote
|
|
|
|
fi
|
2006-11-05 12:21:57 +01:00
|
|
|
for i in $($cmd "$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/}:${i#refs/tags/}" ;;
|
|
|
|
n,refs/heads/*) is_hash=y; echo "${i#refs/heads/}:${i#refs/heads/}" ;;
|
|
|
|
n,*) is_hash=y; echo "$i:$i" ;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
__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
|
2006-11-05 12:21:57 +01:00
|
|
|
for i in $(git --git-dir="$d" repo-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 ()
|
|
|
|
{
|
|
|
|
sed -n "/^all_strategies='/{
|
|
|
|
s/^all_strategies='//
|
|
|
|
s/'//
|
|
|
|
p
|
|
|
|
q
|
|
|
|
}" "$(git --exec-path)/git-merge"
|
|
|
|
}
|
|
|
|
|
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"))
|
|
|
|
;;
|
|
|
|
*)
|
2006-11-05 12:21:57 +01:00
|
|
|
COMPREPLY=($(compgen -W "$(__git_refs)" -- "$cur"))
|
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#*...}"
|
|
|
|
COMPREPLY=($(compgen -P "$pfx" -W "$(__git_refs)" -- "$cur"))
|
|
|
|
;;
|
|
|
|
*..*)
|
|
|
|
pfx="${cur%..*}.."
|
|
|
|
cur="${cur#*..}"
|
|
|
|
COMPREPLY=($(compgen -P "$pfx" -W "$(__git_refs)" -- "$cur"))
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
COMPREPLY=($(compgen -W "$(__git_refs)" -- "$cur"))
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2006-11-27 09:41:01 +01:00
|
|
|
__git_commands ()
|
|
|
|
{
|
|
|
|
local i IFS=" "$'\n'
|
|
|
|
for i in $(git help -a|egrep '^ ')
|
|
|
|
do
|
|
|
|
case $i in
|
|
|
|
check-ref-format) : plumbing;;
|
|
|
|
commit-tree) : plumbing;;
|
|
|
|
convert-objects) : plumbing;;
|
|
|
|
cvsserver) : daemon;;
|
|
|
|
daemon) : daemon;;
|
|
|
|
fetch-pack) : plumbing;;
|
|
|
|
hash-object) : plumbing;;
|
|
|
|
http-*) : transport;;
|
|
|
|
index-pack) : plumbing;;
|
|
|
|
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;;
|
|
|
|
read-tree) : plumbing;;
|
|
|
|
receive-pack) : plumbing;;
|
|
|
|
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;;
|
|
|
|
symbolic-ref) : plumbing;;
|
|
|
|
unpack-file) : plumbing;;
|
|
|
|
unpack-objects) : plumbing;;
|
|
|
|
update-ref) : plumbing;;
|
|
|
|
update-server-info) : daemon;;
|
|
|
|
upload-archive) : plumbing;;
|
|
|
|
upload-pack) : plumbing;;
|
|
|
|
write-tree) : plumbing;;
|
|
|
|
*) echo $i;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2006-10-28 14:12:20 +02:00
|
|
|
__git_aliases ()
|
|
|
|
{
|
2006-11-05 12:21:03 +01:00
|
|
|
local i IFS=$'\n'
|
2006-11-05 12:21:57 +01:00
|
|
|
for i in $(git --git-dir="$(__gitdir)" repo-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)" \
|
|
|
|
repo-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-09-28 11:31:25 +02:00
|
|
|
_git_branch ()
|
|
|
|
{
|
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
2006-11-05 12:21:57 +01:00
|
|
|
COMPREPLY=($(compgen -W "-l -f -d -D $(__git_refs)" -- "$cur"))
|
2006-09-28 11:31:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
_git_cat_file ()
|
|
|
|
{
|
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
case "${COMP_WORDS[0]},$COMP_CWORD" in
|
|
|
|
git-cat-file*,1)
|
|
|
|
COMPREPLY=($(compgen -W "-p -t blob tree commit tag" -- "$cur"))
|
|
|
|
;;
|
|
|
|
git,2)
|
|
|
|
COMPREPLY=($(compgen -W "-p -t blob tree commit tag" -- "$cur"))
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
__git_complete_file
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
_git_checkout ()
|
|
|
|
{
|
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
2006-11-05 12:21:57 +01:00
|
|
|
COMPREPLY=($(compgen -W "-l -b $(__git_refs)" -- "$cur"))
|
2006-09-28 11:31:25 +02:00
|
|
|
}
|
|
|
|
|
2006-11-27 09:41:59 +01:00
|
|
|
_git_cherry_pick ()
|
|
|
|
{
|
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
case "$cur" in
|
|
|
|
--*)
|
|
|
|
COMPREPLY=($(compgen -W "
|
|
|
|
--edit --no-commit
|
|
|
|
" -- "$cur"))
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
COMPREPLY=($(compgen -W "$(__git_refs)" -- "$cur"))
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2006-09-28 11:31:25 +02:00
|
|
|
_git_diff ()
|
|
|
|
{
|
|
|
|
__git_complete_file
|
|
|
|
}
|
|
|
|
|
|
|
|
_git_diff_tree ()
|
|
|
|
{
|
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
2006-11-05 12:21:57 +01:00
|
|
|
COMPREPLY=($(compgen -W "-r -p -M $(__git_refs)" -- "$cur"))
|
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)
|
|
|
|
COMPREPLY=($(compgen -W "$(__git_remotes)" -- "$cur"))
|
|
|
|
;;
|
|
|
|
git,2)
|
|
|
|
COMPREPLY=($(compgen -W "$(__git_remotes)" -- "$cur"))
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
case "$cur" in
|
|
|
|
*:*)
|
2006-11-05 12:25:25 +01:00
|
|
|
cur="${cur#*:}"
|
2006-11-05 12:21:57 +01:00
|
|
|
COMPREPLY=($(compgen -W "$(__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
|
|
|
|
COMPREPLY=($(compgen -W "$(__git_refs2 "$remote")" -- "$cur"))
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2006-11-27 09:41:43 +01:00
|
|
|
_git_format_patch ()
|
|
|
|
{
|
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
case "$cur" in
|
|
|
|
--*)
|
|
|
|
COMPREPLY=($(compgen -W "
|
|
|
|
--stdout --attach --thread
|
|
|
|
--output-directory
|
|
|
|
--numbered --start-number
|
|
|
|
--keep-subject
|
|
|
|
--signoff
|
|
|
|
--in-reply-to=
|
|
|
|
--full-index --binary
|
|
|
|
" -- "$cur"))
|
|
|
|
return
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
__git_complete_revlist
|
|
|
|
}
|
|
|
|
|
2006-09-28 11:31:25 +02:00
|
|
|
_git_ls_remote ()
|
|
|
|
{
|
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
COMPREPLY=($(compgen -W "$(__git_remotes)" -- "$cur"))
|
|
|
|
}
|
|
|
|
|
|
|
|
_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=*)
|
|
|
|
COMPREPLY=($(compgen -W "
|
|
|
|
oneline short medium full fuller email raw
|
|
|
|
" -- "${cur##--pretty=}"))
|
|
|
|
return
|
|
|
|
;;
|
|
|
|
--*)
|
|
|
|
COMPREPLY=($(compgen -W "
|
|
|
|
--max-count= --max-age= --since= --after=
|
|
|
|
--min-age= --before= --until=
|
|
|
|
--root --not --topo-order --date-order
|
|
|
|
--no-merges
|
|
|
|
--abbrev-commit --abbrev=
|
|
|
|
--relative-date
|
|
|
|
--author= --committer= --grep=
|
|
|
|
--all-match
|
|
|
|
--pretty= --name-status --name-only
|
|
|
|
" -- "$cur"))
|
|
|
|
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]}"
|
|
|
|
case "$cur" in
|
|
|
|
--*)
|
|
|
|
COMPREPLY=($(compgen -W "
|
2006-11-27 09:42:07 +01:00
|
|
|
--no-commit --no-summary --squash --strategy
|
2006-11-27 09:40:47 +01:00
|
|
|
" -- "$cur"))
|
|
|
|
return
|
|
|
|
esac
|
2006-11-27 09:42:07 +01:00
|
|
|
case "${COMP_WORDS[COMP_CWORD-1]}" in
|
|
|
|
-s|--strategy)
|
2006-11-27 09:40:47 +01:00
|
|
|
COMPREPLY=($(compgen -W "$(__git_merge_strategies)" -- "$cur"))
|
2006-11-27 09:42:07 +01:00
|
|
|
return
|
|
|
|
esac
|
|
|
|
COMPREPLY=($(compgen -W "$(__git_refs)" -- "$cur"))
|
2006-11-27 09:40:47 +01:00
|
|
|
}
|
|
|
|
|
2006-09-28 11:31:25 +02:00
|
|
|
_git_merge_base ()
|
|
|
|
{
|
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
2006-11-05 12:21:57 +01:00
|
|
|
COMPREPLY=($(compgen -W "$(__git_refs)" -- "$cur"))
|
2006-09-28 11:31:25 +02:00
|
|
|
}
|
|
|
|
|
2006-11-27 09:41:12 +01:00
|
|
|
_git_name_rev ()
|
|
|
|
{
|
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
COMPREPLY=($(compgen -W "--tags --all --stdin" -- "$cur"))
|
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
COMPREPLY=($(compgen -W "$(__git_remotes)" -- "$cur"))
|
|
|
|
;;
|
|
|
|
git,2)
|
|
|
|
COMPREPLY=($(compgen -W "$(__git_remotes)" -- "$cur"))
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
local remote
|
|
|
|
case "${COMP_WORDS[0]}" in
|
|
|
|
git-pull) remote="${COMP_WORDS[1]}" ;;
|
|
|
|
git) remote="${COMP_WORDS[2]}" ;;
|
|
|
|
esac
|
|
|
|
COMPREPLY=($(compgen -W "$(__git_refs "$remote")" -- "$cur"))
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
_git_push ()
|
|
|
|
{
|
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
|
|
|
|
case "${COMP_WORDS[0]},$COMP_CWORD" in
|
|
|
|
git-push*,1)
|
|
|
|
COMPREPLY=($(compgen -W "$(__git_remotes)" -- "$cur"))
|
|
|
|
;;
|
|
|
|
git,2)
|
|
|
|
COMPREPLY=($(compgen -W "$(__git_remotes)" -- "$cur"))
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
case "$cur" in
|
|
|
|
*:*)
|
|
|
|
local remote
|
|
|
|
case "${COMP_WORDS[0]}" in
|
|
|
|
git-push) remote="${COMP_WORDS[1]}" ;;
|
|
|
|
git) remote="${COMP_WORDS[2]}" ;;
|
|
|
|
esac
|
2006-11-05 12:25:25 +01:00
|
|
|
cur="${cur#*:}"
|
2006-09-28 11:31:25 +02:00
|
|
|
COMPREPLY=($(compgen -W "$(__git_refs "$remote")" -- "$cur"))
|
|
|
|
;;
|
|
|
|
*)
|
2006-11-05 12:21:57 +01:00
|
|
|
COMPREPLY=($(compgen -W "$(__git_refs2)" -- "$cur"))
|
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]}"
|
|
|
|
if [ -d .dotest ]; then
|
|
|
|
COMPREPLY=($(compgen -W "
|
|
|
|
--continue --skip --abort
|
|
|
|
" -- "$cur"))
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
case "$cur" in
|
|
|
|
--*)
|
|
|
|
COMPREPLY=($(compgen -W "
|
|
|
|
--onto --merge --strategy
|
|
|
|
" -- "$cur"))
|
|
|
|
return
|
|
|
|
esac
|
|
|
|
case "${COMP_WORDS[COMP_CWORD-1]}" in
|
|
|
|
-s|--strategy)
|
|
|
|
COMPREPLY=($(compgen -W "$(__git_merge_strategies)" -- "$cur"))
|
|
|
|
return
|
|
|
|
esac
|
|
|
|
COMPREPLY=($(compgen -W "$(__git_refs)" -- "$cur"))
|
|
|
|
}
|
|
|
|
|
2006-11-04 19:57:44 +01:00
|
|
|
_git_reset ()
|
|
|
|
{
|
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
local opt="--mixed --hard --soft"
|
2006-11-05 12:21:57 +01:00
|
|
|
COMPREPLY=($(compgen -W "$opt $(__git_refs)" -- "$cur"))
|
2006-11-04 19:57:44 +01:00
|
|
|
}
|
|
|
|
|
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
|
2006-11-27 09:41:01 +01:00
|
|
|
COMPREPLY=($(compgen -W "
|
|
|
|
--git-dir= --version --exec-path
|
|
|
|
$(__git_commands)
|
|
|
|
$(__git_aliases)
|
|
|
|
" -- "${COMP_WORDS[COMP_CWORD]}"))
|
2006-11-05 12:21:57 +01:00
|
|
|
return;
|
|
|
|
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
|
|
|
|
branch) _git_branch ;;
|
|
|
|
cat-file) _git_cat_file ;;
|
|
|
|
checkout) _git_checkout ;;
|
2006-11-27 09:41:59 +01:00
|
|
|
cherry-pick) _git_cherry_pick ;;
|
2006-11-05 12:21:57 +01:00
|
|
|
diff) _git_diff ;;
|
|
|
|
diff-tree) _git_diff_tree ;;
|
|
|
|
fetch) _git_fetch ;;
|
2006-11-27 09:41:43 +01:00
|
|
|
format-patch) _git_format_patch ;;
|
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 ;;
|
2006-11-05 12:21:57 +01:00
|
|
|
reset) _git_reset ;;
|
2006-11-27 09:42:18 +01:00
|
|
|
show) _git_log ;;
|
2006-11-05 12:21:57 +01:00
|
|
|
show-branch) _git_log ;;
|
|
|
|
whatchanged) _git_log ;;
|
|
|
|
*) COMPREPLY=() ;;
|
|
|
|
esac
|
2006-09-28 11:31:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
_gitk ()
|
|
|
|
{
|
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
2006-11-05 12:21:57 +01:00
|
|
|
COMPREPLY=($(compgen -W "--all $(__git_refs)" -- "$cur"))
|
2006-09-28 11:31:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
complete -o default -o nospace -F _git git
|
|
|
|
complete -o default -F _gitk gitk
|
|
|
|
complete -o default -F _git_branch git-branch
|
|
|
|
complete -o default -o nospace -F _git_cat_file git-cat-file
|
|
|
|
complete -o default -F _git_checkout git-checkout
|
2006-11-27 09:41:59 +01:00
|
|
|
complete -o default -F _git_cherry_pick git-cherry-pick
|
2006-09-28 11:31:25 +02:00
|
|
|
complete -o default -o nospace -F _git_diff git-diff
|
|
|
|
complete -o default -F _git_diff_tree git-diff-tree
|
|
|
|
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
|
2006-09-28 11:31:25 +02:00
|
|
|
complete -o default -o nospace -F _git_log git-log
|
|
|
|
complete -o default -F _git_ls_remote git-ls-remote
|
|
|
|
complete -o default -o nospace -F _git_ls_tree git-ls-tree
|
2006-11-27 09:40:47 +01:00
|
|
|
complete -o default -F _git_merge git-merge
|
2006-09-28 11:31:25 +02:00
|
|
|
complete -o default -F _git_merge_base git-merge-base
|
2006-11-27 09:41:12 +01:00
|
|
|
complete -o default -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
|
2006-11-27 09:42:07 +01:00
|
|
|
complete -o default -F _git_rebase git-rebase
|
2006-11-04 19:57:44 +01:00
|
|
|
complete -o default -F _git_reset git-reset
|
2006-11-27 09:42:18 +01:00
|
|
|
complete -o default -F _git_log git-show
|
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
|
2006-11-05 12:20:02 +01:00
|
|
|
complete -o default -o nospace -F _git git.exe
|
2006-11-04 19:57:18 +01:00
|
|
|
complete -o default -F _git_branch git-branch.exe
|
2006-09-28 11:31:25 +02:00
|
|
|
complete -o default -o nospace -F _git_cat_file git-cat-file.exe
|
|
|
|
complete -o default -o nospace -F _git_diff git-diff.exe
|
|
|
|
complete -o default -o nospace -F _git_diff_tree git-diff-tree.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
|
|
|
|
complete -o default -F _git_merge_base git-merge-base.exe
|
2006-11-27 09:41:12 +01:00
|
|
|
complete -o default -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
|
2006-11-27 09:42:18 +01:00
|
|
|
complete -o default -o nospace -F _git_log 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
|