diff --git a/bin/git-has b/bin/git-has deleted file mode 100755 index 711bf5a..0000000 --- a/bin/git-has +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh - -commit=$1 -test -z $commit && echo " required" 1>&2 && exit 1 -git branch --contains $commit | grep "*" > /dev/null && echo yes && exit -echo no && exit 1