Peff, Sorry for the delay in reply. Yes, it's the same pack. And if I do `ll ./object/pack/ ` on remote I can see the pack with read perms for all. However, I observed that the pack I am getting now, is different from that in my previous email. I am not sure what caused it to change, as I did lot of commits/push to the remote. I tested with some test commits to see if it is caused by a particular branch, but the pack is still the same. Also, previously, if I would push to the remote in succession without committing anything, I would get "Everything up to date". But now, it seems that post-receive hook is called second time too, and I see the "error : packfile". Here's a shell copy paste : http://pastie.org/3136111 $ git status # On branch 0.0.4 nothing to commit (working directory clean) $ git push ourCloud Total 0 (delta 0), reused 0 (delta 0) remote: error: packfile ./objects/pack/pack-ff7bb2bee430b314648c084970f6a6877b837a58.pack cannot be accessed remote: HEAD is now at cff7a3a Fix mapping action from keyword search to API remote: HEAD is now at cff7a3a Fix mapping action from keyword search to API remote: Successfully deployed master into /var/www/html/myProj-master remote: HEAD is now at 85534ca Test remote error packfile 2 remote: Successfully deployed 0.0.4 into /var/www/html/myProj-0.0.4 To ssh://wadkar@192.168.1.177:7185/~wadkar/repo/bare/myProj + 85534ca...cff7a3a master -> master (forced update) $ git push ourCloud Total 0 (delta 0), reused 0 (delta 0) remote: error: packfile ./objects/pack/pack-ff7bb2bee430b314648c084970f6a6877b837a58.pack cannot be accessed remote: HEAD is now at cff7a3a Fix mapping action from keyword search to API remote: HEAD is now at cff7a3a Fix mapping action from keyword search to API remote: Successfully deployed master into /var/www/html/myProj-master remote: HEAD is now at 85534ca Test remote error packfile 2 remote: Successfully deployed 0.0.4 into /var/www/html/myProj-0.0.4 To ssh://wadkar@192.168.1.177:7185/~wadkar/repo/bare/myProj + 85534ca...cff7a3a master -> master (forced update) $ vi README.txt #make changes $ git commit -am 'Test error packfile 3' Test error packfile 3 1 files changed, 0 insertions(+), 2 deletions(-) $ git push ourCloud Counting objects: 5, done. Delta compression using up to 4 threads. Compressing objects: 100% (3/3), done. Writing objects: 100% (3/3), 294 bytes, done. Total 3 (delta 2), reused 0 (delta 0) remote: error: packfile ./objects/pack/pack-ff7bb2bee430b314648c084970f6a6877b837a58.pack cannot be accessed remote: HEAD is now at cff7a3a Fix mapping action from keyword search to API remote: HEAD is now at cff7a3a Fix mapping action from keyword search to API remote: Successfully deployed master into /var/www/html/myProj-master remote: HEAD is now at a0e3f87 Test error packfile 3 remote: Successfully deployed 0.0.4 into /var/www/html/myProj-0.0.4 To ssh://wadkar@192.168.1.177:7185/~wadkar/repo/bare/myProj 85534ca..a0e3f87 0.0.4 -> 0.0.4 + 85534ca...cff7a3a master -> master (forced update) $ ssh -p 7185 wadkar@192.168.1.177 ##now on remote## $ ll repo/bare/myProj/objects/pack/ total 672 -r--r--r-- 1 wadkar wadkar 47496 Jan 2 16:52 pack-ff7bb2bee430b314648c084970f6a6877b837a58.idx -r--r--r-- 1 wadkar wadkar 634393 Jan 2 16:52 pack-ff7bb2bee430b314648c084970f6a6877b837a58.pack $ logout Connection to 192.168.1.177 closed. ##back to local## $ git push ourCloud Total 0 (delta 0), reused 0 (delta 0) remote: error: packfile ./objects/pack/pack-ff7bb2bee430b314648c084970f6a6877b837a58.pack cannot be accessed remote: HEAD is now at cff7a3a Fix mapping action from keyword search to API remote: HEAD is now at cff7a3a Fix mapping action from keyword search to API remote: Successfully deployed master into /var/www/html/myProj-master remote: HEAD is now at a0e3f87 Test error packfile 3 remote: Successfully deployed 0.0.4 into /var/www/html/myProj-0.0.4 To ssh://wadkar@192.168.1.177:7185/~wadkar/repo/bare/myProj + a0e3f87...cff7a3a master -> master (forced update) $ git push ourCloud Total 0 (delta 0), reused 0 (delta 0) remote: error: packfile ./objects/pack/pack-ff7bb2bee430b314648c084970f6a6877b837a58.pack cannot be accessed remote: HEAD is now at cff7a3a Fix mapping action from keyword search to API remote: HEAD is now at cff7a3a Fix mapping action from keyword search to API remote: Successfully deployed master into /var/www/html/myProj-master remote: HEAD is now at a0e3f87 Test error packfile 3 remote: Successfully deployed 0.0.4 into /var/www/html/myProj-0.0.4 To ssh://wadkar@192.168.1.177:7185/~wadkar/repo/bare/myProj + a0e3f87...cff7a3a master -> master (forced update) $ ssh -p 7185 wadkar@192.168.1.177 ##now on remote## $ ll repo/bare/myProj/objects/pack/ total 672 -r--r--r-- 1 wadkar wadkar 47496 Jan 2 16:52 pack-ff7bb2bee430b314648c084970f6a6877b837a58.idx -r--r--r-- 1 wadkar wadkar 634393 Jan 2 16:52 pack-ff7bb2bee430b314648c084970f6a6877b837a58.pack $ logout Connection to 192.168.1.177 closed. ##back to local## $ git checkout master Switched to branch 'master' $ git status # On branch master nothing to commit (working directory clean) $ echo 'Foo' >> README.txt $ git push ourCloud Counting objects: 5, done. Delta compression using up to 4 threads. Compressing objects: 100% (3/3), done. Writing objects: 100% (3/3), 305 bytes, done. Total 3 (delta 2), reused 0 (delta 0) remote: error: packfile ./objects/pack/pack-ff7bb2bee430b314648c084970f6a6877b837a58.pack cannot be accessed remote: HEAD is now at b220238 Test error packfile 4 (master) remote: HEAD is now at b220238 Test error packfile 4 (master) remote: Successfully deployed master into /var/www/html/myProj-master remote: HEAD is now at a0e3f87 Test error packfile 3 remote: Successfully deployed 0.0.4 into /var/www/html/myProj-0.0.4 To ssh://wadkar@192.168.1.177:7185/~wadkar/repo/bare/myProj + a0e3f87...b220238 master -> master (forced update) $ ssh -p 7185 wadkar@192.168.1.177 ##now on remote## $ ll repo/bare/myProj/objects/pack/ total 672 -r--r--r-- 1 wadkar wadkar 47496 Jan 2 16:52 pack-ff7bb2bee430b314648c084970f6a6877b837a58.idx -r--r--r-- 1 wadkar wadkar 634393 Jan 2 16:52 pack-ff7bb2bee430b314648c084970f6a6877b837a58.pack -Sudarshan Wadkar "Success is getting what you want. Happiness is wanting what you get." - Dale Carnegie "It's always our decision who we are" - Robert Solomon in Waking Life "The truth is the truth, so all you can do is live with it." --Systematic Chaos On Wed, Jan 4, 2012 at 1:03 AM, Jeff King <peff@xxxxxxxx> wrote: > On Mon, Jan 02, 2012 at 02:48:22PM +0530, Sudarshan Wadkar wrote: > >> But when I push, I get this odd error from remote >> >> $ git push --verbose --mirror >> ssh://wadkar@192.168.1.177:7185/~wadkar/repo/bare/myproj.git >> Pushing to ssh://wadkar@192.168.1.177:7185/~wadkar/repo/bare/myproj.git >> Counting objects: 5, done. >> Delta compression using up to 4 threads. >> Compressing objects: 100% (3/3), done. >> Writing objects: 100% (3/3), 323 bytes, done. >> Total 3 (delta 2), reused 0 (delta 0) >> remote: error: packfile >> ./objects/pack/pack-17900952dc824651db15369a341eec8d3e8f39d2.pack >> cannot be accessed >> remote: HEAD is now at 4d5a6f1 Investigate and report odd error >> To ssh://wadkar@192.168.1.177:7185/~wadkar/repo/bare/myproj.git >> d066a2f..4d5a6f1 master -> master > > Is it always the same pack? If so, have you tried looking in the > objects/pack directory to make sure it's not a permissions problem? > > -Peff -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html