diff --git a/etc/bash_completion.sh b/etc/bash_completion.sh index 273c680..adff45f 100644 --- a/etc/bash_completion.sh +++ b/etc/bash_completion.sh @@ -32,6 +32,10 @@ _git_graft(){ __gitcomp "$(__git_heads)" } +_git_squash(){ + __gitcomp "$(__git_heads)" +} + __git_extras_workflow(){ __gitcomp "$(__git_heads | grep ^$1/ | sed s/^$1\\///g) finish" }