Gitolite is software to manage a collection of Git repositories on a server accessible by SSH, without creating local accounts for the users. It provides per-branch control over read, write, and rewind/delete operation. It can also permit on-demand repository and branch creation, and allows ...

learn more… | top users | synonyms

1
vote
1answer
8 views

Cannot find my project files on the server gitolite is running

I cannot find my project files on the server gitolite is running. Basically, I built a git server using gitolite on a CentOS 6.2, and I created a new repository,I can successfully clone, pull, commit ...
1
vote
1answer
30 views

Gitolite repositories management

I am new to Gitolite and getting hard time on managing repos in it. We have 1000+ repositories in our git server and 200+ users. It look so messy when we run ssh git@hostname, it gives me the drop ...
1
vote
0answers
41 views

Debian + Gitolite + Gitweb = 404 - No projects found

this is a topic you find realy often. However, I tried everything since 2 days and I'm running out of ideas. Hope someone can help me here. In general I did the following: apt-get install gitolite ...
1
vote
1answer
25 views

Gitolite permissions: How use the “-” thing?

I'm trying to set up my Gitolite permissions but I'm not really sure how to use the - thing. Situation: I have two groups; @gatekeepers and @devs. I want both groups to be able to work in all remote ...
1
vote
1answer
26 views

Git server side branch

I am currently learning to use Git, as it is required for a project I will be managing in the future. I was hoping to be able to have branches in the repository, so that when somebody clones it, they ...
1
vote
1answer
31 views

Gitolite VREF/NAME - what not to push

Is it possible to for me to stop members specific group be able to do commit containing ant file other than specified Example Stop @legal from pushing commits which contains file other than ...
1
vote
1answer
22 views

In gitolite, any easier way to create exceptions to users of @all?

For instance, in the repo PRJ, there are several groups, like @A1 @A2 @B1 @B2, UserX is in group @B1. Now I want to add one rule for UserX, only allow him to modify the code in src/ folder, but do ...
1
vote
0answers
30 views

GIT over HTTP configure auth username. credential.username not working?

I am working on a project where the git repo (gitolite) is configured to only allow me https access. Worse the user name they created for me to authenticate with is dreadful. In my .git/config I ...
1
vote
1answer
33 views

Gitolite clone fails

Whenever i try to clone any repository on my laptop i get this message: Unable to open connection: Host does not existfatal: Could not read from remote repository. Please make sure you have the ...
1
vote
2answers
60 views

gitolite setup getting FATAL: fingerprinting failed for '/tmp/Q3pnE4WVbu'

I am installing gitolite on a CentOS 5.9 server. I have created the git user, then after su - git I have managed to get my public key into the ~/.ssh/ directory, I have successfully cloned the ...
1
vote
1answer
15 views

gitolite emailprefix GL_REPO not expanded

I am using gitolite v2.2 on Ubuntu 12.04. The GL_REPO variable does not get expanded for emailprefix. In my gitolite.conf file I have this: repo @all config hooks.mailinglist = xxx@somewhere ...
1
vote
2answers
77 views

Gitolite config won't deny permissions

I'm having a config file like this: @all = @group1 @group2 @group3 @group1 = user1 user2 user3 @group2 = user4 user5 user6 @group3 = user7 user8 user9 repo production_repo RW+ = ...
2
votes
1answer
53 views

Unable to disable git log-in shell to prevent shell access

I have set up git+gitolite on my raspberry pi (Debian, wheezy) I have a git user and wanted to add some extra security by disabling the log-in shell for it. According to documentation out there it ...
1
vote
1answer
13 views

removing a repo from a group in gitolite

I've a gitolite setup, my gitolite.conf file looks like, @myrepos = test @myrepos = proj1 proj2 repo @myrepos RW+ = user1 user2 user3 user4 Now, I'd like to give access to a new user "user5" ...
1
vote
1answer
25 views

Regenerate authorized_keys file in gitolite?

Is it possible? My authorized_keys file was wiped, updating gitolite admin rules only appends to file. Is it possible to regenerate the whole file based on gitolite config? EDIT: found it! gitolite ...
1
vote
1answer
60 views

In gitolite, how to reject pushes containing incorrect author info

