Re: [gitorious] Re: Gitorious 3 installation

2013-01-15 Thread Jaco Theron
Hi, I am nearing the end with setting up gitorious 3 production environment I believe :-D. I need some assistance with some more setup details for Gitorious using nginx, I have started and get to this page: Welcome to nginx! If you see this page, the nginx web server is successfully

[gitorious] git push failing

2013-01-15 Thread Navneet Kapur
Hi, Not sure if this is right place the ask this question. I am trying to push to a repository I did not create. I was told by the owner that the repo however gives everyone permissions to write to it. However, when I try to push to it, it fails. It gives me the following message.

[gitorious] How to find the which Gitorious version I am running on ?

2013-01-15 Thread Dinux6
I installed Gitorious on my unix server from master(git://gitorious.org/ gitorious/mainline.git) sometime last December. Is there a way to find which version of Gitorious I am running on ? -- To post to this group, send email to gitorious@googlegroups.com To unsubscribe from this group, send

[gitorious] git push failing

2013-01-15 Thread Navneet Kapur
Hi, Not sure if this is right place the ask this question. I am trying to push to a repository I did not create. I was told by the owner that the repo however gives everyone permissions to write to it. However, when I try to push to it, it fails. It gives me the following message. It does

Re: [gitorious] Re: Gitorious 3 installation

2013-01-15 Thread Jaco Theron
Hi, Ok when I try the browser http://{IP}:3000 then I get to the gitorious 3 server. I will continue the installation :-) and hopefully be done soon. Regards, Jaco T On Tuesday, January 15, 2013 10:05:06 AM UTC+2, Jaco Theron wrote: Hi, I am nearing the end with setting up gitorious 3

Re: [gitorious] Re: Gitorious 3 installation

2013-01-15 Thread Jaco Theron
Hi Team, https://lh6.googleusercontent.com/-czrqvyvAioQ/UPUVklyWHII/A-E/gwdwEFWph-Q/s1600/ssh.PNG *Q:* What do I need to check in order for the SSH key checker to work? Thank you in advance, Jaco T On Tuesday, January 15, 2013 10:22:34 AM UTC+2, Jaco Theron wrote: Hi, Ok when I try

Re: [gitorious] Re: Gitorious 3 installation

2013-01-15 Thread Thomas Kjeldahl Nilsson
Hi Jaco, The creation/init of new ssh keys is an asynchronous operations, which means it depends on the resque queue running. Have you set that up yet? regards, Thomas On Tuesday, January 15, 2013 at 9:39 AM, Jaco Theron wrote: Hi Team, Q: What do I need to check in order for the

Re: [gitorious] git push failing

2013-01-15 Thread Thomas Kjeldahl Nilsson
Hi Navneet, I would re-check with the repo owner that you have push permissions, or that you have been added to a Gitorious team which has permissions. Also: I presume you've added an ssh key to your account? regards, Thomas On Tuesday, January 15, 2013 at 1:39 AM, Navneet Kapur wrote:

Re: [gitorious] Re: fail in PushProcessor emails

2013-01-15 Thread Thomas Kjeldahl Nilsson
Hi, after you have pushed new code to a gitorious repo, the gitorious site in question will asynchronously store corresponding commit events in the backend database to make those commits visible as events/activity in the gitorious web interface. Now I think it can fail if the server is

Re: [gitorious] Re: Gitorious 3 installation

2013-01-15 Thread Jaco Theron
Hi Thomas, I did execute: sudo rails server -e production And QUEUE=* bundle exec rake resque:work And sudo git daemon --listen=127.0.0.1 --port=9418 --export-all --base-path=/projects/gitorious/repositories --verbose --reuseaddr /projects/gitorious/repositories They all seem

Re: [gitorious] How to find the which Gitorious version I am running on ?

2013-01-15 Thread Thomas Kjeldahl Nilsson
Sure thing: if you're on an official version/release/tag, you can run the following command from the root of your Gitorious installation (ie. same dir as the Gemfile etc) rake versioning:changelog The changelog command should output the available versions you've pulled down from the

Re: [gitorious] Re: Gitorious 3 installation

2013-01-15 Thread Thomas Kjeldahl Nilsson
Hi Jaco, if Resque (the ruby queue gem, which uses Redis to persist the queue) is running you should be able to check the state of its queues through a localhost web interface it provides. https://github.com/defunkt/resque#section_The_Front_End I would check if something is on the queue

Re: [gitorious] Re: fail in PushProcessor emails

2013-01-15 Thread Phuong Doan
I've just found out a case: if I push to a repository that I don't have permission on it, I got error message saying that I don't have permission(1) and got this error email(2) (1) is reasonable, no problem, but I don't feel (2) is. This should be a handled error, no need to send notification

[gitorious] Re: Authorization issue. (creating team does not check ldap groups)

2013-01-15 Thread vburak
are there any ideas how can i investigate this issue? There is nothing in logs. Ldap authentication works fine. -- To post to this group, send email to gitorious@googlegroups.com To unsubscribe from this group, send email to gitorious+unsubscr...@googlegroups.com

[gitorious] Re: git push failing

2013-01-15 Thread Jaco Theron
Someone correct me If I am wrong, But he would have to add your Gitorious user or a group that your user belong to as a Committer of that project/repository? Regards, Jaco T On Tuesday, January 15, 2013 2:42:39 AM UTC+2, Navneet Kapur wrote: Hi, Not sure if this is right place the ask this

Re: [gitorious] Re: git push failing

2013-01-15 Thread Thomas Kjeldahl Nilsson
Yep, that's right Jaco. cheers, Thomas On Tuesday, January 15, 2013 at 9:04 PM, Jaco Theron wrote: Someone correct me If I am wrong, But he would have to add your Gitorious user or a group that your user belong to as a Committer of that project/repository? Regards, Jaco T On

[gitorious] Fwd:

2013-01-15 Thread Michael Murray
http://pietrometastasio.altervista.org/4atcov.php -- To post to this group, send email to gitorious@googlegroups.com To unsubscribe from this group, send email to gitorious+unsubscr...@googlegroups.com

Re: [gitorious] Re: Gitorious 3 installation

2013-01-15 Thread Jaco Theron
Hi, It seems that command QUEUE=* bundle exec rake resque:work starts the development for resque, and I am running on the production settings for gitorious. Please help me find where I need to change a configuration in order for the command to know that it will be production. *See image