diff options
author | Karel Kočí <karel.koci@nic.cz> | 2018-11-29 13:21:09 +0100 |
---|---|---|
committer | Karel Kočí <karel.koci@nic.cz> | 2018-11-29 13:21:09 +0100 |
commit | 001e4f345bb8e267844f0eb7dafcbd824a3832f2 (patch) | |
tree | 126b576f1ea415a85bc7b91f5a1ced91785deac3 /bash-completion/gitbmerge | |
parent | 4d70d5f316dc3721d36bd1f7c63247e56b667b20 (diff) | |
download | shellrc-001e4f345bb8e267844f0eb7dafcbd824a3832f2.tar.gz shellrc-001e4f345bb8e267844f0eb7dafcbd824a3832f2.tar.bz2 shellrc-001e4f345bb8e267844f0eb7dafcbd824a3832f2.zip |
git: Add gitbcheckout
Diffstat (limited to 'bash-completion/gitbmerge')
-rw-r--r-- | bash-completion/gitbmerge | 27 |
1 files changed, 10 insertions, 17 deletions
diff --git a/bash-completion/gitbmerge b/bash-completion/gitbmerge index 8706fc8..33e8ed0 100644 --- a/bash-completion/gitbmerge +++ b/bash-completion/gitbmerge @@ -1,21 +1,14 @@ _gitbmerge() { - local cur prev + [ "$COMP_CWORD" -gt 1 ] && return # Complete only single branch + local cur prev words cword _init_completion || return - [ $COMP_CWORD -gt 1 ] && return # Complete only single dependency - COMPREPLY=() - local GDIR="$(pwd)" - while [ ! -d "$GDIR/.git" ]; do - [ -z "$GDIR" ] && return - GDIR="${GDIR%/*}" - done - GDIR="$GDIR/.git" - [ -f "$GDIR" ] && GDIR="$(cat "$GDIR")" # This just points to some other directory - [ -d "$GDIR/refs/heads" ] || return # No completion if there is no local branch - local ops="" - for B in "$GDIR"/refs/heads/*; do - # TODO skip branch on HEAD - ops="$ops ${B#$GDIR/refs/heads/}" - done - COMPREPLY+=($(compgen -W "${ops}" -- ${cur})) + local gdir branch + gdir="$(git rev-parse --git-common-dir 2>/dev/null)" || return + local branches=() + # TODO ignore current HEAD (merging HEAD to HEAD does not makes sense) + while read -r branch; do + branches+=("$branch") + done < <(find "$gdir/refs/heads" -mindepth 1 -printf '%P\n') + COMPREPLY=($(compgen -W "${branches[*]}" -- ${cur})) } complete -F _gitbmerge gitbmerge |