Re: git commands for each repo after init. How?

2015-03-02 Thread Paul Johnson
Hi I appreciate the pointers, but I don't see how to get this job done. Is there nobody who has done this? Project oriented hooks won't help because the project hooks still have to get installed into the project. If I could get that done, I don't think I would need project hooks. I am willi

Re: Building only specified branches and/or tags

2015-03-02 Thread greenLED
Hello Sytse. I have been doing it that way for a while. I recently upgraded my gitlab ci installation and saw some changes in the UI, like setting several build scripts for the same project, so I though there could be an improvement on this. Do you have any plans to add branch-specific build sc

Re: API: Creating multiple files as one operation

2015-03-02 Thread Sytse Sijbrandij
I'm not sure. We try to not invest the wheel but base it upon what is standard for Rails applications. That is probably why the GitLab gemfile is over 250 lines :) https://gitlab.com/gitlab-org/gitlab-ce/blob/master/Gemfile Best regards, Sytse Sijbrandij CEO GitLab B.V. On Mon, Mar 2, 2015 at 2:

Re: Poor performance on blame from GUI

2015-03-02 Thread Sytse Sijbrandij
Hi Andrea, It would be better to render the page and get the information via one or more ajax requests, this way the page doesn't time out. Best regards, Sytse Sijbrandij CEO GitLab B.V. On Mon, Mar 2, 2015 at 3:37 PM, Andrea Scian wrote: > > Sytse, > > I don't really know if the issue is the

Re: Poor performance on blame from GUI

2015-03-02 Thread Andrea Scian
Sytse, I don't really know if the issue is the same, because I'm pretty new to gitlab and its internals (but I have a few year of experience in managing "big" git repository from command line) I was wondering if there's a way to "simplify" gitlab blame view. Let's say: if the call timed out a

Re: API: Creating multiple files as one operation