I intend to only accept the commits containning correct author information. like Author: Name<xxxx@xxx.org> in gitolite, is there a way to implement it? BTW, I use V2. Thank you in advance.
5
votes
1answer
82 views

Is there a reason why you shouldn't mix ssh and smart http access with git?

I have set up a git server using gitolite for a small team. One of us created a repo and pushed the initial commits using smart http - let's say it resides at http://ourhost/project.git I then ...
1
vote
1answer
39 views

How does Gitolite check user read/write permissions?

How does Gitolite check that current user has a write/read permission to given repository? Is this done by custom shell? If yes then how it work?
1
vote
1answer
26 views

Making gitolite trigger teamcity builds

Rather than having teamcity log onto the gitolite server several tens of thousands of times each day - and also sitting around waiting for the poll to happen (or starting it manually). It would be ...
1
vote
1answer
68 views

How to config the gitolite repo path the way I don't need to bypass gitolite? Why gitlab app creates repos on the right path?

I've installed Gitlab with gitolite, the fullsite works fine, its creating the repos just fine... but then, when I try to push some code from a dev machine, it raises an error... git init git remote ...
1
vote
1answer
31 views

git push with error message

I have gitolite on server with next config @developers = john bill repo gitolite-admin RW+ = admin repo main-project RW+CD = admin R master$ = ...
1
vote
1answer
47 views

Adding git-ftp to my environment for php

I've installed git-ftp onto my CentOS Server so that I can do deployments from an activeCollab installation running the ac_gitolite module. Everything installed fine and the app lives at ...
5
votes
2answers
772 views

SSH Key asks for password

I stuck here now for like 2 Days a week. I've got a CentOs machine with Gitlab4 and gitolite. Everything worked fine for weeks, but suddenly last weekend something strange happend quite all binaries ...
2
votes
0answers
106 views

gitweb 404 - No projects found when gitolite-admin push

Context: gitolite (v3.5-0-g4071623) installed; gitweb installed; gitolite and gitweb works fine until I add a new repository in gitolite-admin and push the changes gitweb user: www-data gitolite ...
1
vote
1answer
57 views

Gitolite push error

I have problem with my git, when I push my changes, git sends me this error: git FATAL: split conf set, gl-conf not present for "name of repository" What Can I do? Or how can I caused this problem? ...
1
vote
1answer
49 views

Repository and User Access for git using gitolite

First I am new to GIT and gitolite. But I have read enough and cleared my basic concepts. I was following Sitaram's tutorial https://github.com/sitaramc/gitolite I wanted to ask few question for ...
1
vote
1answer
51 views

gitolite git clone ssh:// works but git clone git:// doesn't for few directories

I have this problem: I could git clone git@myserver.com:myrepo repos on my gitolite server. After that I installed git-daemon to be able to do the same with git protocol. Now I can git clone ...
1
vote
1answer
40 views

gitolite can't add keys to authorized_keys when pushing

cloning gitolite-admin to my workstation and managing users and repo, but when pushing, I got some errors like this: remote: Initialized empty Git repository in /home/git/repositories/fmame.git/ ...
1
vote
1answer
34 views

Create v3 gitolite repositories from existing v2 repos

I have got a gitolite v2 installed on my company's server, and now I have to administrate it. Since it's really chaotic there I decided to install a new one, now it's v3. I have around 8 repositories ...
1
vote
2answers
73 views

gitolite configuration - connect error

I would like to use gitolite for my git folders on server. I searched many blogs with tutorials, but a didnt able to find some examples with correct connection to server. So, I added a new user ...
1
vote
1answer
31 views

gitolite/git clone no overwriting previous version

My struggles with git/gitolite continue. I am trying to setup a means of deploying a website/webapp by using the post-receive hook. basically I have a remote repo which is then cloned into a ...
1
vote
1answer
104 views

deploying a website/webapp via git/gitolite permissions error

I've setup a development/testing server where developers can push repositories to a remote repo/webserver via gitolite/git. On the repository site everything works well and developers can use the ...
1
vote
1answer
50 views

how to solve invalid repo name git error?

I've installed Gitolite, just like said in Gitlab instructions, til now it was all ok, repo's created... but when tried to clone or push, it returns NO repo found - smth similiar, but when I set my ...
1
vote
1answer
315 views

gitlab doesn't create project in gitolite

