"Project description file" error in git?

Posted by Paul Wicks on Stack Overflow See other posts from Stack Overflow or by Paul Wicks
Published on 2008-10-14T07:01:58Z Indexed on 2010/06/13 11:22 UTC
Read the original article Hit count: 213

Filed under:
|

I've a small project that I want to share with a few others on a machine that we all have access to. I created a bare copy of the local repo with

git clone --bare --no-hardlinks path/to/.git/ repoToShare.git

I then moved repoToShare.git to the server.

I can check it out with the following:

git clone ssh://user@address/opt/gitroot/repoToShare.git/ test

I can then see everything in the local repo and make commits against that. When I try to push changes back to the remote server I get the following error.

*** Project description file hasn't been set
error: hooks/update exited with error code 1
error: hook declined to update refs/heads/master

Any ideas?

© Stack Overflow or respective owner

Related posts about git

Related posts about error