oh-my-git/levels/01-blob/win
2020-09-10 12:03:46 +02:00

7 lines
178 B
Text

BLOB_COUNT=$(git cat-file --batch-check='%(objectname) %(objecttype)' --batch-all-objects | grep blob | wc -l)
if [ "$BLOB_COUNT" -gt 2 ]; then
echo yes
else
echo no
fi