aboutsummaryrefslogtreecommitdiff
path: root/git-count-objects.sh
diff options
context:
space:
mode:
authorJunio C Hamano <junio@hera.kernel.org>2005-10-20 17:06:15 -0700
committerJunio C Hamano <junio@hera.kernel.org>2005-10-20 17:06:15 -0700
commitbfadbeddd1b54af8ab08a6c556c43c756ec85588 (patch)
tree50f9bed9a78e1f51178ebf6be3cd9c20b2ffcb0b /git-count-objects.sh
parentea5a65a59916503d2a14369c46b1023384d51645 (diff)
parent6e1c6c103c522d01829f3a63992a023ff031e851 (diff)
downloadgit-bfadbeddd1b54af8ab08a6c556c43c756ec85588.tar.xz
Merge /pub/scm/git/git to recover lost side branch
Sorry for the mistake of rewinding something already pushed out. This recovers the side branch lost by that mistake, specifically ea5a65a59916503d2a14369c46b1023384d51645 commit. Signed-off-by: Junio C Hamano <junio@hera.kernel.org>
Diffstat (limited to 'git-count-objects.sh')
-rwxr-xr-xgit-count-objects.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-count-objects.sh b/git-count-objects.sh
index 74ee4f371f..843d2fd9f2 100755
--- a/git-count-objects.sh
+++ b/git-count-objects.sh
@@ -2,7 +2,7 @@
. git-sh-setup
-echo $(find "$GIT_DIR/objects"/?? -type f -print | wc -l) objects, \
+echo $(find "$GIT_DIR/objects"/?? -type f -print 2>/dev/null | wc -l) objects, \
$({
echo 0
# "no-such" is to help Darwin folks by not using xargs -r.