Added _git_squash() to bash_completion.sh

This commit is contained in:
TJ Holowaychuk 2012-02-04 14:01:02 -08:00
parent 07d5ee82ff
commit 0c2a86f058

View file

@ -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"
}