diff options
| author | Karel Kočí <cynerd@email.cz> | 2018-01-26 15:02:07 +0100 | 
|---|---|---|
| committer | Karel Kočí <cynerd@email.cz> | 2018-01-26 15:26:36 +0100 | 
| commit | 47d3b6fc1966df43b37751165d6fa4229904c0fa (patch) | |
| tree | cccb190aad69ed1afb93654922575a95e7745d03 /bash-completion/gitbmerge | |
| download | shellrc-47d3b6fc1966df43b37751165d6fa4229904c0fa.tar.gz shellrc-47d3b6fc1966df43b37751165d6fa4229904c0fa.tar.bz2 shellrc-47d3b6fc1966df43b37751165d6fa4229904c0fa.zip | |
Initial commitv0.1
Diffstat (limited to 'bash-completion/gitbmerge')
| -rw-r--r-- | bash-completion/gitbmerge | 21 | 
1 files changed, 21 insertions, 0 deletions
| diff --git a/bash-completion/gitbmerge b/bash-completion/gitbmerge new file mode 100644 index 0000000..8706fc8 --- /dev/null +++ b/bash-completion/gitbmerge @@ -0,0 +1,21 @@ +_gitbmerge() { +	local cur prev +	_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})) +} +complete -F _gitbmerge gitbmerge | 
