I\'m getting back an unusual error while trying to do a \"git push\" to my GitHub repository:
Counting objects: 8, done. Delta compression using 2 threads. Compre
Try to do following:
Go to your Server
cd rep.git chmod -R g+ws * chgrp -R git * git config core.sharedRepository true
Then go to your working copy(local repository) and repack it by git repack master
git repack master
Works perfectly to me.