Is there currently a way to host a shared Git repository in Windows? I understand that you can configure the Git service in Linux with:

git daemon

Is there a native Windows option, short of sharing folders, to host a Git service?

EDIT: I am currently using the cygwin install of git to store and work with git repositories in Windows, but I would like to take the next step of hosting a repository with a service that can provide access to others.

link|improve this question

1  
why? even if you're developing for windows, git was designed with POSIX in mind, and windows ports are terribly suboptimal – Javier Oct 24 '08 at 14:08
15  
My current employer does not have any Unix or Linux machines... bringing in a new Source Control provider and operating system at the same time may be a bit... traumatic. – Jeff Fritz Oct 24 '08 at 16:01
1  
What’s wrong with git-daemon? AFAIK it works just fine on Windows. – Aristotle Pagaltzis Oct 24 '08 at 17:05
10  
Installing Git using the standard msysgit installer for Windows doesn't appear to install git daemon. :\ – Tim Visher Jan 26 '09 at 16:22
There's a bundled CopSSH and msysgit installer that you might want to look at. It uses public key authentication, and makes it easy. Disclaimer: I'm the webmaster - I started the project after reading Tim Davis' tutorial on setting up a secure git server. – Computer Linguist May 27 '11 at 14:11
feedback

13 Answers

up vote 39 down vote accepted

Here are some steps you can follow to get the git daemon running under Windows:

(Prerequisites: Cygwin with the packages git and cygrunsrv installed)

Step 1: Open a bash shell

Step 2: In the directory /cygdrive/c/Cygwin/usr/bin/, create a file named "gitd" with the following content:

#!/bin/bash

/usr/bin/git daemon --reuseaddr --base-path=/git --export-all --verbose --enable=receive-pack

Step 3: Run the following cygrunsrv command to install the script as a service (Note: assumes Cygwin is installed at C:\Cygwin):

cygrunsrv   --install gitd                          \
            --path c:/cygwin/bin/bash.exe           \
            --args c:/cygwin/usr/bin/gitd           \
            --desc "Git Daemon"                     \
            --neverexits                            \
            --shutdown

Step 4: Run the following command to start the service:

cygrunsrv --start gitd

You are done. If you want a test it, here is a quick and dirty script that shows that you can push over the git protocol to your local machine:

#!/bin/bash

echo "Creating main git repo ..."
mkdir -p /git/testapp.git
cd /git/testapp.git
git init --bare
touch git-daemon-export-ok
echo "Creating local repo ..."
cd
mkdir testapp
cd testapp
git init
echo "Creating test file ..."
touch testfile
git add -A
git commit -m 'Test message'
echo "Pushing master to main repo ..."
git push git://localhost/testapp.git master
link|improve this answer
Thanks a bunch for this. It worked great and saved me time! – Mario Feb 28 '10 at 1:59
1  
If I could edit this post, I would add the following: Prerequisites: cygwin with the packages git and cygrunsrv installed. – Mario Mar 5 '10 at 15:36
Ah, yes. I guess I assumed too much. – Derek Greer Mar 12 '10 at 20:02
1  
Another note: fully qualify the path to git inside of the gitd shell script. On one of my machines MSYSGit was being started instead of cygwin-git when executing as a windows process. MSYSGit does not support daemon mode so the service failed to start. – Mario Mar 16 '10 at 5:19
12  
I never took Cygwin solutions as "working in Windows". It's like saying "running linux in a VM is working in Windows". But that's just my puristic opinion ;) – Rook Feb 26 '11 at 12:49
show 4 more comments
feedback

If you are working in a Windows environment, have you considered Mercurial? It is a distributed version control system like Git, but integrates far more neatly and easily with Windows.

link|improve this answer
4  
It's true that it's much easier to use Mercurial on Windows machines, at least as far as being able to synch repositories is concerned. Not a terribly useful answer if you actually have to use Git though! – Frank Shearar Mar 10 '10 at 9:10
Also Bazaar works natively on windows; it even has commercial support. – hasen j Mar 12 '10 at 23:21
feedback

GitStack might be your best choice. It is currently free and open source at the time of writing.

link|improve this answer
feedback

after running the command: cygrunsrv --start gitd if you get the following error: cygrunsrv: Error starting a service: QueryServiceStatus: Win32 error 1062: The service has not been started. that means that you did not create the 'base-path' folder, creating the folder '/git' and rerunning the command will fix this.

link|improve this answer
You can also get this error if your /git NTFS permissions don't allow the service account (SYSTEM) read/write access. – spoulson Jan 23 at 15:45
feedback

I'm currently using cygwin's ssh daemon on Windows to serve up and allow remote access to my repo. It works quite well, I have complete control over who accesses my repo by their ssh certificates, and the performance blazes, even over remote WAN and VPN links.

Another solution is to use Gitosis. It is a tool that makes hosting repos much easier.