After I create project in gitlab, I still can't to push to it. I notice there is no project create in gitolite repositories folders where it should be there. cat /home/gitlab/gitlab/log/githost.log ...
2
votes
1answer
43 views

Git unable to push after changeing privileges

I have been using a git+gitolite+redmine installation for a long time with no problems. The server is running on ubuntu while I'm developing on windows, and pushing data to the server using a rsa key ...
1
vote
1answer
56 views

Clarification on how gitolite users work

I have set up my GIT server on Ubuntu Server (Latest): I used puttyGen in windows to create a public and private key. I then uploaded the public keys to 'keydir' in 'gitolite-admin' and pushed it ...
1
vote
1answer
48 views

gitolite: 'on-demand' creation of wild repositories

is there a way to create wild repositories on-demand without the need of adding the CREATOR users public key to gitolite first? I'd like to setup a namespace anon/CREATOR/ where anyone is able to ...
1
vote
0answers
138 views

Solved: Gitolite and http Error 500. Permission issue in setup

I attempted to install Gitolite on a Fedora 17 server with the aim of setting up git and http access along with authorisation. Git access works ok. Can push and pull. But http access falls over with ...
3
votes
3answers
77 views

Preventing user from changing .gitignore file?

Is there any why to force user not to change .gitignore file. What I mean is let's say that someone will change or delete this file and push this changes.
1
vote
0answers
23 views

Eclipse / EGit can only connect after previous console connection

I am using Windows 7 / Eclipse Juno / Git Extension 2.43 I have set up a VM Server with UbuntuS Server & Gitolite and added a repo. Afterwards i cloned the repo with Git Extensions. Everything ...
2
votes
1answer
47 views

How can I cd outside my git hook directory

I'm writing my own git post-receive hook in ruby, and it resembles something like this: if !File.exists?(rep_dir+repo) puts "Cloning repository #{repo} into #{rep_dir}." `cd #{rep_dir}; ...
1
vote
2answers
81 views

gitolite + gitweb | 'repo @all R = gitweb' not working

For some reason the following gitolite.conf does not add any repository to projects.list. When I set 'R = gitweb' for each repository manually, they get added to projects.list. [....] repo aaa repo ...
1
vote
0answers
31 views

How would you authorize pushes only in certain directories with Gitolite-v3?

I have a working configuration for a symfony project: @admin = admin ku @developer = sarhan dima_syrv sarhandom a_bobkov @testers = novikov_d repo dev - master = @admin ...
2
votes
2answers
122 views

Using go language with gitolite

Does know how to use Google's go languages clever get command with Gitolite? It works great with Google Code and Github as follows: go get code.google.com/p/go.example/hello or go get ...
3
votes
1answer
84 views

Block and/or Identify Fake author name/email in GIT

I want to block fake user in git commit. That means one user must not be able to change his/her email with someone else. I use gitolite. How can I am able to implement this feature? As I have users' ...
1
vote
1answer
172 views

Initialize gitolite repository in existing folder

I'm fairly new to Git and Gitolite, but yesterday I managed to get it up and running. The thing is, I have a folder with many projects (let's call it /projects) and I'm trying to migrate them to ...
7
votes
1answer
530 views

Easy way to setup GitLab with existing Gitolite configuration

I have an existing Gitolite configuration with many users and repositories. It is setup in the default way as the Gitolite installation guide suggests. Now I would like to add GitLab to be able to do ...
1
vote
1answer
24 views

Adding virtual refs for repo hosted at github.com

Does github.com has support for adding virual refs like gilote as discussed in gitolite or gitosis: permission on directory inside of the repository ? I need to restrict access at directory level ...
1
vote
1answer
75 views

Moved a gitlab instance, now having problems talking to gitolite

I had a working instance of Gitlab until a few weeks ago, when we had to move all the user directories to another disk b/c of resource constraints. I've gone through and fixed all the paths that I ...
2
votes
0answers
171 views

Why do I get “FATAL: parse 'gl-conf' failed: Permission denied” when installing GitLab 4.0?

I'm trying to install a brand new instance of GitLab 4.0 onto an Ubuntu 12.04 server. I follow the guide at https://github.com/gitlabhq/gitlabhq/blob/4-0-stable/doc/install/installation.md all the ...

1 2 3 4 5 7