Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I just set up a git server. I have a repository made with

git init --bare

named repo_equipe.git. I successfully cloned that repository on my computer remotely from the server with git clone git://myserv/myrepo.git.

Then, I added a file and locally commited it. But when I try to push it with

git push origin master OR git push

This is pending ! On my serveur I have a daemon launched with :

git daemon --base-path=C:/git --verbose --enable=receive-pack --export-all

This is doing nothing, juste waiting on both sides. The last line on my server is : Request receive-pack for '/repo_equipe.git' The last line on my client is the command git push.

Thanks a lot for helping me :)

share|improve this question

1 Answer

tried git push origin BARE:master Nothing.

It's just waiting from both sides ; have no clue why this isn't working.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.