link|improve this answer
How did you get the git daemon working with cygwin? I have the ssh daemon setup and I've testing logging into my machine via ssh but whenever I try to run the git daemon it just hangs. – Thiru Mar 31 '09 at 0:29
How did you get gitosis working on windows as there is a bug: github.com/res0nat0r/gitosis/issues#issue/1 – dalore Jun 16 '10 at 14:53
feedback

Have you considered using the cygwin layer? See this link.

link|improve this answer
feedback

Now msysGit supports git daemon ! It works fine (for me at least). I gonna try to make it run as service...

link|improve this answer
does it support both push and pull? Because there is an issue code.google.com/p/msysgit/issues/detail?id=457 when doing pushes. – Vadim Feb 26 '11 at 14:24
feedback

You do not need to host a service, you can also create a shared repository on a shared drive. Just create a bare repository. You can clone an existing repo into a shared one using: "git clone --bare --shared [source] [dest]". You can also init a new repository using "git init --bare --shared=all".

Henk

link|improve this answer
1  
Yes, you can create a shared repository on a drive, but I will NOT be able to access that repository unless I am on the same network as the repository. The goal of the question is to allow remote access to a repository for a co-worker who is working off-site – Jeff Fritz Apr 16 '09 at 15:32
2  
This is not really a solution to the question and seems like a pretty questionable thing to do anyway. – Pat O Nov 22 '10 at 14:17
feedback

Installing CygWin is an overkill, read this tutorial on how to do it faster and native:

http://code.google.com/p/tortoisegit/wiki/HOWTO_CentralServerWindowsXP

link|improve this answer
feedback

Here's a dedicated git server for windows: https://github.com/jakubgarfield/Bonobo-Git-Server/wiki

link|improve this answer
What's the state of the Bonobo server? Is it fully functional? I can't tell from the documents, but it looks very compelling. – Jeff Fritz Jun 3 '11 at 12:32
@JeffFritz: just stopped using it. The darn thing doesn't update repository state (git update-server-info) after HTTP push, and this logic is not implemented by their Git library (GitSharp). I doubt it will reach a real working state any time soon. – André Caron Sep 26 '11 at 16:59
feedback

I think what Henk is saying is that you can create a shared repository on a drive and then copy it to some common location that both of you have access to. If there is some company server or something that you both have ssh access to, you can put the repository someplace where you can SCP it back to your own computer, and then pull from that. I did this for my self a little while, since I have two computers. It's a hassle, but it does work.

link|improve this answer
"short of sharing folders", says the original question. – Lightness Races in Orbit Feb 26 '11 at 13:59
feedback

For Windows 7 x64 and Cygwin 1.7.9 I needed to use /usr/bin/gitd as the args argument of cygrunsrv

cygrunsrv   --install gitd                          \
            --path c:/cygwin/bin/bash.exe           \
            --args /usr/bin/gitd                    \
            --desc "Git Daemon"                     \
            --neverexits                            \
            --shutdown

Also, I needed to run bash as an Administrator to install the service.

link|improve this answer
feedback

On Windows, you can also serve Git repositories with Apache over HTTP or HTTPS, using the DAV extension.

The Git repository path can then be protected with Apache authentication checks such as restricting to certain IP addresses or htpasswd/htdigest type authentication.

The limitation of using htpasswd/htdigest authentication is that the username:password is passed in the requested Git URL, so restricting access to the Git URL to certain IP addresses is better.

Edit: Note, you can leave the password out of the Git URL and Git will prompt you for the password on push and fetch/pull instead.

Using HTTPS means all the data is encrypted in transfer.

It's easy enough to set up, and works.

The following example shows the combination of access control by IP address and user:password over standard HTTP.

Example Apache Virtualhost

## GIT HTTP DAV ##
<VirtualHost *:80>

  ServerName git.example.com
  DocumentRoot C:\webroot\htdocs\restricted\git
  ErrorLog C:\webroot\apache\logs\error-git-webdav.log

    <Location />
      DAV on
      # Restrict Access
      AuthType Basic
      AuthName "Restricted Area"
      AuthUserFile "C:\webroot\apache\conf\git-htpasswd"
      # To valid user
      Require valid-user
      # AND valid IP address
      Order Deny,Allow
      Deny from all
      # Example IP 1
      Allow from 203.22.56.67 
      # Example IP 2
      Allow from 202.12.33.44 
      # Require both authentication checks to be satisfied
      Satisfy all
    </Location>

</VirtualHost>

Example .git/config

[core]
    repositoryformatversion = 0
    filemode = true
    bare = false
    logallrefupdates = true
[remote "origin"]
    fetch = +refs/heads/*:refs/remotes/origin/*
    url = http://username:password@git.example.com/codebase.git
[branch "master"]
    remote = origin
    merge = refs/heads/master
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.