Tagged Questions

Gitosis is software to manage a collection of Git repositories on a server accessible by SSH, without creating local accounts for the users. It has not been updated since 2009. [Gitolite] is an actively developed alternative with a richer feature set.

learn more… | top users | synonyms

30
votes
5answers
16k views

Gitosis alternative?

Are there alternatives to gitosis that are easier to use? I currently run gitosis on a Ubuntu server for my lab. We regularly add new users and repos. I find the gitosis.conf syntax ...
24
votes
3answers
8k views

git push says everything up-to-date even though I have local changes

I have a remote gitosis server and a local git repository, and each time I make a big change in my code, I'll push the changes to that server too. But today I find that even though I have some local ...
16
votes
5answers
11k views

Gitosis requires password even though the public key is given

I'm confronted with some problems when trying to configure gitosis on my Archlinux http://wiki.archlinux.org/index.php/Setting_Up_Git_ACL_Using_gitosis I referred to this wiki article and ...
14
votes
4answers
1k views

Setting Git for a team of 3 people?

The post aims to summarize all pieces of information to set up a closed repository for 3 people in a competition. Please, feel free to add a problem to the list which I have not noted. Please, add ...
12
votes
7answers
4k views

Git Server Frustration (Gitosis, Gitolite, etc)

Please excuse the frustrating undertones as I have attempted to get this set up correctly multiple times to no avail (possibly and most likely due to my ignorance, but also likely due to the lack of ...
10
votes
4answers
10k views

git Warning: remote HEAD refers to nonexistent ref, unable to checkout

I'm trying to setup gitosis according to the instructions here. It works fine from my remote machine so the server seems to be setup fine but I'd also like to be able to do development on my gitosis ...
10
votes
2answers
2k views

How do I recover from pushing a gitosis.conf file with parsing errors due to line breaks?

I have successfully set up gitosis for an Android mirror (containing multiple git repositories). While adding a new .git path following writable= in gitosis.conf I managed to insert a few line breaks. ...
9
votes
4answers
812 views

gitosis: same user multiple machines

In git/gitosis a single ssh key is stored with the filename the same as user name. i.e. myusername.pub If I want to access a repository from many machines, must I make a new user from each location ...
9
votes
2answers
3k views

Git post-receive hook not working

We're using git with a central repo (using Gitosis). I've created a post-receive hook to generate an email to the dev mailing list whenever changes are pushed to the central repo, and to generate ...
8
votes
3answers
5k views

Gitosis Error: Receiving 'Read Access Denied' on previously accessible repository

The Players I've been using git and gitosis for some months now, and am really loving both. Unfortunately, I have run into a problem accessing one of my projects with gitosis. The Set-Up I set ...
8
votes
5answers
6k views

Connecting to gitosis server through an SSH tunnel

I've got an SSH tunnel setup on my macbook, like this... $ ssh -o ServerAliveInterval=3 -N -L 22222:gitosis-server:22 user@firewall.domain.com So I can ssh to localhost:22222 and will end up on the ...
8
votes
5answers
12k views

password problem with git clone gitosis@host:gitosis-admin.git

I'm confronted with some problems when trying to configure gitosis on Ubuntu. When i run this command git clone gitosis@host:gitosis-admin.git For my local machine i used git clone ...
6
votes
2answers
1k views

getting ssh-agent to work with git run from windows command shell

I have msysgit installed, with OpenSSH. I am connecting to a gitosis repo. From the git bash, I have created a .profile file that runs ssh-agent (if not already running) each time git bash is opened. ...
6
votes
3answers
2k views

Is it possible to use the same ssh private/public key pair on 2 machines to access a git repository?

I've recently setup an inhouse git repository server and have it up and running with gitosis installed as the management tool. Read only access is available via the git:// protocol and write access is ...
6
votes
4answers
2k views

Git/gitosis: How to check validity of user name and email?

I have installed git and gitosis and I need to add a check that the user name is valid when something is pushed into the repository. I reckon the pre-receive hook is the correct hook to place this, ...
5
votes
1answer
2k views

Authenticating Gitweb with Gitosis without LDAP Auth?

I found your article using Apache Auth with gitweb, gitosis. I was wondering if there was a way to do this if I wasn't using LDAP for authentication. We currently have a very large NIS domain which ...
5
votes
4answers
4k views

gitosis did not generate projects.list automatically, gitweb can't work

I setup a gitosis managed git server. git clone is ok. but when I set gitweb via gitweb.conf as below: $projectroot = "/srv/gitosis/repositories"; $git_temp = "/tmp"; $home_text = ...
5
votes
1answer
762 views

Gitosis and ssh keys - does the email address have anything to do with the git email address?

I'm trying to set up gitosis on a server. I was just wondering one thing, my ssh key has my gmail address at the end, because I was originally using it for github. For this new project on the server ...
5
votes
4answers
4k views

Using gitosis to specify permissions per branch?

With gitosis, is it possible to specify write permissions so that users can push freely to branches with their own name, but not merge with the master? E.g. $USER/test1 .. $USER/test5 This mean you ...
4
votes
2answers
59 views

Make gitosis-admin git repository secure

I installed gitosis on my Ubuntu 10.4 Server via apt-get install gitosis Then I initialized the admin repository with sudo -H -u gitosis gitosis-init < nameOfThePublicKeyFile After ...
4
votes
4answers
369 views

How to write or package a Git server as a Java Servlet or Java webapp?

Git is clearly awesome and a variety of clients are both available and easy to install for all platforms. However it's a bit of a challenge to get a Git server up and running for teams. I'm a bit ...
4
votes
1answer
132 views

Git create repos on the fly?

Is it possible to allow for a user to push new GIt repos without having to manually add them to the gitosis.conf every time?
4
votes
3answers
2k views

Is good idea to use gerrit to host the git repository instead of gitolite or gitosis?

Originally I try to use gitosis to manage the git repositories in the company, and later notice gitolite is kind of enhancement of gitosis. And also I heard gerrit could be used for the same ...
4
votes
2answers
2k views

Git keeps asking for password

I've searched and searched, for what seems like hours, for a solution to this problem and nothing I've tried works. Let me preface all this by saying that while I've used *nix before, I'm pretty much ...
4
votes
4answers
2k views

Gitosis not updating server configuration after push of configuration changes

I've set up gitosis using the tutorial privided at: http://scie.nti.st/2007/11/14/hosting-git-repositories-the-easy-and-secure-way I found that I was unable to push and create a new repository after ...
3
votes
1answer
827 views

How to include ssh private rsa key when accessing git repo via ssh (gitosis)?

At this moment I've got one git repo added through gitosis. The manual i used is http://scie.nti.st/2007/11/14/hosting-git-repositories-the-easy-and-secure-way I can clone it and push in it via ssh ...
3
votes
2answers
161 views

How/Where do you store git repositories when working with multiple servers?

I'm fairly new to git, but I'm trying to set it up across all of our systems so that all projects are managed by git and gitosis. My question has to do with location of the actual repositories when ...
3
votes
2answers
245 views

gitosis change server

I installed a fresh instance of gitosis, and also have an old one. What do I have to do to move the repos from the old to the new server? Clone on the new server? What do I have to change on the ...
3
votes
1answer
908 views

Manage http access to git repositories using gitosis

[Update 9/16/2010] After looking into this last night, I realized that my original question was really asking 2 separate things: 1) Is it possible to set the post-update hook for all remote ...
3
votes
1answer
723 views

