Hi, On Mon, Sep 22, 2008 at 5:27 AM, AkitaOnRails <[EMAIL PROTECTED]> wrote: > > Hi, I've been trying to install Gitorius in my workstation. > > I followed the HACKING guide. Having the Rails part up and running was > not that difficult. So I was able to start it as production, then > register a new account, login. I made ultrasphinx work without > problems. > > The first thing is that when you create a new project you have to > manually run ./script/task_performer to create the repo. It does > create the repo but gives me this message: > > sh: git-update-server-info: command not found
The servers gitorious currently run run a slightly older version of git still (one or two behind 1.5.6), so it probably just needs to be modified to accept the dashless version of the git commands (git update-server-info instead of git-update-server-info) > > The other thing. I named my local machine akitaonrails.loca (in my > hosts file). So, when I create the project, the web interface gives me > these URLs: > > Public clone url: git://akitaonrails.local/foo/mainline.git > HTTP clone url: http://git.akitaonrails.local/foo/mainline.git > Push url: [EMAIL PROTECTED]:foo/mainline.git > > None of these URLs work at all for me. Exploring the project a little > bit I found script/git-daemon. I fired it up and tried: git clone > git://akitaonrails.local/foo/mainline.git and the git-daemon gave me: > > 2008-09-22 00:24:29 [23057] Listening on 0.0.0.0:9418... > 2008-09-22 00:25:06 [24845] Connection from 127.0.0.1 for "/Users/ > akitaonrails/Sites/rails/gitorius/repo/foo/mainline.git" > 2008-09-22 00:25:06 [24845] Deferred in 0.05640s > 2008-09-22 00:25:06 [24845] Disconnected. (status=0) > > and the git clone command ended up with: > > Initialized empty Git repository in /private/tmp/mainline/.git/ > fatal: no matching remote head > > It would help a lot if I could find a tutorial somewhere, but I wasn't > able to find anything. Anyone can give me a clue on how to properly > set up this last mile? Once I figure it out I will write down a full > tutorial myself. the "fatal: no matching remote head" is most likely because the repository is empty (see also http://gitorious.org/about/faq), you need to push something to a repository before you can clone a bare one. Hope that helps! Cheers, JS --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Gitorious" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/gitorious?hl=en -~----------~----~----~----~------~----~------~--~---
