From 3039f9405ebab83ad8ebba6983a63fabfc989b2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20HUBSCHER?= Date: Fri, 31 Jul 2015 16:38:17 +0200 Subject: [PATCH] Add completion for git-psykorebase. --- etc/bash_completion.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/etc/bash_completion.sh b/etc/bash_completion.sh index 4b5bedc..237b215 100644 --- a/etc/bash_completion.sh +++ b/etc/bash_completion.sh @@ -109,6 +109,10 @@ _git_missing(){ __gitcomp "$(git for-each-ref --format='%(refname:short)')" } +_git_psykorebase(){ + __gitcomp "$(__git_heads) --continue --no-ff" +} + _git_refactor(){ __git_extras_workflow "refactor" }