Skip to content

Commit

Permalink
Merge branch 'pj/completion-remote-set-url-branches'
Browse files Browse the repository at this point in the history
* pj/completion-remote-set-url-branches:
  completion: normalize increment/decrement style
  completion: remote set-* <name> and <branch>
  • Loading branch information
Junio C Hamano committed Feb 28, 2012
2 parents 4d50dbc + 6e8c755 commit 472fdee
Showing 1 changed file with 18 additions and 14 deletions.
32 changes: 18 additions & 14 deletions contrib/completion/git-completion.bash
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ __git_ps1_show_upstream ()
svn_upstream=${svn_upstream[ ${#svn_upstream[@]} - 2 ]}
svn_upstream=${svn_upstream%@*}
local n_stop="${#svn_remote[@]}"
for ((n=1; n <= n_stop; ++n)); do
for ((n=1; n <= n_stop; n++)); do
svn_upstream=${svn_upstream#${svn_remote[$n]}}
done

Expand Down Expand Up @@ -166,10 +166,8 @@ __git_ps1_show_upstream ()
for commit in $commits
do
case "$commit" in
"<"*) let ++behind
;;
*) let ++ahead
;;
"<"*) ((behind++)) ;;
*) ((ahead++)) ;;
esac
done
count="$behind $ahead"
Expand Down Expand Up @@ -726,6 +724,9 @@ __git_complete_remote_or_refspec ()
{
local cur_="$cur" cmd="${words[1]}"
local i c=2 remote="" pfx="" lhs=1 no_complete_refspec=0
if [ "$cmd" = "remote" ]; then
((c++))
fi
while [ $c -lt $cword ]; do
i="${words[c]}"
case "$i" in
Expand All @@ -743,7 +744,7 @@ __git_complete_remote_or_refspec ()
-*) ;;
*) remote="$i"; break ;;
esac
c=$((++c))
((c++))
done
if [ -z "$remote" ]; then
__gitcomp_nl "$(__git_remotes)"
Expand Down Expand Up @@ -776,7 +777,7 @@ __git_complete_remote_or_refspec ()
__gitcomp_nl "$(__git_refs)" "$pfx" "$cur_"
fi
;;
pull)
pull|remote)
if [ $lhs = 1 ]; then
__gitcomp_nl "$(__git_refs "$remote")" "$pfx" "$cur_"
else
Expand Down Expand Up @@ -983,7 +984,7 @@ __git_find_on_cmdline ()
return
fi
done
c=$((++c))
((c++))
done
}

Expand All @@ -994,7 +995,7 @@ __git_has_doubledash ()
if [ "--" = "${words[c]}" ]; then
return 0
fi
c=$((++c))
((c++))
done
return 1
}
Expand Down Expand Up @@ -1117,7 +1118,7 @@ _git_branch ()
-d|-m) only_local_ref="y" ;;
-r) has_r="y" ;;
esac
c=$((++c))
((c++))
done

case "$cur" in
Expand Down Expand Up @@ -2277,17 +2278,20 @@ _git_config ()

_git_remote ()
{
local subcommands="add rename rm show prune update set-head"
local subcommands="add rename rm set-head set-branches set-url show prune update"
local subcommand="$(__git_find_on_cmdline "$subcommands")"
if [ -z "$subcommand" ]; then
__gitcomp "$subcommands"
return
fi

case "$subcommand" in
rename|rm|show|prune)
rename|rm|set-url|show|prune)
__gitcomp_nl "$(__git_remotes)"
;;
set-head|set-branches)
__git_complete_remote_or_refspec
;;
update)
local i c='' IFS=$'\n'
for i in $(git --git-dir="$(__gitdir)" config --get-regexp "remotes\..*" 2>/dev/null); do
Expand Down Expand Up @@ -2568,7 +2572,7 @@ _git_tag ()
f=1
;;
esac
c=$((++c))
((c++))
done

case "$prev" in
Expand Down Expand Up @@ -2621,7 +2625,7 @@ _git ()
--help) command="help"; break ;;
*) command="$i"; break ;;
esac
c=$((++c))
((c++))
done

if [ -z "$command" ]; then
Expand Down

0 comments on commit 472fdee

Please sign in to comment.