aboutsummaryrefslogtreecommitdiff
path: root/bash-completion/gitbcheckout
diff options
context:
space:
mode:
authorKarel Kočí <karel.koci@nic.cz>2018-11-29 13:21:09 +0100
committerKarel Kočí <karel.koci@nic.cz>2018-11-29 13:21:09 +0100
commit001e4f345bb8e267844f0eb7dafcbd824a3832f2 (patch)
tree126b576f1ea415a85bc7b91f5a1ced91785deac3 /bash-completion/gitbcheckout
parent4d70d5f316dc3721d36bd1f7c63247e56b667b20 (diff)
downloadshellrc-001e4f345bb8e267844f0eb7dafcbd824a3832f2.tar.gz
shellrc-001e4f345bb8e267844f0eb7dafcbd824a3832f2.tar.bz2
shellrc-001e4f345bb8e267844f0eb7dafcbd824a3832f2.zip
git: Add gitbcheckout
Diffstat (limited to 'bash-completion/gitbcheckout')
-rw-r--r--bash-completion/gitbcheckout14
1 files changed, 14 insertions, 0 deletions
diff --git a/bash-completion/gitbcheckout b/bash-completion/gitbcheckout
new file mode 100644
index 0000000..a3c1d8e
--- /dev/null
+++ b/bash-completion/gitbcheckout
@@ -0,0 +1,14 @@
+_gitbcheckout() {
+ [ "$COMP_CWORD" -gt 1 ] && return # Complete only single branch
+ local cur prev words cword
+ _init_completion || return
+ 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" "$gdir/refs/remotes" -mindepth 1 -printf '%P\n')
+ COMPREPLY=($(compgen -W "${branches[*]}" -- ${cur}))
+}
+complete -F _gitbcheckout gitbcheckout