2015-03-02 Thread Pavel Volgarev
I don't know about any Rails-specific implementations but from the general RESTful point of view, you'd have two options: 1) Pass a set of objects with the normal POST request. 2) Use "multipart/form-data" semantics. In your case, option (1) would probably require a separate API endpoint (for examp

Re: API: Is it possible to search within the title/description of the issue?

2015-03-02 Thread Sytse Sijbrandij
Hi Pavel, Not that I'm aware of but feel free to make it yourself and send a merge request. Best regards, Sytse Sijbrandij CEO GitLab B.V. On Mon, Mar 2, 2015 at 1:40 PM, Pavel Volgarev wrote: > Thanks, I've looked into the API reference before but there's nothing there > regarding being able

Re: Building only specified branches and/or tags

2015-03-02 Thread Sytse Sijbrandij
You would have to check this in your script, the branch is in an environmental variable. Best regards, Sytse Sijbrandij CEO GitLab B.V. On Thu, Feb 26, 2015 at 10:15 AM, greenLED wrote: > Hello. I am runnig the latest GiLab CI. How could I run builds in a project > only for "master" and "develo

Re: Emulate a VREF system using Gitlabs new custom hook system

2015-03-02 Thread Sytse Sijbrandij
This is normally done with rules and git hooks (EE only): http://doc.gitlab.com/ee/git_hooks/git_hooks.html Best regards, Sytse Sijbrandij CEO GitLab B.V. On Thu, Feb 19, 2015 at 10:30 AM, Matthew Spah wrote: > Hey guys, > > > We are currently migrating from a gitolite git infrastructure that m

Re: API: Is it possible to search within the title/description of the issue?

2015-03-02 Thread Pavel Volgarev
Thanks, I've looked into the API reference before but there's nothing there regarding being able to filter by a custom search term (you can filter by state or labels but searching through issue title or description, for example - no mention of that). Are there any plans of incorporating this functi

Re: Poor performance on blame from GUI

2015-03-02 Thread Sytse Sijbrandij
This issue (or a similar one) is being discussed in https://gitlab.com/gitlab-org/gitlab-ce/issues/859#note_889474 Best regards, Sytse Sijbrandij CEO GitLab B.V. On Fri, Feb 20, 2015 at 2:40 AM, Andrea Scian wrote: > > I'm using GitLab Omnibus (7.7.2 bd98290) on my own local server (a xenserver

Re: Creating groups inside group

2015-03-02 Thread Sytse Sijbrandij
No, nesting groups in other groups is not supported. Best regards, Sytse Sijbrandij CEO GitLab B.V. On Sun, Feb 22, 2015 at 3:04 AM, Maneesh M P wrote: > Is it possible to create groups inside groups ? I am using gitlab version > 7.0.0 > > In gitolite managed environment I have repositories li

Re: db:migrate vs gitlab:setup

2015-03-02 Thread Cristian Falcas
Hi, Thank you for your help. I checked the existing modules before, but I decided to start from scratch. The main purpose for me was to make the installation from rpms only. We build with gem2spec for dependencies and fpm for gitlab itself. If anybody is interested I could ask permission to rele

Re: Using GitLab 7.7 with repositories in Gitolite

2015-03-02 Thread Sytse Sijbrandij
We don't recommend using Gitolite with GitLab, you'll have to make the switch. Best regards, Sytse Sijbrandij CEO GitLab B.V. On Tue, Feb 24, 2015 at 6:08 AM, Sverre Moe wrote: > Well, for one we have used Gitolite for years. It is a proven solution and > it works very well. We want to continue

Re: Custom User permissions

2015-03-02 Thread Sytse Sijbrandij
This is not possible. If you don't have any public projects the public profiles are disabled (I think) but that is about it. Best regards, Sytse Sijbrandij CEO GitLab B.V. On Mon, Feb 23, 2015 at 10:02 AM, Ironbelly wrote: > Is there anyway to create custom access levels or tweak what users can

Re: API: Creating multiple files as one operation

2015-03-02 Thread Sytse Sijbrandij
No problem, How do other Rails apps handle this (link to their api docs)? Best regards, Sytse Sijbrandij CEO GitLab B.V. On Tue, Feb 24, 2015 at 6:42 AM, Pavel Volgarev wrote: > Hey Sytse, > > Sorry for the late reply (didn't see your update and no notifications went > out). I think it would ma

Re: Upgrade to 7.8.0 Omnibus Database Migration Failed

2015-03-02 Thread Sytse Sijbrandij
Try 7.8.1, there was a bad db migration in 7.8.0 related to services that got fixed. Best regards, Sytse Sijbrandij CEO GitLab B.V. On Tue, Feb 24, 2015 at 9:39 AM, Justin Yaple wrote: > I just tried to upgrade from 7.3.x to 7.8.0 using Omnibus on a CentOS 6 > machine. > > After installing the

Re: API: Is it possible to search within the title/description of the issue?

2015-03-02 Thread Sytse Sijbrandij
Relevant part of the API docs: http://doc.gitlab.com/ce/api/issues.html Best regards, Sytse Sijbrandij CEO GitLab B.V. On Thu, Feb 26, 2015 at 5:45 AM, Pavel Volgarev wrote: > GitLab API allows you to query for issues with specific label(s), state or > milestone but is there a way to get all th

Re: Upgrading from non-Omnibus MySQL to an Omnibus installation

2015-03-02 Thread Sytse Sijbrandij
I don't understand why you get these errors. Best regards, Sytse Sijbrandij CEO GitLab B.V. On Thu, Feb 26, 2015 at 3:25 AM, Olivier Desport wrote: > Strange bug : The command search the files in /var/opt/gitlab/backups and > not in the new folder created when unpacking the backup tar file. > >

Re: How to make LDAP user as admin

2015-03-02 Thread Sytse Sijbrandij
In GitLab EE you can make a group admin automatically http://doc.gitlab.com/ee/integration/ldap.html#enabling-the-admin-group-feature Best regards, Sytse Sijbrandij CEO GitLab B.V. On Fri, Feb 27, 2015 at 7:47 PM, Maneesh M P wrote: > As soon as admins login, ideally admin should be able to see

Re: Gitlab E-mail on push service does not send e-mails when a repository tagged

2015-03-02 Thread Sytse Sijbrandij
This is not implemented yet, feel free to add it, GitLab B.V. might also contribute it in the coming months. Best regards, Sytse Sijbrandij CEO GitLab B.V. On Thu, Feb 26, 2015 at 7:49 AM, Aydin Doyak wrote: > Hello, > > I'm using E-mails on Push Notification Service on Gitlab 7.7.2, > > I've q

Re: db:migrate vs gitlab:setup

2015-03-02 Thread Sytse Sijbrandij
Also see the various existing Puppet modules on https://about.gitlab.com/installation/ Best regards, Sytse Sijbrandij CEO GitLab B.V. On Sat, Feb 28, 2015 at 3:24 PM, Cristian Falcas wrote: > So I can create the inital root pasword with > > rake db:seed_fu RAILS_ENV=production GITLAB_ROOT_PASSW

Re: GIT lab Forgot password is not working

2015-03-02 Thread Sytse Sijbrandij
How much time is there between the request and you trying to change the password? Best regards, Sytse Sijbrandij CEO GitLab B.V. On Mon, Mar 2, 2015 at 3:52 AM, Dhanesh Kumar wrote: > Team, > > I'm not able to reset my password when I do forgot password or when I create > a new user even he is

Building only specified branches and/or tags

2015-03-02 Thread greenLED
Hello. I am runnig the latest GiLab CI. How could I run builds in a project only for "master" and "develop" branches? -- You received this message because you are subscribed to the Google Groups "GitLab" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: Failing to push some refs

2015-03-02 Thread greenLED
Hi. I finally installed the latest Omnibus package, which is running well. El 16/02/15 08:04, greenLED escribió: Hello. I have been running well GitLab 7.0.0-0 from Bitnami in a virtual machine. I had some virtualization troubles and tried to move to a non virtualized server. I then installed a

Re: GitLab 7.8 Email Notifications not working

2015-03-02 Thread Sytse Sijbrandij
Please see https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/README.md#emails-are-not-being-delivered Best regards, Sytse Sijbrandij CEO GitLab B.V. On Mon, Mar 2, 2015 at 3:36 AM, Christoph Egger wrote: > I just installed GitLab 7.8 CE and all email notifications are not working. > (Re

Re: gitlab hooks

2015-03-02 Thread Henri Gomez
Well it works. My pre-receive hook is now : #!/bin/bash # # pre-receive hook for v1 # check_commit() { COMMIT_STATUS=0 # # Add your commit check strategy here # Set COMMIT_STATUS to non 0, if you want to make it fail # } process_revisions() { REVISIONS=$(git rev-list $OLD_REVISION..$NEW_REV

Re: gitlab hooks

2015-03-02 Thread tombert
Would be great if you post how you got it working ... because the scripts there are 7 months old, and since then GitLab changed the way hooks are working. -- You received this message because you are subscribed to the Google Groups "GitLab" group. To unsubscribe from this group and stop receiv

Re: gitlab_issue_closing_pattern not working

2015-03-02 Thread Rodrigo Avila
Hi! After a lot of searches, I still can't make this work. If somebody can help me to find the solution (what logs I need to see? What type of information I need to look?), I really appreciate. This was one of the features I use to convince the team to migrate from CVS to Git. So, I really ne

GIT lab Forgot password is not working

2015-03-02 Thread Dhanesh Kumar
Team, I'm not able to reset my password when I do forgot password or when I create a new user even he is not able to reset his password. I'm using 7.7 stable version. And am getting some error like "reset password token is invalid" Can anyone help me? Dhanesh -- You received this message b

GitLab 7.8 Email Notifications not working

2015-03-02 Thread Christoph Egger
I just installed GitLab 7.8 CE and all email notifications are not working. (Register/ForgotPassword/ResendConfirmation/ChangeEmail and many more) After ~6 hours i'm just clueless how to solve this problem. Pls help! It has something todo with "sendmail". But i have no clue how to switch it t

Re: gitlab hooks

2015-03-02 Thread Henri Gomez
Just found some interesting hook here : https://github.com/Praqma/git-hooks 2015-03-02 10:17 GMT+01:00 tombert : > Yes they can be *bash *too as a *custom_hooks*, but I had the following > problem: > > https://groups.google.com/forum/#!searchin/gitlabhq/custom_hooks/gitlabhq/bVt0JmX77Lw/nLD1whX8

Setting full name from LDAP

2015-03-02 Thread Sverre Moe
When using LDAP for user authentication the full name is set same as username, but we need the full name for display in GitLab. Either one of these methods for setting Name for a user from LDAP Name: givenName + sn Name: displayName My LDAP configuration in /etc/gitlab/gitlab.rb gitlab_rails['l

Re: git commands for each repo after init. How?

2015-03-02 Thread tombert
"I've been studying Gitlab hooks, but they seem to relate to commit events, not repository creation." Gitlab can react on pushes. Just an idea: you can initiate your custom hook only after the initial push: http://doc.gitlab.com/ce/hooks/custom_hooks.html -- You received this message because

Re: gitlab hooks

2015-03-02 Thread tombert
Yes they can be *bash *too as a *custom_hooks*, but I had the following problem: https://groups.google.com/forum/#!searchin/gitlabhq/custom_hooks/gitlabhq/bVt0JmX77Lw/nLD1whX8InEJ So that's one reason why I stayed inside the main hook and not using *custom_hooks*. See the *custom_hooks* here: ht

test for "choose file"

2015-03-02 Thread yakun li
Hello everyone, I am writing a new feature for Gitlab, and during the test phrase, I need to write a test for select one file. Is there anyone know how to write a "choose file" test for Gitlab? Thanks a lot. -- You received this message because you are subscribed to the Google Groups "GitLab"