aboutsummaryrefslogtreecommitdiff
path: root/2018-linuxdays/examples/gitbmerge/gitbmerge
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2018-10-07 20:03:35 +0200
committerKarel Kočí <cynerd@email.cz>2018-10-07 20:03:35 +0200
commit7cf03a1555d46117b5f1a3d0db7c28c02498fcee (patch)
treee7ded2835880ad350fad3209ce667f469858cfed /2018-linuxdays/examples/gitbmerge/gitbmerge
parent8958b564509b4a4a63004763d70457d3ff5e5392 (diff)
downloadpresentations-7cf03a1555d46117b5f1a3d0db7c28c02498fcee.tar.gz
presentations-7cf03a1555d46117b5f1a3d0db7c28c02498fcee.tar.bz2
presentations-7cf03a1555d46117b5f1a3d0db7c28c02498fcee.zip
Add presentation from LinuxDays 2018
Diffstat (limited to '2018-linuxdays/examples/gitbmerge/gitbmerge')
-rw-r--r--2018-linuxdays/examples/gitbmerge/gitbmerge20
1 files changed, 20 insertions, 0 deletions
diff --git a/2018-linuxdays/examples/gitbmerge/gitbmerge b/2018-linuxdays/examples/gitbmerge/gitbmerge
new file mode 100644
index 0000000..bd892b6
--- /dev/null
+++ b/2018-linuxdays/examples/gitbmerge/gitbmerge
@@ -0,0 +1,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