Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 8b1f8d04c999421f8d2d8f248c82506390980a2c authored by Junio C Hamano on 05 October 2005, 22:41:49 UTC
GIT 0.99.8b
Tip revision: 8b1f8d0
git-count-objects.sh
#!/bin/sh

. git-sh-setup

echo $(find "$GIT_DIR/objects"/?? -type f -print | wc -l) objects, \
$({
    echo 0
    # "no-such" is to help Darwin folks by not using xargs -r.
    find "$GIT_DIR/objects"/?? -type f -print 2>/dev/null |
    xargs du -k "$GIT_DIR/objects/no-such" 2>/dev/null |
    sed -e 's/[ 	].*/ +/'
    echo p
} | dc) kilobytes
back to top