Problem with Hudson + Git + Gitosis on windows

I have git and gitosis running smoothly on windows with msysgit (with OpenSSH), and I would now like Hudson to start using git. So, I have ensured that the hudson windows service is running as the ...
3
votes
1answer
503 views

Can Gitosis enforce correct user name/email?

Gitosis is able to authenticate users based on public/private key pair. It is able to find out which user is currently committing. However, the user name and email is taken from the client's Git ...
3
votes
1answer
99 views

Why would my git master branch have the current HEAD not be the most recently pushed file?

Apologies if this has already been asked. I spent quite a long time looking through old SO posts on Git but have not yet found one that really matches this case. I'm on a team of 5 developers using ...
3
votes
1answer
402 views

Gitosis Directories of repositories per user?

I was just wondering, is there a way to set up gitosis so that a user would have their own directory to which they could push any number of repositories that they want, and essentially have admin ...
3
votes
2answers
3k views

git-merge with repository on local filesystem

For some context: I just upgraded Ubuntu which broke my existing gitosis installation (see here: bug #368895), and have just reinstalled gitosis from packages. I now want to migrate my whole config ...
3
votes
2answers
2k views

Why I can't add new repositories using gitosis?

I set up gitosis but even when i can clone, pull and push to the gitosis-admin repo, i can't create new ones. According to every doc i read, to create a new repo one has to: Give user write access ...
3
votes
4answers
13k views

gitosis and git clone problem

I have installed gitosis, but i have strange thing when i'm working with repos. In config i have [gitosis] [group gitosis-admin] writable = gitosis-admin members = me@server me@laptop [group prj1] ...
3
votes
1answer
946 views

Gitosis: setting repository config variables

Is there a way to set repository config variables through the gitosis conf instead of going into each repository and editing the conf values directly?
2
votes
1answer
49 views

How to gain shell access when I'm locked out with “PTY allocation request failed on channel 0”

I installed gitosis on a remote shell. It's working fine. But now I can't login to the interactive shell. As told here, it seem gitosis disabled tty. Is there anyway I can get it back? I don't have ...
2
votes
1answer
91 views

How to change gitosis default search path?

I installed gitosis on my ubuntu desktop. But when I try "git clone git@localhost:gitosis-admin.git", it kept searching /home/git/, not /home/git/repositories. So I have to type "git clone ...
2
votes
2answers
294 views

Heroku style GIT deployment for my own server

How can I install Heroku-style deployment using GIT (gitosis-admin tool)? I use Capistrano for my rails projects but I also have some PHP projects. I would like to setup automated GIT deployment for ...
2
votes
1answer
197 views

gitosis-init for 2nd user? (need to make a new owner for gitosis-admin)

Here's the situation: We have a git repository, managed by gitosis. One user user managed the gitosis-admin repository (via git-init). Now we need to add other users to access gitosis-admin, ...
2
votes
3answers
164 views

Git Log History

One thing that is important with version control is knowing who made what change. If something was changed and I had no idea why the change was made, I would look in the history and ask the person ...
2
votes
1answer
210 views

Git post-update hook as a deploy management. Just like heroku

I want to git push to server repo, and then post-update hook will pull lastest repo to deploy folder, and restart the daemon. but git user can not access deploy folder and can't restart the daemon. ...
2
votes
1answer
464 views

Generate valid openssh ssh key under windows

I've some persons that are under windows, and they need a public/private RSA keys pair in order to get them authenticated to gistosis, a GIT server. We use SmartGit as our GIT GUI, and this tool ...
2
votes
1answer
190 views

How do i allow a second/third/etc.. computer to connect to my git server using ssh and gitosis?

I followed the guide here http://www.hackido.com/2010/01/installing-git-on-server-ubuntu-or.html but I cannot find the proper way to import another ssh key so my other computers can clone and push ...
2
votes
2answers
405 views

git bash: git@server: command not found

I've got gitosis installed on my own private Ubuntu server. It seems to be working great locally, however whenever I try to run a command from a different machine that talks to the server, I'm ...
2
votes
2answers
364 views

post-recieve hook for gitosis

I'm running Gitosis and want my committed work to be staged in my html directory. I was trying to use this approach to set GIT_WORKING_TREE to my html directory, but I'm getting the error remote: ...
2
votes
2answers
1k views

How to move local Git repository (with history) to be managed by Gitosis on remote server?

I'm switching from SVN to Git with Gitosis installed on a central server for centralized repositories on Ubuntu server. I have had all my SVN repositories moved and initiated into new Git ...
2
votes
1answer
1k views

How to add other users(windows) to gitosis

I just setup an git repository using gitosis. What I can't figure out is how to add other users. All tutorials I find only says "gather their public SSH keys". First of I tried to create the locally ...
2
votes
2answers
2k views

gitosis + git error: fatal: '/home/git/repositories/idea-generator.git' does not appear to be a git repository

I have tried to follow the instructions on how to use gitosis to manage my git projects. Other than one slight issue, I have installed gitosis successfully. The problem arises when I try to create my ...

1 2 3 4