aboutsummaryrefslogtreecommitdiff
path: root/2018-linuxdays/examples/gitbmerge/gitbmerge
blob: bd892b623c8f4ad11b3dedb663d23a4c6f449650 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
_gitbmerge() {
	[ $COMP_CWORD -gt 1 ] &&  return # Complete only single dependency
	local cur prev words cword
	_init_completion || return
	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