From 0c2a86f05861a76943c975665c55e693eea75bbe Mon Sep 17 00:00:00 2001 From: TJ Holowaychuk Date: Sat, 4 Feb 2012 14:01:02 -0800 Subject: [PATCH] Added _git_squash() to bash_completion.sh --- etc/bash_completion.sh | 4 ++++ 1 file changed, 4 insertions(+) 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" }