Skip to main content
summaryrefslogblamecommitdiffstats
blob: 75ecd0b49e1142c588d147593c671dede071fe1d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11


                     

         
 




                                               


















                                                                   

function checkrepo ()
{
  cd $1
  echo $1

  NUNREACHABLE=`git fsck --unreachable | wc -l`
  echo "Unreachable: " $NUNREACHABLE
  #find objects/?? -type f | wc -l
  #find objects/pack -ls | wc -l
  git count-objects -v
}
PROJECTROOT=/gitroot/platform

checkrepo ${PROJECTROOT}/eclipse.platform.common.git
checkrepo ${PROJECTROOT}/eclipse.platform.debug.git
checkrepo ${PROJECTROOT}/eclipse.platform.git
checkrepo ${PROJECTROOT}/eclipse.platform.news.git
checkrepo ${PROJECTROOT}/eclipse.platform.releng.eclipsebuilder.git
checkrepo ${PROJECTROOT}/eclipse.platform.releng.git
checkrepo ${PROJECTROOT}/eclipse.platform.releng.maps.git
checkrepo ${PROJECTROOT}/eclipse.platform.resources.git
checkrepo ${PROJECTROOT}/eclipse.platform.runtime.git
checkrepo ${PROJECTROOT}/eclipse.platform.swt.binaries.git
checkrepo ${PROJECTROOT}/eclipse.platform.swt.git
checkrepo ${PROJECTROOT}/eclipse.platform.team.git
checkrepo ${PROJECTROOT}/eclipse.platform.text.git
checkrepo ${PROJECTROOT}/eclipse.platform.ua.git
checkrepo ${PROJECTROOT}/eclipse.platform.ui.git

Back to the top