开发者

Why does a "git push" just hang there indefinitely using MySysGit 1.7.4?

开发者 https://www.devze.com 2023-02-22 01:43 出处:网络
I tried small experiments with Ruby and Rails, and would like to push and pull from the Mac to PC and vice verse.

I tried small experiments with Ruby and Rails, and would like to push and pull from the Mac to PC and vice verse.

So I installed what the Git's website's standard recommended Git on PC (MySysGit 1.7.4), and run

git daemon --reuseaddr --base-path=. --export-all --verbose --enable=receive-pack

either on the Mac or PC (to start a Git server), and then, on the PC, I cloned and add a file, and commit, and then do a

git push git://192.168.1.31/ master

now it will print out the following and just hang there indefinitely:

Counting objects: 5, done.
Delta compression using up to 8 threads开发者_开发问答.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (4/4)

I tried it on another PC, and it is the same thing. How can this be fixed?

(I am using the command to run the server from question: 'receive-pack': service not enabled for './.git')


They have just released a version that allows a config option to stop git hanging.

Fix is for https://github.com/msysgit/git/issues/101 in release https://github.com/msysgit/msysgit/releases/tag/Git-1.9.4-preview20140611

You can fix it by setting

git config --global sendpack.sideband false


Apparently due to a bug in msysgit, that prevents it from pushing to git-daemon.

http://code.google.com/p/msysgit/issues/detail?id=457

I was stuck on this myself. You can either install cygwin git (worked for me) or use ssh-based repo (worked for me as well, but i installed the remote repo on linux and used gitolite)

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号