diff --git a/etc/bash_completion.sh b/etc/bash_completion.sh index f5a2d0b..de6f7b3 100644 --- a/etc/bash_completion.sh +++ b/etc/bash_completion.sh @@ -57,6 +57,11 @@ _git_ignore(){ esac } +_git_missing(){ + # Suggest all known refs + __gitcomp "$(git for-each-ref --format='%(refname:short)')" +} + _git_refactor(){ __git_extras_workflow "refactor" }