Browse Source

Filter the HEAD symbolic reference.

master
Sorin Ionescu 13 years ago
parent
commit
f430bd75c6
  1. 7
      plugins/git/completions/_git-hub
  2. 4
      plugins/git/functions/git-hub

7
plugins/git/completions/_git-hub

@ -18,9 +18,10 @@ case "$state" in @@ -18,9 +18,10 @@ case "$state" in
(branch)
remote="$words[(($CURRENT - 1))]"
branches=($(
git branch -a \
| grep "remotes/${remote}" \
| sed -e 's/[ \*]*//g' -e "s:remotes/${remote}/::g"
git branch -r \
| sed \
-e "/${remote}\/HEAD -> ${remote}/d" \
-e "s/^[[:space:]]*${remote}\///g"
))
_describe -t branch 'branches' branches && ret=0
;;

4
plugins/git/functions/git-hub

@ -8,9 +8,7 @@ url=$( @@ -8,9 +8,7 @@ url=$(
| sed -En "s/remote.${remote}.url=(git|https?)(@|:\/\/)github.com(:|\/)(.+)\/(.+).git/https:\/\/github.com\/\4\/\5/p"
)
branches=($(
git branch -a \
| grep "remotes/${remote}" \
| sed -e 's/[ \*]*//g' -e "s:remotes/${remote}/::g"
git branch -r | sed -e "/${remote}\/HEAD -> ${remote}/d" -e "s/^[[:space:]]*${remote}\///g"
))
current_branch="$(git-branch)"
branch="${2:-master}"

Loading…
Cancel
Save