Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
2k views

Unable to push to git Repository. It hangs after “Writing Objects: 100%”

I am running git daemon with the following command. c:\cygwin\bin\git daemon --reuseaddr --base-path=/cygdrive/S --export-all --verbose --enable=receive-pack I am able to clone and pull updates but ...
3
votes
2answers
2k views

Why won't git-daemon serve my repository?

I set up .git in a directory on my local machine. I then run: mkdir a cd a git init git daemon When I attempt to clone the repository in a, I get the following error: mkdir b cd b git clone ...
2
votes
1answer
1k views

How to install git daemon on Ubuntu 10.04

I'm sharing my repository on my Linux janybek-desktop 2.6.32-24-generic #43-Ubuntu SMP Thu Sep 16 14:17:33 UTC 2010 i686 GNU/Linux and I when I run: sudo -u git git-daemon ...
1
vote
2answers
700 views

Starting git-daemon on OS X using launchd

I am trying to set up an internal git server using my OS X desktop (mostly as a test case). Everything works when SSH keys are involved, but I am currently trying to use git-daemon for read-only ...
0
votes
0answers
22 views

Auto start git daemon on window server

I am pretty new to Git. Trying to setup git repository in window server 2008 R2. I have finish with everything even tried to create new repository and cloning on same computer everything look good. ...
0
votes
1answer
39 views

Why won't git-daemon serve my repositories?

I'm using git version 1.7.9 and while I've checked and double checked my configuration, I can't get the clones to work from the daemon. There's no indication of any error in /var/log/messages: Feb 14 ...
0
votes
1answer
30 views

How could I recover my git-daemon repositories

I had a Gitorious install that got old and it is clear now that it is not coming back. I want to recover the repos (mainly the wiki repos) from the repository. I do not want to repeat the long and ...
0
votes
1answer
122 views

how to use scm manager with git?

I'm just new in git and am still relying on git extension for most task. I've search how to start git daemon in windows and found a suggestion that scm-manager may be an alternative for it. ...
0
votes
3answers
261 views

As of right now, on Windows 7, does Mercurial start up a server much simpler than Git?

On Windows 7, from reading hginit.com, it seems like it is very easy to set up a Mercurial server? mkdir repo cd repo hg init hg serve and that's it? Now http://localhost:8000 is the server. It ...