mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-03 19:04:40 +01:00
7 lines
175 B
Text
7 lines
175 B
Text
BLOB_COUNT=$(git cat-file --batch-check='%(objectname) %(objecttype)' --batch-all-objects | grep blob | wc -l)
|
|
|
|
if [ "$BLOB_COUNT" -gt 2 ]; then
|
|
exit 0
|
|
else
|
|
exit 1
|
|
fi
|